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/_cache/*
|
||||||
portfolio/_site/*
|
portfolio/_site/*
|
||||||
|
portfolio/lib/*
|
||||||
|
|||||||
@ -11,6 +11,10 @@ main = hakyll $ do
|
|||||||
route idRoute
|
route idRoute
|
||||||
compile copyFileCompiler
|
compile copyFileCompiler
|
||||||
|
|
||||||
|
match "lib/**" $ do
|
||||||
|
route idRoute
|
||||||
|
compile copyFileCompiler
|
||||||
|
|
||||||
match "css/*" $ do
|
match "css/*" $ do
|
||||||
route idRoute
|
route idRoute
|
||||||
compile compressCssCompiler
|
compile compressCssCompiler
|
||||||
|
|||||||
@ -7,12 +7,18 @@
|
|||||||
<title>Kevin Matsubara |> $title$</title>
|
<title>Kevin Matsubara |> $title$</title>
|
||||||
<link rel="icon" type="image/x-icon" href="/images/icon/icon.ico">
|
<link rel="icon" type="image/x-icon" href="/images/icon/icon.ico">
|
||||||
<link rel="stylesheet" href="/css/default.css" />
|
<link rel="stylesheet" href="/css/default.css" />
|
||||||
|
<link rel="stylesheet" href="/lib/bootstrap-5.3.8-dist/css/bootstrap.min.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
<a href="/">My Hakyll Blog</a>
|
<a href="/">My Hakyll Blog</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="alert alert-primary" role="alert">
|
||||||
|
A simple primary alert—check it out!
|
||||||
|
</div>
|
||||||
|
|
||||||
<nav>
|
<nav>
|
||||||
<a href="/">Home</a>
|
<a href="/">Home</a>
|
||||||
<a href="/plamo.html">Plamo</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.
|
<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>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
<script src="/lib/bootstrap-5.3.8-dist/js/bootstrap.bundle.js"></script>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user