Add files via upload

This commit is contained in:
SHARAD RAJ
2019-11-25 16:31:33 +05:30
committed by GitHub
parent d654aacb06
commit a1bf76d295
16 changed files with 752 additions and 0 deletions

31
docs/_layouts/page.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<style>
.title {
padding: 5%;
color: #101417;
font-size: 18px;
font-weight: bold;
text-align: center;
background: #f78e66;
display: grid;
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="content">
<p class="title">
{{page.title}}
</p>
{{page.content}}
</main>
<!-- footer -->
{% include footer.html %}
</body>
</html>