emii.gay/_layouts/hyper-accessible.liquid

21 lines
602 B
Plaintext
Raw Normal View History

2021-11-10 20:21:24 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=525">
2021-11-16 17:15:01 +00:00
<title>{{ site.title }}</title>
2021-11-10 20:21:24 +00:00
<link rel="stylesheet" href="{{ site.base_url }}/static/common-style.css"/>
<link rel="stylesheet" href="{{ site.base_url }}/static/hyper-accessible-style.css"/>
</head>
<body>
{% assign sections=page.content | split: "<p>. . .</p>" %}
<main style="--section-count: {{sections | size}}">
{% for section in sections %}
<section style="--section-number: {{ forloop.index }}">
{{ section }}
</section>
{% endfor %}
</main>
</body>
</html>