webbed-site/blog.html

31 lines
758 B
HTML
Raw Permalink Normal View History

2024-09-26 12:47:17 -05:00
---
layout: 2col
title: mana's blog
permalink: /blog/
2024-12-21 21:27:39 -06:00
menu: home
2024-09-26 12:47:17 -05:00
menu-title: blog
---
2025-01-06 12:22:24 -06:00
<div class="center">
<img src="/img/main/blog.png" alt="blog: welcome to here♡" style="padding: 0.2rem">
2024-09-26 12:47:17 -05:00
<div id="tag-cloud">
{% assign tags = site.tags | sort %}
{% for tag in tags %}
<span class="site-tag">
<a href="/tag/{{ tag | first | slugify }}/"
style="font-size: {{ tag | last | size | times: 4 | plus: 80 }}%">
{{ tag[0] | replace:'-', ' ' }}
</a>
</span>
{% endfor %}
</div>
2025-01-06 12:22:24 -06:00
</div>
<hr class="blog">
2024-09-26 12:47:17 -05:00
{% for post in site.posts %}
{% unless post.path contains '/updates/' %}
<ul>
<li>
{{ post.date | date: "%Y.%m.%d" }} <a href="{{ post.url }}">{{ post.title }}</a>
</li>
</ul>
{% endunless %}
{% endfor %}