tRemove about.html, unused assets and CSS subdirectories - monochromatic - monochromatic blog: http://blog.z3bra.org
 (HTM) git clone git://z3bra.org/monochromatic
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) commit b9ce70737868b8fff46d06e1cd448d328ea3282f
 (DIR) parent fa4e9c8d7cef19097f4daa4219598509ff6b7ba8
 (HTM) Author: Willy Goiffon <wgoiffon@LPWGF01.centro.fr>
       Date:   Sun, 22 Dec 2019 11:15:28 +0100
       
       Remove about.html, unused assets and CSS subdirectories
       
       Diffstat:
         M Makefile                            |       3 ---
         D about.txt                           |      42 -------------------------------
         M config.mk                           |       3 +--
         D css/img/pattern.jpg                 |       0 
         D errors/huitre.png                   |       0 
         M head.html                           |       4 ++--
         R css/monochrome.css -> monochrome.c… |       0 
       
       7 files changed, 3 insertions(+), 49 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -7,9 +7,6 @@ all: $(PAGES) $(FEEDS) $(EXTRA)
        $(NAME).tbz: $(PAGES) $(EXTRA) $(FEEDS)
                tar -cvjf $@ $(PAGES) $(EXTRA) $(FEEDS)
        
       -$(EXTRA):
       -        mkdir -p $@
       -
        install: $(NAME).tbz
                mkdir -p $(PREFIX)
                tar -xjf $(NAME).tbz -C $(PREFIX)
 (DIR) diff --git a/about.txt b/about.txt
       t@@ -1,42 +0,0 @@
       -Hi everybody ! I am Willy (aka 'z3bra').  
       -I am a network & system admin, born in the early 90's.
       -
       -### Monochromatic
       -
       -This is my online blog.  Here, I'll show you what's behind the stripes (yes, a
       -white skin). I created this to have a place on the web to share anything that
       -bother me, mostly about computing, and particularly about linux (not
       -necessarily  GNU/Linux for that matters).
       -
       -### Behind monochromatic
       -
       -The technology behind this blog is very simple : 
       -
       -* Home server &mdash; **[alpine linux](http://alpinelinux.org/)**
       -* Web server &mdash; **[thttpd](http://acme.com/software/thttpd/)**
       -* Content &mdash; **[markdown](http://daringfireball.net/projects/markdown/)**
       -* Site generator &mdash; **[Makefile](http://git.z3bra.org/cgit.cgi/monochromatic/tree/Makefile)**
       -
       -<span class="strike">So yes, it is written entirely by hand in pure HTML. Why ?
       -Because I can. Because I have the time. Because I like to do stuff from
       -scratch. Because it's.. cool ?</span>
       -It is now written in markdown, as it is way easier to read than plain HTML.
       -Writing posts in plain HTML was a funny experience, but now that my blog has a
       -few articles, it's easier for me to review them in markdown. Peace.
       -
       -### Want some more ?
       -
       -I am on a few other places online. You want me ? Here I am : 
       -
       -* <span class="strike">[gitorious.org](http://gitorious.org/~z3bra/) &mdash; a
       -  few project I own</span> (kinda outdated)
       -* [irc.freenode.net](https://webchat.freenode.net/) &mdash; mostly on #vim-fr
       -  and #archlinux-fr
       -* [nixers.net](http://nixers.net/) &mdash; Both on the forum and IRC
       -* <span class='strike'>[quakelive.com](http://quakelive.com)</span> &mdash; Come on ID, bring linux support back..
       -* [reddit.com](http://reddit.com/u/z-brah/) &mdash; Well.. Does it count ?
       -
       -I wish you will enjoy browsing this blog as much as I like to write it.  So,
       -ladies and gentlemen, have a nice day !
       -
       -<!-- vim: set ft=markdown ts=4 et: -->
 (DIR) diff --git a/config.mk b/config.mk
       t@@ -4,7 +4,6 @@ NAME    = monochromatic
        PREFIX  = /var/www/htdocs/monochromatic
        
        PAGES   =   index.html \
       -            about.html \
                    2013/08/test-your-css.html \
                    2013/08/the-hard-way.html \
                    2013/09/java-without-eclipse.html \
       t@@ -36,4 +35,4 @@ PAGES   =   index.html \
                    2016/09/pack-it-up.html
        
        FEEDS = rss/feed.xml
       -EXTRA = css errors favicon.ico
       +EXTRA = favicon.ico
 (DIR) diff --git a/css/img/pattern.jpg b/css/img/pattern.jpg
       Binary files differ.
 (DIR) diff --git a/errors/huitre.png b/errors/huitre.png
       Binary files differ.
 (DIR) diff --git a/head.html b/head.html
       t@@ -3,12 +3,12 @@
          <head>
            <meta charset='utf-8'/>
            <meta name="viewport" content="width=device-width, initial-scale=1">
       -    <link rel='stylesheet' href='/css/monochrome.css' />
       +    <link rel='stylesheet' href='/monochrome.css' />
            <title>z3bra.org - monochromatic blog</title>
          </head>
          <body>
            <header>
              <h1><a href='/'>Monochromatic</a></h1>
       -      <h2>&mdash; <a href='/about.html'>z3bra</a>, the stripes apart</h2>
       +      <h2>&mdash; z3bra, the stripes apart</h2>
            </header>
              <div id='wrapper'>
 (DIR) diff --git a/css/monochrome.css b/monochrome.css