diff options
author | cyfraeviolae <cyfraeviolae> | 2022-02-26 12:17:08 -0500 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2022-02-26 12:17:08 -0500 |
commit | a52bbfbb58f72467bda0b42210a8bfe08f4ece9b (patch) | |
tree | 7f13dd9e0ab489098914ed3d72dbc3162fd990a1 /src | |
parent | a4a45c7122aa66a5240806efd4d62ee3daae0702 (diff) |
fix css link
Diffstat (limited to 'src')
-rw-r--r-- | src/Lib.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -714,7 +714,7 @@ pageTemplate domainName crumbs body = doctypehtml_ $ do meta_ [charset_ "utf-8"] meta_ [name_ "viewport", content_ "width=device-width, initial-scale=1.0"] link_ [rel_ "shortcut icon", type_ "image/x-icon", href_ "/spectral-renga/static/favicon.ico"] - link_ [rel_ "stylesheet", type_ "text/css", href_ "/cyfraeviolae/static/styles.css"] + link_ [rel_ "stylesheet", type_ "text/css", href_ "/static/styles.css"] link_ [rel_ "stylesheet", type_ "text/css", href_ "/spectral-renga/static/styles.css"] body_ $ div_ [class_ "container"] $ do div_ $ |