21 lines
602 B
Plaintext
21 lines
602 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=525">
|
|
<title>{{ site.title }}</title>
|
|
<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>
|