merging.
This commit is contained in:
deepend 2020-05-06 23:09:51 -06:00
commit d4443f6f56
2 changed files with 46 additions and 42 deletions

View File

@ -67,12 +67,14 @@ hr {
from { content: "_"; } from { content: "_"; }
to { content: ""; } to { content: ""; }
} }
h1::after { @media not (prefers-reduced-motion: reduce) {
content: "_"; h1::after {
animation-name: cursor; content: "_";
animation-iteration-count: infinite; animation-name: cursor;
animation-timing-function: cubic-bezier(1.0,0,0,1.0); animation-iteration-count: infinite;
animation-duration: 1s; animation-timing-function: cubic-bezier(1.0,0,0,1.0);
animation-duration: 1s;
}
} }
h1 { h1 {
text-transform: uppercase; text-transform: uppercase;

View File

@ -46,54 +46,56 @@ $highlighting-css$
$for(include-before)$ $for(include-before)$
$include-before$ $include-before$
$endfor$ $endfor$
$if(title)$ <div class="content">
<header> $if(title)$
<h1 class="title">$$ $title$</h1> <header>
<h1 class="title">$$ $title$</h1>
$if(subtitle)$ $if(subtitle)$
<p class="subtitle">$subtitle$</p> <p class="subtitle">$subtitle$</p>
$endif$ $endif$
$if(author)$ $if(author)$
<p>authors:</p> <p>authors:</p>
$for(author)$ $for(author)$
<p class="author"><a href="/~$author$/">~$author$</a></p> <p class="author"><a href="/~$author$/">~$author$</a></p>
$endfor$ $endfor$
$endif$ $endif$
$if(date)$ $if(date)$
<p class="date">$date$</p> <p class="date">$date$</p>
$endif$
</header>
$endif$ $endif$
</header> <br>
$endif$ <div class="grid">
<br> <div class="row">
<div class="grid">
<div class="row"> <div class="col">
<div class="col"> $if(toc)$
$if(toc-title)$
$if(toc)$ <h2>$toc-title$</h2>
$if(toc-title)$
<h2>$toc-title$</h2>
$endif$
<nav id="$idprefix$TOC">
$table-of-contents$
</nav>
<hr>
$endif$ $endif$
<nav id="$idprefix$TOC">
$table-of-contents$
</nav>
<hr>
$endif$
<!-- unindent body so that code blocks don't have extra indents. See <!-- unindent body so that code blocks don't have extra indents. See
https://stackoverflow.com/questions/42773587/code-block-formatting-issues-with-bootstrap-and-pandoc --> https://stackoverflow.com/questions/42773587/code-block-formatting-issues-with-bootstrap-and-pandoc -->
$body$ $body$
$for(include-after)$ $for(include-after)$
$include-after$ $include-after$
$endfor$ $endfor$
</div>
</div>
</div> </div>
</div> </div>
<br>
</body>
<footer class="text-center"> <footer class="text-center">
<p>ECDSA fingerprint: SHA256:duamOATgnGcfRFFkotCwrAWzZtRjwxm64WAhq5tQRwE</p> <p>ECDSA fingerprint: SHA256:duamOATgnGcfRFFkotCwrAWzZtRjwxm64WAhq5tQRwE</p>
<a href="https://github.com/tildeclub/site">page source</a> <a href="https://github.com/tildeclub/site">page source</a>
</footer> </footer>
</body>
</html> </html>