6 changed files with 96 additions and 17 deletions
@ -0,0 +1,55 @@ |
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Bold-Italic.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Bold-Italic.woff') format('woff') |
|||
font-weight: 700 |
|||
font-style: italic |
|||
font-display: swap |
|||
|
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Bold.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Bold.woff') format('woff') |
|||
font-weight: 700 |
|||
font-style: normal |
|||
font-display: swap |
|||
|
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-ExtraBold-Italic.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-ExtraBold-Italic.woff') format('woff') |
|||
font-weight: 800 |
|||
font-style: italic |
|||
font-display: swap |
|||
|
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-ExtraBold.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-ExtraBold.woff') format('woff') |
|||
font-weight: 800 |
|||
font-style: normal |
|||
font-display: swap |
|||
|
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Italic.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Italic.woff') format('woff') |
|||
font-weight: 400 |
|||
font-style: italic |
|||
font-display: swap |
|||
|
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Medium-Italic.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Medium-Italic.woff') format('woff') |
|||
font-weight: 500 |
|||
font-style: italic |
|||
font-display: swap |
|||
|
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Medium.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Medium.woff') format('woff') |
|||
font-weight: 500 |
|||
font-style: normal |
|||
font-display: swap |
|||
|
|||
@font-face |
|||
font-family: 'JetBrains Mono' |
|||
src: url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff2/JetBrainsMono-Regular.woff2') format('woff2'), url('https://cdn.jsdelivr.net/gh/JetBrains/JetBrainsMono/web/woff/JetBrainsMono-Regular.woff') format('woff') |
|||
font-weight: 400 |
|||
font-style: normal |
|||
font-display: swap |
@ -1,5 +1,14 @@ |
|||
<footer> |
|||
<p class="copyright">Logan McGrath © <span class="copyright-date">2012</span></p> |
|||
$partial("partials/source-generated.html")$ |
|||
<p class="generated-by-hakyll">Site proudly generated by <a href="http://jaspervdj.be/hakyll">Hakyll</a>.</p> |
|||
<p class="generated-by-hakyll"> |
|||
Site proudly generated by <a href="http://jaspervdj.be/hakyll">Hakyll</a> from commit |
|||
<a class="commit-link" href="$githubUrl$/commit/$gitSha1$">[$gitSha1$] $gitMessage$</a>$if(isChanged)$ with local changes$endif$. |
|||
</p> |
|||
<p class="generated-by-hakyll"> |
|||
$if(isGenerated)$ |
|||
This page was rendered by processing data from other pages. |
|||
$else$ |
|||
This page was rendered from <a href="$githubUrl$/blob/$gitSha1$/$path$">$path$</a> |
|||
$endif$ |
|||
</p> |
|||
</footer> |
|||
|
@ -1,13 +1,27 @@ |
|||
<p class="generated-from"> |
|||
<p class="source-generated"> |
|||
This page was generated from commit |
|||
<a class="commit-link" href="$githubUrl$/commit/$gitSha1$">[$gitSha1$] $gitMessage$</a> |
|||
$if(isChanged)$ |
|||
with local changes |
|||
$endif$ |
|||
</p> |
|||
$if(isGenerated)$ |
|||
$else$ |
|||
<p class="source-generated"> |
|||
The source for this page may be found at <a href="$githubUrl$/blob/$gitSha1$/$path$">$path$</a> |
|||
</p> |
|||
$endif$ |
|||
|
|||
<!-- <p class="generated-from"> |
|||
This page was generated |
|||
$if(isGenerated)$ |
|||
from commit |
|||
$else$ |
|||
from file <code><a href="$githubUrl$/blob/$gitSha1$/$path$">$path$</a></code> |
|||
from file <a href="$githubUrl$/blob/$gitSha1$/$path$">$path$</a> |
|||
at commit |
|||
$endif$ |
|||
<a class="commit-link" href="$githubUrl$/commit/$gitSha1$">[$gitSha1$] $gitMessage$</a> |
|||
Log: <a class="commit-link" href="$githubUrl$/commit/$gitSha1$">[$gitSha1$] $gitMessage$</a> |
|||
$if(isChanged)$ |
|||
with local modifications |
|||
$endif$ |
|||
</p> |
|||
</p> --> |
|||
|
Loading…
Reference in new issue