Add files via upload
This commit is contained in:
34
docs/_layouts/collections_layout.html
Normal file
34
docs/_layouts/collections_layout.html
Normal file
@@ -0,0 +1,34 @@
|
||||
<!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;
|
||||
}
|
||||
.meta {
|
||||
font-size: .7rem;
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
</style>
|
||||
<!-- header -->
|
||||
{% include header.html %}
|
||||
<!-- nav -->
|
||||
{% include nav.html %}
|
||||
<!-- page content -->
|
||||
<main class="post-list">
|
||||
<p class="title">{{page.title}}</p>
|
||||
{{content}}
|
||||
</main>
|
||||
|
||||
<!-- footer -->
|
||||
{% include footer.html %}
|
||||
</body>
|
||||
</html>
|
31
docs/_layouts/default.html
Normal file
31
docs/_layouts/default.html
Normal file
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{% include head.html %}
|
||||
<body>
|
||||
<style>
|
||||
.title {
|
||||
padding: 10% 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>
|
31
docs/_layouts/page.html
Normal file
31
docs/_layouts/page.html
Normal 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>
|
36
docs/_layouts/post.html
Normal file
36
docs/_layouts/post.html
Normal file
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{% include head.html %}
|
||||
<body>
|
||||
<style>
|
||||
.title {
|
||||
padding: 10%;
|
||||
color: #101417;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
background: #f78e66;
|
||||
display: grid;
|
||||
}
|
||||
.meta {
|
||||
font-size: .7rem;
|
||||
font-weight: normal;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
</style>
|
||||
<!-- header -->
|
||||
{% include header.html %}
|
||||
<!-- nav -->
|
||||
{% include nav.html %}
|
||||
<!-- page content -->
|
||||
<main class="content">
|
||||
<p class="title">
|
||||
{{page.title}} <span class="meta">Written By {{page.author}}</span>
|
||||
</p>
|
||||
{{page.content}}
|
||||
</main>
|
||||
|
||||
<!-- footer -->
|
||||
{% include footer.html %}
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user