main-site

Main site for niliara.net
git clone git://niliara.net/main-site
Log | Files | Refs

about.html (1398B)


      1 {{ define "nav"}}
      2         <nav>
      3             <a href="{{ site.BaseURL }}">&lt;&lt;HOME</a>
      4         </nav>
      5 {{ end }}
      6 
      7 {{ define "main" }}
      8 
      9 <div class="ascii">
     10 <pre class="nocode">
     11     _
     12    (\\
     13     \||
     14   __(_";
     15  /    \
     16 {}___)\)_
     17 </pre>
     18 </div>
     19 
     20 
     21 <br/>
     22 
     23 
     24 
     25 <h3>Recent highlighted projects</h3>
     26 
     27 <div class="projects">
     28 
     29 <div>
     30 <a href="https://github.com/niljimeno/enforcer"><h4>Enforcer</h4></a>
     31 <p>
     32 Window manager for the X11 display server,
     33 written in C from scratch.
     34 </p>
     35 </div>
     36 
     37 <div>
     38 <a href="https://citadel.niliara.net"><h4>Citadel</h4></a>
     39 <p>
     40 Self-hosted, local search engine.
     41 It doesn't scrap data.
     42 </p>
     43 </div>
     44 
     45 <div>
     46 <a href="https://github.com/niljimeno/music-player-backend"><h4>Music player backend</h4></a>
     47 <p>
     48 Backend for a music player application
     49 that scraps songs,
     50 written in Clojure.
     51 </p>
     52 </div>
     53 
     54 <div>
     55 <a href="https://niliara.itch.io/noob-adventure"><h4>Noob adventure</h4></a>
     56 <p>
     57 Dumb game we made for a school project
     58 using Python and Pyxel.
     59 </p>
     60 </div>
     61 
     62 </div>
     63 
     64 <br/>
     65 <br/>
     66 <br/>
     67 <br/>
     68 
     69 {{ end }}
     70 
     71 
     72 {{ define "about" }}
     73     <p>
     74     {{ range ( where .Site.Pages "Title" "ne" "niliara.net" | first 1 ) }}
     75         <span>Last change: <a href="{{ .Permalink }}">{{ .Date | time.Format ":date_long" }}</a></span><br/><br/>
     76 
     77         <span>Ascii art by <a href="https://ascii.co.uk/art/rabbit">vwc</a></span><br/><br/>
     78         <a href="/index.xml">RSS</a>
     79     {{end}}
     80     </p>
     81 {{ end }}