<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="/style.css"> <link rel="stylesheet" href="/syntax.css"> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1"> <meta content="#ffffff" name="theme-color"> <meta name="HandheldFriendly" content="true"> <meta property="og:title" content="Static Sites With Bash"> <meta property="og:type" content="website"> <meta property="og:description" content="a static site {for, by, about} me "> <meta property="og:url" content="https://peppe.rs"> <link rel="icon" type="image/x-icon" href="/favicon.png"> <title>Static Sites With Bash · peppe.rs</title> <body> <div class="posts"> <div class="post"> <a href="/" class="post-end-link">Home</a> <span>/</span> <a href="/posts" class="post-end-link">Posts</a> <span>/</span> <a class="post-end-link">Static Sites With Bash</a> <a class="stats post-end-link" href="https://git.peppe.rs/web/site/plain/posts/static_sites_with_bash.md ">View Raw</a> <div class="separator"></div> <div class="date"> 23/11 — 2019 <div class="stats"> <span class="stats-number"> 21.17 </span> <span class="stats-unit">cm</span>   <span class="stats-number"> 1.5 </span> <span class="stats-unit">min</span> </div> </div> <h1> Static Sites With Bash </h1> <div class="post-text"> <p>After going through a bunch of static site generators (<a href="https://blog.getpelican.com/">pelican</a>, <a href="https://gohugo.io">hugo</a>, <a href="https://github.com/icyphox/vite">vite</a>), I decided to roll my own. If you are more of the ‘show me the code’ kinda guy, <a href="https://github.com/nerdypepper/site">here</a> you go.</p> <h3 id="text-formatting">Text formatting</h3> <p>I chose to write in markdown, and convert to html with <a href="https://kristaps.bsd.lv/lowdown/">lowdown</a>.</p> <h3 id="directory-structure">Directory structure</h3> <p>I host my site on GitHub pages, so <code>docs/</code> has to be the entry point. Markdown formatted posts go into <code>posts/</code>, get converted into html, and end up in <code>docs/index.html</code>, something like this:</p> <div class="sourceCode" id="cb1"><pre class="sourceCode bash"><code class="sourceCode bash"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true"></a><span class="va">posts=$(</span><span class="fu">ls</span> -t ./posts<span class="va">)</span> # <span class="ex">chronological</span> order!</span> <span id="cb1-2"><a href="#cb1-2" aria-hidden="true"></a><span class="kw">for</span> <span class="ex">f</span> in <span class="va">$posts</span><span class="kw">;</span> <span class="kw">do</span></span> <span id="cb1-3"><a href="#cb1-3" aria-hidden="true"></a> <span class="va">file=</span><span class="st">"./posts/"</span><span class="va">$f</span> # <span class="kw">`</span><span class="fu">ls</span><span class="kw">`</span> <span class="ex">mangled</span> our file paths</span> <span id="cb1-4"><a href="#cb1-4" aria-hidden="true"></a> <span class="bu">echo</span> <span class="st">"generating post </span><span class="va">$file</span><span class="st">"</span></span> <span id="cb1-5"><a href="#cb1-5" aria-hidden="true"></a></span> <span id="cb1-6"><a href="#cb1-6" aria-hidden="true"></a> <span class="va">html=$(</span><span class="ex">lowdown</span> <span class="st">"</span><span class="va">$file</span><span class="st">"</span><span class="va">)</span></span> <span id="cb1-7"><a href="#cb1-7" aria-hidden="true"></a> <span class="bu">echo</span> -e <span class="st">"html"</span> <span class="op">>></span> docs/index.html</span> <span id="cb1-8"><a href="#cb1-8" aria-hidden="true"></a><span class="kw">done</span></span></code></pre></div> <h3 id="assets">Assets</h3> <p>Most static site generators recommend dropping image assets into the site source itself. That does have it’s merits, but I prefer hosting images separately:</p> <div class="sourceCode" id="cb2"><pre class="sourceCode bash"><code class="sourceCode bash"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true"></a><span class="co"># strip file extension</span></span> <span id="cb2-2"><a href="#cb2-2" aria-hidden="true"></a><span class="va">ext=</span><span class="st">"</span><span class="va">${1##</span>*.<span class="va">}</span><span class="st">"</span></span> <span id="cb2-3"><a href="#cb2-3" aria-hidden="true"></a></span> <span id="cb2-4"><a href="#cb2-4" aria-hidden="true"></a><span class="co"># generate a random file name</span></span> <span id="cb2-5"><a href="#cb2-5" aria-hidden="true"></a><span class="va">id=$(</span> <span class="fu">cat</span> /dev/urandom <span class="kw">|</span> <span class="fu">tr</span> -dc <span class="st">'a-zA-Z0-9'</span> <span class="kw">|</span> <span class="ex">fold</span> -w 2 <span class="kw">|</span> <span class="fu">head</span> -n 1 <span class="va">)</span></span> <span id="cb2-6"><a href="#cb2-6" aria-hidden="true"></a><span class="va">id=</span><span class="st">"</span><span class="va">$id</span><span class="st">.</span><span class="va">$ext</span><span class="st">"</span></span> <span id="cb2-7"><a href="#cb2-7" aria-hidden="true"></a></span> <span id="cb2-8"><a href="#cb2-8" aria-hidden="true"></a><span class="co"># copy to my file host</span></span> <span id="cb2-9"><a href="#cb2-9" aria-hidden="true"></a><span class="fu">scp</span> -P 443 <span class="st">"</span><span class="va">$1</span><span class="st">"</span> emerald:files/<span class="st">"</span><span class="va">$id</span><span class="st">"</span> </span> <span id="cb2-10"><a href="#cb2-10" aria-hidden="true"></a><span class="bu">echo</span> <span class="st">"https://u.peppe.rs/</span><span class="va">$id</span><span class="st">"</span></span></code></pre></div> <h3 id="templating">Templating</h3> <p><a href="https://github.com/NerdyPepper/site/blob/master/generate.sh"><code>generate.sh</code></a> brings the above bits and pieces together (with some extra cruft to avoid javascript). It uses <code>sed</code> to produce nice titles from the file names (removes underscores, title-case), and <code>date(1)</code> to add the date to each post listing!</p> </div> <div class="intro"> Hi. <div class="hot-links"> <a href="https://peppe.rs/index.xml" class="feed-button">Subscribe</a> <a href="https://liberapay.com/nerdypepper/donate" class="donate-button">Donate</a> </div> <p>I'm Akshay, I go by nerd or nerdypepper on the internet.</p> <p> I am a compsci undergrad, Rust programmer and an enthusiastic Vimmer. I write <a href="https://git.peppe.rs">open-source stuff</a> to pass time. I also design fonts: <a href="https://git.peppe.rs/fonts/scientifica">scientifica</a>, <a href="https://git.peppe.rs/fonts/curie">curie</a>. </p> <p>Send me a mail at nerdy@peppe.rs or a message at nerdypepper@irc.rizon.net.</p> </div> <a href="/" class="post-end-link">Home</a> <span>/</span> <a href="/posts" class="post-end-link">Posts</a> <span>/</span> <a class="post-end-link">Static Sites With Bash</a> <a class="stats post-end-link" href="https://git.peppe.rs/web/site/plain/posts/static_sites_with_bash.md ">View Raw</a> </div> </div> </body> </html>