diff options
| author | John J. Camilleri <john@digitalgrammars.com> | 2018-11-29 13:06:52 +0100 |
|---|---|---|
| committer | John J. Camilleri <john@digitalgrammars.com> | 2018-11-29 13:06:52 +0100 |
| commit | 01f61c526f62ceb4ef9312cc450674edbec2f8fd (patch) | |
| tree | 3ac0bcf9ee4a60f7fefc1dac8ca85067db9764f7 /bin/template.html | |
| parent | 538fe5bddb1104cac9da0299f056ca26cac7af83 (diff) | |
Custom CSS comes after libraries; add include-before/after (not actively used)
Diffstat (limited to 'bin/template.html')
| -rw-r--r-- | bin/template.html | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/bin/template.html b/bin/template.html index cffae1b3b..2add09801 100644 --- a/bin/template.html +++ b/bin/template.html @@ -13,11 +13,11 @@ $if(keywords)$ <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> $endif$ <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> + <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous"> $for(css)$ <link rel="stylesheet" href="$css$" /> $endfor$ - <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> - <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous"> $if(math)$ $math$ $endif$ @@ -29,6 +29,9 @@ $for(header-includes)$ $endfor$ </head> <body> +$for(include-before)$ +$include-before$ +$endfor$ <div class="container-fluid my-5" style="max-width:1200px"> $if(title)$ @@ -116,7 +119,9 @@ $body$ <div> <div> </footer> - +$for(include-after)$ +$include-after$ +$endfor$ <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); |
