mirror of
https://github.com/Pagwin-Fedora/website.git
synced 2025-07-18 09:25:41 +00:00
a bunch
This commit is contained in:
parent
afb770cfc6
commit
0fc045068a
4 changed files with 16 additions and 2 deletions
|
@ -8,8 +8,8 @@
|
||||||
<link rel='stylesheet' href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' type='text/css'>
|
<link rel='stylesheet' href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' type='text/css'>
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}/libraries/normalize.3.0.1.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/libraries/normalize.3.0.1.css" />
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/liquorice.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/liquorice.css" />
|
||||||
<link rel="shortcut icon" href="/favicon.ico" />
|
{{ cond (eq .Page.Kind "page") (safeHTML (printf "<link rel='stylesheet' href='%s/css/single.css'>" .Site.BaseURL)) "" }}
|
||||||
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-144-precomposed.png" sizes="144x144" />
|
<link rel="icon" href="{{ .Site.BaseURL }}/icon.png" />
|
||||||
<meta property="og:title" content="{{ .Title }}"/>
|
<meta property="og:title" content="{{ .Title }}"/>
|
||||||
<meta property="og:type" content="website"/>
|
<meta property="og:type" content="website"/>
|
||||||
<meta property="og:url" content="{{ .Permalink }}"/>
|
<meta property="og:url" content="{{ .Permalink }}"/>
|
||||||
|
|
11
layouts/partials/tail.html
Normal file
11
layouts/partials/tail.html
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
function toggle(id) {
|
||||||
|
var e = document.getElementById(id);
|
||||||
|
e.style.display == 'block' ? e.style.display = 'none' : e.style.display = 'block';
|
||||||
|
}
|
||||||
|
//-->
|
||||||
|
</script>
|
||||||
|
{{ cond (eq .Page.Kind "page") (safeHTML (printf "<script src='%s/js/single.js'></script>" .Site.BaseURL)) ""}}
|
||||||
|
</body>
|
||||||
|
</html>
|
3
static/css/single.css
Normal file
3
static/css/single.css
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
h1 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
0
static/js/single.js
Normal file
0
static/js/single.js
Normal file
Loading…
Reference in a new issue