-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAbout.cshtml
More file actions
19 lines (18 loc) · 815 Bytes
/
About.cshtml
File metadata and controls
19 lines (18 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@{
ViewData["Title"] = "About";
Layout = "_Layout";
}
<h1>@ViewData["Title"]</h1>
<div class="container">
<div class="card mx-auto">
<div class="card-body ">
<h5 class="card-title text-md-center">Marie Antons</h5>
<h6 class="card-subtitle mb-2 text-muted text-md-center">Junior Developer at STRATAFOLIO</h6>
<p class="card-text text-md-center">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<div class="text-center">
<a class="btn btn-primary" href="https://github.com/mrsantons" role="button">GitHub</a>
<a class="btn btn-primary" href="https://www.linkedin.com/in/marieantons/" role="button">LinkedIn</a>
</div>
</div>
</div>
</div>