Skip to content

Commit 4bfd26a

Browse files
feat: build to docs directory, and deploy directly from this repo (#44)
Signed-off-by: Tsung-Ju Lii <[email protected]>
1 parent 88a957c commit 4bfd26a

File tree

93 files changed

+20717
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+20717
-9
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
# Stack stuff
12
.stack-work/
23
_cache/
3-
_site/
4-
stack.yaml.lock
4+
55
.env
66
fillin-release-dates/

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
# personal-website
2-
Hakyll source pack for my personal website
1+
# My personal website
2+
3+
... is built with [Hakyll](https://jaspervdj.be/hakyll/). Here, I mostly share my thoughts on music, but you might also find the occasional rant, work-related posts, or random musings.

docs/about.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="x-ua-compatible" content="ie=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta property="og:image" content="/images/plane-of-immanence.png">
8+
<title>Blog without Organs - About</title>
9+
<link rel="stylesheet" href="./css/default.css" />
10+
<link rel="stylesheet" href="./css/syntax.css" />
11+
<link rel="icon" href="./images/favicon.ico" />
12+
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Roboto+Mono:300|Noto+Sans+TC:300&display=swap" rel="stylesheet">
13+
<!-- <script src="https://kit.fontawesome.com/5b5c2f44f2.js"></script> -->
14+
<script type="text/javascript"> (function() { var css =
15+
document.createElement('link'); css.href =
16+
'https://use.fontawesome.com/releases/v5.1.0/css/all.css'; css.rel =
17+
'stylesheet'; css.type = 'text/css';
18+
document.getElementsByTagName('head')[0].appendChild(css); })();
19+
</script>
20+
21+
</head>
22+
<body>
23+
<header>
24+
<div class="logo">
25+
<a href="./">Blog without Organs</a>
26+
</div>
27+
<nav>
28+
<a href="./">Home</a>
29+
<a href="./about.html">About</a>
30+
<a href="./blogroll.html">Blogroll</a>
31+
<a href="./archive.html">Archive</a>
32+
</nav>
33+
</header>
34+
35+
<main role="main">
36+
<h1>About</h1>
37+
<p>Tsung-Ju Lii lives in Taipei, Taiwan. He doesn’t know how to do frontend stuff
38+
whatsoever.</p>
39+
</main>
40+
41+
42+
43+
<div class="contacts">
44+
<a href="https://usefulalgorithm.github.io/rss.xml">
45+
<i class="fas fa-rss"></i>
46+
</a>
47+
<a href="https://github.com/usefulalgorithm">
48+
<i class="fab fa-github"></i>
49+
</a>
50+
<a href="https://www.linkedin.com/in/tsungjulii">
51+
<i class="fab fa-linkedin-in"></i>
52+
</a>
53+
<a href="https://twitter.com/usefulalgorithm">
54+
<i class="fab fa-twitter"></i>
55+
</a>
56+
<a href="mailto:[email protected]">
57+
<i class="far fa-envelope"></i>
58+
</a>
59+
</div>
60+
<footer>
61+
Site proudly generated by
62+
<a href="http://jaspervdj.be/hakyll">Hakyll</a>
63+
</footer>
64+
</body>
65+
</html>

0 commit comments

Comments
 (0)