mirror of
https://github.com/daylinmorgan/nimpkgs.git
synced 2024-11-12 14:53:15 -06:00
fix: use relative links
This commit is contained in:
parent
ebac9e921a
commit
870f74a5a2
2 changed files with 2 additions and 2 deletions
|
@ -13,6 +13,6 @@
|
|||
</head>
|
||||
<body id="body" class="text-ctp-text max-w-screen bg-ctp-base flex items-center justify-center">
|
||||
<div id="ROOT"></div>
|
||||
<script type="text/javascript" src="/nimpkgs.js"></script>
|
||||
<script type="text/javascript" src="nimpkgs.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -170,7 +170,7 @@ proc searchBar(): Vnode =
|
|||
proc headerBar(): VNode =
|
||||
result = buildHtml(tdiv(class = "mt-5 mx-5 flex flex-wrap")):
|
||||
tdiv(class = "flex items-center my-3 grow"):
|
||||
img(src = "/img/logo.svg", class = "inline h-1em md:h-2em px-1")
|
||||
img(src = "img/logo.svg", class = "inline h-1em md:h-2em px-1")
|
||||
span(class = "font-bold md:text-4xl text-lg",
|
||||
style = "font-variation-settings: 'CASL' 1".toCss):
|
||||
text "pkgs"
|
||||
|
|
Loading…
Reference in a new issue