diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-05-27 16:08:24 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-05-27 16:08:24 +0200 |
commit | fc6a961ad0429f082912c37431ed3e71510c6dfb (patch) | |
tree | 09ab89be4db9a9510ab8a0ce83480fedce931363 /templates/web.html | |
parent | c123bb147cd0acc3b898b3db4134b584575b9ee4 (diff) |
Add web template for embedded css
Diffstat (limited to 'templates/web.html')
-rw-r--r-- | templates/web.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/web.html b/templates/web.html index 68e5c64..244092d 100644 --- a/templates/web.html +++ b/templates/web.html @@ -11,19 +11,17 @@ $if(keywords)$ $endif$ <title>ElenQ Publishing - $pagetitle$</title> - <link rel="stylesheet" href="/static/css/normalize.css"> - <link rel="stylesheet" href="/static/css/fonts.css"> - <link rel="stylesheet" href="/static/css/elenq.css"> - <link rel="stylesheet" href="/static/css/elenq-publishing.css"> + <link rel="stylesheet" href="css/normalize.css"> + <link rel="stylesheet" href="css/fonts.css"> + <link rel="stylesheet" href="css/elenq.css"> + <link rel="stylesheet" href="css/elenq-publishing.css"> <!-- No need to add extra highlighting css --> - <link rel="stylesheet" href="/static/css/highlight.css"> + <link rel="stylesheet" href="css/highlight.css"> <style> .sourceCode { overflow: visible; } </style> - - <script type="text/javascript" async src="/static/js/prism-hl.js"></script> - <script type="text/javascript" async src="/static/js/colorscheme-switcher.js"></script> + <script type="text/javascript" async src="js/colorscheme-switcher.js"></script> $if(math)$ $math$ |