@using Newtonsoft.Json @using System.Net @{ Dictionary links = JsonConvert.DeserializeObject>(new WebClient().DownloadString($"{Context.Request.Scheme}://{Context.Request.Host}/Links.json")); }
if (You.InsterestedInMe)
ContactMe();

// All links are clickable
public void ConatactMe()
{
string email = "mihcael.xfox@outlook.com";
Link[] socialNetworks = new Link[]
{
new Link("LinkedIn", "https:@(links["linkedin"].Url)"),
new Link("GitHub", "https:@(links["github"].Url)"),
new Link("Twitter", "https:@(links["twitter"].Url)"),
new Link("Vkontakte", "https:@(links["vk"].Url)")
}
}

// Copyright ©2019 Michael "XFox" Gordeev