Skip to content

Commit

Permalink
chore: Update Aside component and site configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka committed Jun 5, 2024
1 parent a5ff76e commit d408059
Show file tree
Hide file tree
Showing 3 changed files with 195 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _components/Aside.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function Aside({ data, hide }: AsideProps) {
);
return (
<li key={url}>
<a href={url} className={liStyle(url)}>
<a href={url} className={liStyle(url)} title={title}>
<p className="text-lg text-gray-900">
{abbreviation}
</p>
Expand Down
6 changes: 5 additions & 1 deletion _config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import lume from "lume/mod.ts";
import jsx from "lume/plugins/jsx.ts";
import tailwindcss from "lume/plugins/tailwindcss.ts";
import postcss from "lume/plugins/postcss.ts";
import favicon from "lume/plugins/favicon.ts";
import sitemap from "lume/plugins/sitemap.ts";
import basePath from "lume/plugins/base_path.ts";

import { typstDelegis } from "./lib/typst-delegis.ts";
Expand All @@ -11,14 +13,16 @@ import tailwindConfig from "./tailwind.config.ts";
await checkPrerequisities();

export const site = lume({
// location: new URL("https://wuespace.github.io/vos/"),
location: new URL("https://vos.wuespace.de/"),
});

site.use(jsx());
site.use(
tailwindcss(tailwindConfig),
);
site.use(postcss());
site.use(favicon({ input: "assets/logo.svg" }));
site.use(sitemap());
site.use(typstDelegis());
site.copy("assets");
site.copy("pdfjs");
Expand Down
189 changes: 189 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d408059

Please sign in to comment.