1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/MyWebsite/Views/Projects/Index.cshtml
T
2019-11-09 12:36:38 +03:00

34 lines
929 B
Plaintext

@{
ViewData["Title"] = "My projects";
}
<header>
<div>
<h1>My projects</h1>
<h3>Here is presented the most of projects I worked on</h3>
</div>
<iframe src="//githubbadge.appspot.com/xfox111" class="github-stats" frameborder="0"></iframe>
</header>
<article>
@foreach (Project p in ViewData["Images"] as Project[])
{
<div class="project-item">
<div>
<h1>@p.Title</h1>
<p class="description">@p.Description</p>
<a href="@(p.Link)" target="_blank">@p.LinkCaption</a>
</div>
<div>
@foreach (string i in p.Badges)
{
<div class="badge @i"></div>
}
</div>
</div>
}
<script type="text/javascript">UpdateProjects();</script>
</article>
<link rel="stylesheet" type="text/css" href="~/css/Projects.css" />