-
Notifications
You must be signed in to change notification settings - Fork 3
/
foreword-print.html
42 lines (35 loc) · 1.01 KB
/
foreword-print.html
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
---
---
<!DOCTYPE html>
<!-- SPDX-License-Identifier: CC0-1.0 -->
<!-- SPDX-FileCopyrightText: 2019-2024 The Foundation for Public Code <[email protected]>, https://standard.publiccode.net/AUTHORS -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/github-markdown.css">
<link rel="stylesheet" href="assets/print.css">
<title>{{ site.title }}</title>
<style>
/* Print specific */
@media print {
@page :left {
@top-left {
content: counter(page, lower-roman);
}
}
@page :right {
@top-right {
content: counter(page, lower-roman);
}
}
}
</style>
</head>
<body class="markdown-body">
<article id="section-foreword">
{% for page in site.pages %}{% if page.name == "foreword.md" %}{{page.content | markdownify}}{% endif%}{% endfor %}
</article>
</body>
</html>