article scraping, printing and template. barcodes and db for links.
parent
85438784f8
commit
44914e90e7
@ -0,0 +1,55 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<title>${title}</title>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
font-family: Junicode;
|
||||||
|
font-size: 10pt;
|
||||||
|
line-height: 1;
|
||||||
|
counter-reset: sidenote-counter;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-variant: small-caps;
|
||||||
|
width: 67%;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
width: 67%;
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
width: 67%;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
a::after {
|
||||||
|
counter-increment: sidenote-counter;
|
||||||
|
content: counter(sidenote-counter);
|
||||||
|
font-size: smaller;
|
||||||
|
vertical-align: super;
|
||||||
|
}
|
||||||
|
#date #article-src {
|
||||||
|
padding-bottom: 10%;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
.sidenote {
|
||||||
|
float: right;
|
||||||
|
clear: right;
|
||||||
|
margin-right: -30%;
|
||||||
|
width: 30%;
|
||||||
|
height: 30%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.sidenote svg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<body>
|
||||||
|
<h1>${title}</h1>
|
||||||
|
<p id="date">${date}</p>
|
||||||
|
${article}
|
||||||
|
<p id="article-src">Article Source: ${url}</p>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue