webbed-site/blog.html

28 lines
633 B
HTML
Raw Normal View History

2024-09-26 12:47:17 -05:00
---
layout: 2col
title: mana's blog
permalink: /blog/
menu: home
menu-title: blog
---
<div id="tag-cloud">
tags:
{% 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>
{% 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 %}