Include references to a local bootstrap library.
Do not include the library on git.
This commit is contained in:
parent
63144d3404
commit
b4c7314941
1
.gitignore
vendored
1
.gitignore
vendored
@ -68,3 +68,4 @@ cabal.project.local~
|
||||
|
||||
portfolio/_cache/*
|
||||
portfolio/_site/*
|
||||
portfolio/lib/*
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user