-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtopics.html
More file actions
29 lines (26 loc) · 847 Bytes
/
topics.html
File metadata and controls
29 lines (26 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
title: Topics
permalink: /topics/
---
<h1>Topics I Write About</h1>
<div class="topic-grid">
{% assign categories = "ai-ml,security,networking,programming" | split: "," %}
{% for cat in categories %}
<div class="topic-card">
<h2>{{ site.category_descriptions[cat].icon }} {{ site.category_descriptions[cat].name }}</h2>
<p>{{ site.category_descriptions[cat].description }}</p>
<p class="post-count">{{ site.categories[cat] | size }} posts</p>
<a href="/category/{{ cat }}/" class="btn">View all →</a>
</div>
{% endfor %}
</div>
<h2>Popular Tags</h2>
<div class="tag-cloud">
{% assign tags = site.tags | sort %}
{% for tag in tags %}
<a href="/tag/{{ tag[0] }}" class="tag-cloud-item" style="font-size: {{ tag[1].size | times: 4 | plus: 80 }}%">
{{ tag[0] }}
</a>
{% endfor %}
</div>