aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Views
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-07 15:40:29 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-07 15:40:29 +0300
commit89e9ec0566f36f44df8cfbf7cea89c11526efcbd (patch)
treef566ba6b37c60b0d0621e49d755187fc686f8eb2 /ExamTemplate/Web/Views
parent5f2abdf275c3765290ee7d6728842cba6d3af184 (diff)
downloadit-kariera-exam-template-89e9ec0566f36f44df8cfbf7cea89c11526efcbd.tar
it-kariera-exam-template-89e9ec0566f36f44df8cfbf7cea89c11526efcbd.tar.gz
it-kariera-exam-template-89e9ec0566f36f44df8cfbf7cea89c11526efcbd.zip
Made moved footer to it's own partial cshtml
Diffstat (limited to 'ExamTemplate/Web/Views')
-rw-r--r--ExamTemplate/Web/Views/Shared/_FooterContent.cshtml8
-rw-r--r--ExamTemplate/Web/Views/Shared/_Layout.cshtml4
2 files changed, 9 insertions, 3 deletions
diff --git a/ExamTemplate/Web/Views/Shared/_FooterContent.cshtml b/ExamTemplate/Web/Views/Shared/_FooterContent.cshtml
new file mode 100644
index 0000000..8ab9fc3
--- /dev/null
+++ b/ExamTemplate/Web/Views/Shared/_FooterContent.cshtml
@@ -0,0 +1,8 @@
+<div class="border-top box-shadow">
+ <div class="footer-content middle-content-container">
+ <section>
+ IT-kariera Exam Template - 2021
+ </section>
+ <div class="flex-spacer"></div>
+ </div>
+</div>
diff --git a/ExamTemplate/Web/Views/Shared/_Layout.cshtml b/ExamTemplate/Web/Views/Shared/_Layout.cshtml
index 8388ea8..dd7bf82 100644
--- a/ExamTemplate/Web/Views/Shared/_Layout.cshtml
+++ b/ExamTemplate/Web/Views/Shared/_Layout.cshtml
@@ -19,9 +19,7 @@
</main>
<footer class="border-top box-shadow">
- <div class="middle-content-container">
- IT-kariera Exam Template - 2021
- </div>
+ <partial name="_FooterContent.cshtml" />
</footer>
</body>
</html>