You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.1 KiB
HTML
62 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>${title}</title>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
@media print {
|
|
@page {
|
|
size: A4;
|
|
margin: 1cm;
|
|
}
|
|
}
|
|
body {
|
|
font-family: "CMU Serif";
|
|
font-size: 10pt;
|
|
line-height: 1;
|
|
counter-reset: sidenote-counter;
|
|
}
|
|
h1 {
|
|
font-variant: small-caps;
|
|
}
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
a::after {
|
|
counter-increment: sidenote-counter;
|
|
content: counter(sidenote-counter);
|
|
font-size: 7pt;
|
|
vertical-align: super;
|
|
}
|
|
#twocol {
|
|
-moz-column-count: 2;
|
|
-webkit-column-count: 2;
|
|
column-count: 2;
|
|
text-align: justify;
|
|
}
|
|
#date #article-src {
|
|
padding-bottom: 10%;
|
|
font-style: italic;
|
|
}
|
|
.footnote {
|
|
font-size: smaller;
|
|
padding-bottom: 0.5em;
|
|
}
|
|
.footnote svg {
|
|
width: 50%;
|
|
height: 50%;
|
|
}
|
|
</style>
|
|
<body>
|
|
<h1>${title}</h1>
|
|
<div id="twocol">
|
|
<p id="date">${date}</p>
|
|
${article}
|
|
<p id="article-src">Article Source: ${url}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|