blob: 9c4e231e4e0cf727f5d74aeedb8428a044dacf1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
layout: layout
title: Linux Archive
---
{% macro tagList(tagName) %}
{% for post in collections.all %}
{% set tags = post.data.tags %}
{% if tags and tags.push is defined and tagName in tags %}
<span class="post-date">{{ post.date | dateFormat("dd-MM-yyyy") }}</span>
— <a href="{{ post.url }}">{{ post.data.title }}</a>
{% endif %}
{% endfor %}
{% endmacro %}
# Linux archive
## How to stay safe Online
{{ tagList("safe") }}
## The internet you never see (Darknet)
{{ tagList("dark") }}
|