the webdog update

This commit is contained in:
zyl 2024-11-08 18:42:07 -08:00
parent 00c90a12d7
commit 3c43403089
Signed by: zyl
SSH key fingerprint: SHA256:uxxbSXbdroP/OnKBGnEDk5q7EKB2razvstC/KmzdXXs
26 changed files with 29 additions and 4752 deletions

View file

@ -3,16 +3,17 @@ title: zyl is gay
description: "zyl's website."
sass_styles: [index.scss, pet.scss, click.scss]
cdn_url: "https://i.zyl.gay"
code_theme: base16-ocean.dark
resources:
blog:
source_path: blog
output_path_short: blog
output_path_long: blog
resource_template: blog-post.tera
resource_list_template: blog-list.tera
resource_template: blog/resource.tera
resource_list_template: blog/list.tera
tag_list_template: basic-link-list.tera
rss_template: rss/blog-post.tera
rss_template: blog/rss.tera
rss_title: zyl's blog
rss_description: feed of recent blog posts on zyl's website.
list_title: blog
@ -23,10 +24,10 @@ resources:
source_path: images
output_path_short: i
output_path_long: images
resource_template: image.tera
resource_list_template: images.tera
resource_template: image/resource.tera
resource_list_template: image/list.tera
tag_list_template: basic-link-list.tera
rss_template: rss/image.tera
rss_template: image/rss.tera
rss_title: zyl's images
rss_description: feed of newly uploaded images from zyl's website.
list_title: images

View file

@ -43,7 +43,7 @@
<div class="flex-spacer"></div>
<hr />
<footer id="footer">
bark bark awruff :3
bark bark awruff :3 &bullet; powered by <strong><a href="https://webdog.zyl.gay">webdog</a></strong>
<div class="badges">
{{ self::badge(badge="transbian.png", url="https://badge.les.bi", alt="transgender and lesbian flags") }}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
<h1>{{ title }}</h1>
<div class="link-list">
<ul>
@ -6,3 +8,4 @@
{% endfor %}
</ul>
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
{% if tag %}
<h1>blog posts tagged {{tag}}</h1>
<p><a href="/blog/">View all blog posts</a></p>
@ -22,3 +24,4 @@
</div>
{% endfor %}
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
<div class="blog-post">
<h1 class="title">{{title}}</h1>
<span class="timestamp">published {{timestamp}}</span>
@ -20,3 +22,4 @@
{% endfor %}
</div>
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
{% if tag %}
<h1>images tagged {{tag}}</h1>
<p><a href="/images/">view all images</a></p>
@ -21,3 +23,4 @@
</a>
{% endfor %}
</div>
{% endblock content %}

View file

@ -1,3 +1,5 @@
{% extends "base.tera" %}
{% block content %}
<div class="image-full">
<h1 class="title">{{title}}</h1>
<span class="timestamp">published {{timestamp}}</span>
@ -11,3 +13,4 @@
{% endfor %}
</div>
</div>
{% endblock content %}