source code for html website at https://zachdecook.com
-rw-r--r--.gitignore1
-rw-r--r--index.md14
-rwxr-xr-xposts/script.sh2
3 files changed, 9 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..dcaf716
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+index.html
diff --git a/index.md b/index.md
index 3359d00..ce0144e 100644
--- a/index.md
+++ b/index.md
@@ -1,10 +1,10 @@
<link rel="stylesheet" type="text/css" href="https://zachdecook.com/shared/mvp/mvp-dark.css"/>
-<link rel="stylesheet" type="text/css" href="/index2.css"/>
+<link rel="stylesheet" type="text/css" href="index2.css"/>
<nav>
* [**Songbooks**](https://songs.zachdecook.com)
-* [*Resume*](https://zachdecook.com/resume)
+* [*Resume*](resume)
</nav>
<header>
@@ -25,11 +25,11 @@ He's possibly best defined by the projects he spends time on.
<section>
<aside>
-### [Tight Change](/posts/tightchange)
+### [Tight Change](posts/tightchange)
Coin-Holding device in card form-factor.
-[![Shaking the device won't loose the coins](/posts/tightchange/shaking.gif)](/posts/tightchange)
+[![Shaking the device won't loose the coins](posts/tightchange/shaking.gif)](posts/tightchange)
</aside>
<aside>
@@ -37,15 +37,15 @@ Coin-Holding device in card form-factor.
Procedurally generated free software SVGinOT Emoji font
-[![A collection of very happy emojis](/fossmoji.png)](/fossmoji)
+[![A collection of very happy emojis](fossmoji.png)](fossmoji)
</aside>
<aside>
-### [MIDI hardware projects](/posts/ststech)
+### [MIDI hardware projects](posts/ststech)
A collaboration of controllers that I programmed.
-[![The "Combo breaker"](/posts/ststech.png)](/posts/ststech)
+[![The "Combo breaker"](posts/ststech.png)](posts/ststech)
</aside>
</section>
diff --git a/posts/script.sh b/posts/script.sh
index 55936b9..a5342d0 100755
--- a/posts/script.sh
+++ b/posts/script.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#Create blog
-
+mkdir tabs ststech
pandoc common.md tabs.md -t html5 -s > tabs/index.html
pandoc common.md ststech.md -t html5 -s > ststech/index.html
pandoc common.md tightchange.md -t html5 -s > tightchange/index.html