parent
5f4a8b0baa
commit
74237e45b8
@ -0,0 +1,16 @@ |
||||
# The URL the site will be built for |
||||
base_url = "https://www.gallant.lol" |
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory |
||||
compile_sass = true |
||||
|
||||
# Whether to build a search index to be used later on by a JavaScript library |
||||
build_search_index = false |
||||
|
||||
[markdown] |
||||
# Whether to do syntax highlighting |
||||
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola |
||||
highlight_code = false |
||||
|
||||
[extra] |
||||
# Put all your custom variables here |
@ -0,0 +1,6 @@ |
||||
+++ |
||||
title = "Posts" |
||||
sort_by = "date" |
||||
template = "blog.html" |
||||
page_template = "blog-page.html" |
||||
+++ |
@ -0,0 +1,6 @@ |
||||
+++ |
||||
title = "test" |
||||
date = 2022-10-12 |
||||
+++ |
||||
|
||||
test |
@ -0,0 +1,16 @@ |
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Gallant</title> |
||||
</head> |
||||
|
||||
<body> |
||||
<section class="section"> |
||||
<div class="container"> |
||||
{% block content %} {% endblock %} |
||||
</div> |
||||
</section> |
||||
</body> |
||||
|
||||
</html> |
@ -0,0 +1,9 @@ |
||||
{% extends "base.html" %} |
||||
|
||||
{% block content %} |
||||
<h1 class="title"> |
||||
{{ page.title }} |
||||
</h1> |
||||
<p class="subtitle"><strong>{{ page.date }}</strong></p> |
||||
{{ page.content | safe }} |
||||
{% endblock content %} |
@ -0,0 +1,13 @@ |
||||
{% extends "base.html" %} |
||||
|
||||
{% block content %} |
||||
<h1 class="title"> |
||||
{{ section.title }} |
||||
</h1> |
||||
<ul> |
||||
<!-- If you are using pagination, section.pages will be empty. You need to use the paginator object --> |
||||
{% for page in section.pages %} |
||||
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li> |
||||
{% endfor %} |
||||
</ul> |
||||
{% endblock content %} |
@ -0,0 +1,8 @@ |
||||
{% extends "base.html" %} |
||||
|
||||
{% block content %} |
||||
<h1 class="title"> |
||||
Welcome |
||||
</h1> |
||||
<p>Click <a href="{{ get_url(path="@/blog/_index.md") }}">here</a> to see my posts.</p> |
||||
{% endblock content %} |
Loading…
Reference in new issue