1
0

Include references to a local bootstrap library.

Do not include the library on git.
This commit is contained in:
Kevin Matsubara 2025-12-16 19:34:40 +01:00
parent 63144d3404
commit b4c7314941
3 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -68,3 +68,4 @@ cabal.project.local~
portfolio/_cache/*
portfolio/_site/*
portfolio/lib/*

View File

@ -11,6 +11,10 @@ main = hakyll $ do
route idRoute
compile copyFileCompiler
match "lib/**" $ do
route idRoute
compile copyFileCompiler
match "css/*" $ do
route idRoute
compile compressCssCompiler

View File

@ -7,12 +7,18 @@
<title>Kevin Matsubara |> $title$</title>
<link rel="icon" type="image/x-icon" href="/images/icon/icon.ico">
<link rel="stylesheet" href="/css/default.css" />
<link rel="stylesheet" href="/lib/bootstrap-5.3.8-dist/css/bootstrap.min.css" />
</head>
<body>
<header>
<div class="logo">
<a href="/">My Hakyll Blog</a>
</div>
<div class="alert alert-primary" role="alert">
A simple primary alert—check it out!
</div>
<nav>
<a href="/">Home</a>
<a href="/plamo.html">Plamo</a>
@ -30,4 +36,6 @@
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer">Hakyll</a>, using <a href="https://www.docker.com/" target="_blank" rel="noopener noreferrer">Docker</a> containers with <a href="https://www.nginx.com/" target="_blank" rel="noopener noreferrer">Nginx</a> on a <a href="https://www.strato.nl/server/vps-linux/" target="_blank" rel="noopener noreferrer">Strato<la> VPS.
</footer>
</body>
<script src="/lib/bootstrap-5.3.8-dist/js/bootstrap.bundle.js"></script>
</html>