mirror of
https://github.com/daylinmorgan/nimpkgs.git
synced 2024-12-21 18:50:43 -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>
|
</head>
|
||||||
<body id="body" class="text-ctp-text max-w-screen bg-ctp-base flex items-center justify-center">
|
<body id="body" class="text-ctp-text max-w-screen bg-ctp-base flex items-center justify-center">
|
||||||
<div id="ROOT"></div>
|
<div id="ROOT"></div>
|
||||||
<script type="text/javascript" src="/nimpkgs.js"></script>
|
<script type="text/javascript" src="nimpkgs.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -170,7 +170,7 @@ proc searchBar(): Vnode =
|
||||||
proc headerBar(): VNode =
|
proc headerBar(): VNode =
|
||||||
result = buildHtml(tdiv(class = "mt-5 mx-5 flex flex-wrap")):
|
result = buildHtml(tdiv(class = "mt-5 mx-5 flex flex-wrap")):
|
||||||
tdiv(class = "flex items-center my-3 grow"):
|
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",
|
span(class = "font-bold md:text-4xl text-lg",
|
||||||
style = "font-variation-settings: 'CASL' 1".toCss):
|
style = "font-variation-settings: 'CASL' 1".toCss):
|
||||||
text "pkgs"
|
text "pkgs"
|
||||||
|
|
Loading…
Reference in a new issue