Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stack stuff
.stack-work/
_cache/
_site/
stack.yaml.lock

.env
fillin-release-dates/
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# personal-website
Hakyll source pack for my personal website
# My personal website

... 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.
65 changes: 65 additions & 0 deletions docs/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="/images/plane-of-immanence.png">
<title>Blog without Organs - About</title>
<link rel="stylesheet" href="./css/default.css" />
<link rel="stylesheet" href="./css/syntax.css" />
<link rel="icon" href="./images/favicon.ico" />
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro|Roboto+Mono:300|Noto+Sans+TC:300&display=swap" rel="stylesheet">
<!-- <script src="https://kit.fontawesome.com/5b5c2f44f2.js"></script> -->
<script type="text/javascript"> (function() { var css =
document.createElement('link'); css.href =
'https://use.fontawesome.com/releases/v5.1.0/css/all.css'; css.rel =
'stylesheet'; css.type = 'text/css';
document.getElementsByTagName('head')[0].appendChild(css); })();
</script>

</head>
<body>
<header>
<div class="logo">
<a href="./">Blog without Organs</a>
</div>
<nav>
<a href="./">Home</a>
<a href="./about.html">About</a>
<a href="./blogroll.html">Blogroll</a>
<a href="./archive.html">Archive</a>
</nav>
</header>

<main role="main">
<h1>About</h1>
<p>Tsung-Ju Lii lives in Taipei, Taiwan. He doesn’t know how to do frontend stuff
whatsoever.</p>
</main>



<div class="contacts">
<a href="https://usefulalgorithm.github.io/rss.xml">
<i class="fas fa-rss"></i>
</a>
<a href="https://github.com/usefulalgorithm">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/tsungjulii">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://twitter.com/usefulalgorithm">
<i class="fab fa-twitter"></i>
</a>
<a href="mailto:[email protected]">
<i class="far fa-envelope"></i>
</a>
</div>
<footer>
Site proudly generated by
<a href="http://jaspervdj.be/hakyll">Hakyll</a>
</footer>
</body>
</html>
Loading