-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.cshtml
More file actions
80 lines (63 loc) · 3.75 KB
/
Index.cshtml
File metadata and controls
80 lines (63 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@{
Layout = null;
}
<!DOCTYPE html>
<!-- upto 2 directory depth-->
<html lang="en-US">
@await Html.PartialAsync("HeaderPartial")
<body id="top">
@await Html.PartialAsync("NavbarPartial")
<div class="page-content">
<div id="content">
@await Component.InvokeAsync("FeatureList")
@await Component.InvokeAsync("AboutList")
@await Component.InvokeAsync("ServiceList")
@await Component.InvokeAsync("SkillList")
@await Component.InvokeAsync("PortfolioList")
@await Component.InvokeAsync("ExperienceList")
@await Component.InvokeAsync("TestimonialList")
<div class="section px-2 px-lg-4 pb-4 pt-5 mb-5" id="contact">
<div class="container-narrow">
<div class="text-center mb-5">
<h2 class="marker marker-center">İletişim</h2>
</div>
<div class="row">
@*@await Component.InvokeAsync("SendMessage")*@
@await Html.PartialAsync("/Views/Default/SendMessage.cshtml")
@await Component.InvokeAsync("ContactDetails")
</div>
</div>
</div>
<footer class="pt-4 pb-4 text-center bg-light">
<div class="container">
<div class="my-3">
<div class="h4">Meltem Öztürkcan</div>
<p>Fullstack .Net Developer </p>
<div class="social-nav">
<nav role="navigation">
<ul class="nav justify-content-center">
<li class="nav-item"><a class="nav-link" href="https://twitter.com/templateflip" title="Twitter"><i class="fab fa-twitter"></i><span class="menu-title sr-only">Twitter</span></a></li>
<li class="nav-item"><a class="nav-link" href="https://www.instagram.com/meltemozturkcan/" title="Instagram"><i class="fab fa-instagram"></i><span class="menu-title sr-only">Instagram</span></a></li>
<li class="nav-item"><a class="nav-link" href="https://www.linkedin.com/in/meltem-%C3%B6zt%C3%BCrkcan/" title="LinkedIn"><i class="fab fa-linkedin"></i><span class="menu-title sr-only">LinkedIn</span></a></li>
<li class="nav-item"><a class="nav-link" href="https://github.com/meltemozturkcan" title="Github"><i class="fab fa-github"></i><span class="menu-title sr-only">Github</span></a></li>
</ul>
</nav>
</div>
</div>
<div class="text-small text-secondary">
<div class="mb-1">© @DateTime.Now.Year. Tüm hakları saklıdır.</div>
</div>
</div>
</footer>
</div>
</div>
<div id="scrolltop"><a class="btn btn-secondary" href="#top"><span class="icon"><i class="fas fa-angle-up fa-x"></i></span></a></div>
<script src="~/Template/scripts/imagesloaded.pkgd.min.js?ver=1.2.0"></script>
<script src="~/Template/scripts/masonry.pkgd.min.js?ver=1.2.0"></script>
<script src="~/Template/scripts/BigPicture.min.js?ver=1.2.0"></script>
<script src="~/Template/scripts/purecounter.min.js?ver=1.2.0"></script>
<script src="~/Template/scripts/bootstrap.bundle.min.js?ver=1.2.0"></script>
<script src="~/Template/scripts/aos.min.js?ver=1.2.0"></script>
<script src="~/Template/scripts/main.js?ver=1.2.0"></script>
</body>
</html>