aboutsummaryrefslogtreecommitdiff
path: root/index.njk
blob: de2d1d6297d24ad1ff96b5ad40ffba22989d9541 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html>

<head>
    <meta name="description"
        content="Personal blog of Marc." />
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="stylesheet" href="css/main.css" />
    <title>߸ mccd</title>
</head>

<div style="display: flex; flex-direction: column;" class="intro">
  <a href="/" class="code side-margin" style="color: black; margin-bottom: 0px;font-weight: 700; margin-top: 5px; font-size: 14px">mccd</a>
  <div class="side-margin code" style="font-size: 12px; margin-bottom: 0px; line-height:1.3; ">
    <p style="margin:0">pub&ensp;&ensp;&ensp;rsa4096 2023-09-22 [SC]</p>
    <div style="display: flex; gap: 8px;">
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">2F30</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">1709</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">2782</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">FD05</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">CCCF</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">7964</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">647E</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">396D</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">1F4E</a>
      <a style="color:grey" href="/assets/public-key.asc" style="margin:0; ">AE7B</a>
    </div>
    <p style="margin:0">uid &ensp; &ensp; &ensp; &ensp; &ensp; &ensp; &ensp;Marc &ensp;Coquand &ensp;&lt;<a style="color:grey" href="mailto:marc@mccd.space">marc@mccd.space</a>&gt;</p>
  </div>
  <div class="front-text side-margin" style="display: flex; margin-bottom: 16px; align-items: center; font-size: 12px;">
    <a class="link" style="margin-right: 0.5rem;" href="https://fosstodon.org/@marcc">mastodon</a>
    <a class="link" style="margin-right: 0.5rem;" href="/feed.xml">rss</a>
    <a class="link" style="margin-right: 0.5rem;" href="https://git.mccd.space">git</a>
  </div>
    <div class="posts code" style="display: flex; align-items: center; ">
      <div style="margin-left: 1rem; display: inline-block; width: 4rem; margin-right: 0.8rem; align-items: center; font-weight: 700; color: black; font-size: 12px">
        Date
      </div>
      <div style="display: flex; font-weight: 700; color: black; font-size: 12px">
        Entry
      </div>
    </div>
    {% for post in collections.post | reverse %}
    <div class="posts">
      <div style="margin-left: 1rem; display: flex; ">
        <p class="code date" style="display: inline-block; width: 4rem; margin-right: 0.8rem; font-size: 12px; margin-top: 4px; align-items: center; margin-bottom: 0px">{{post.date.toLocaleDateString("en-GB").replaceAll("/","-")}}</p>
        <a style="font-size: 12px; align-items: end; display:flex" class="link front-text" href="{{ post.url | url }}">{{post.data.title}}</a>
      </div>
    </div>
    {% endfor %}
</div>
</head>