-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.njk
56 lines (55 loc) · 1.69 KB
/
index.njk
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
55
56
---
pagination:
data: collections.post
size: 100
reverse: true
alias: posts
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>The website of D.A. Kahn</title>
{% set css %} {% include "reset.css" %} {% include "main.css" %} {% endset
%}
<style>
{{ css | cssmin | safe }}
</style>
</head>
<body>
<a href="#main" class="skip-link visible-on-focus">Skip to content</a>
<header>
<h1 class="site-name">@dakahn</h1>
<ul id="external-links" aria-label="external links">
<li><a class="external-link" href="https://github.com/dakahn">Github</a></li>
<li><a class="external-link" href="https://www.linkedin.com/in/dakahn87/">Linkedin</a></li>
<li><a class="external-link" href="https://mastodon.social/@dakahn">Mastodon</a></li>
</ul>
</header>
<main id="main">
<p class="intro-paragraph">
My name is D.A. Kahn. I'm a digital accessibility consultant helping
teams and organizations create and maintain digital experiences that meet
the needs of users across the ability spectrum.
</p>
<ol id="article-list">
{% for post in posts %}
<li>
<a aria-describedby="{{ post.url }}"class="index-article-title" href="{{ post.url | url }}">
<article>
<h2 class="article">
{{ post.data.title }}
</h2>
<time id="{{ post.url }}">{{ post.date | dateReadable }}</time>
</article>
</a>
</li>
{% endfor %}
</ol>
</main>
</body>
<footer>
© 2023-2024 D.A. Kahn
</footer>
</html>