diff options
| author | Carlos Sosa <gnusosa@gnusosa.net> | 2020-03-19 15:08:34 -0700 |
|---|---|---|
| committer | Carlos Sosa <gnusosa@gnusosa.net> | 2020-03-19 15:08:34 -0700 |
| commit | adb1a4da84fdd5c12a0ed48736d1bbca69a943fa (patch) | |
| tree | b806b1aae92b5555f07ee2eac596d5a6bc7a2133 | |
| parent | 7003fdd2587bf13768c593c94943ce9479b55521 (diff) | |
Add talks and platicas copyfile routes
- Added images for Ubuntu post
| -rw-r--r-- | img/thumb-ubuntu-gf.png | bin | 0 -> 269328 bytes | |||
| -rw-r--r-- | img/thumb-ubuntu-gf2.png | bin | 0 -> 171585 bytes | |||
| -rw-r--r-- | img/thumb-ubuntu-gf3.png | bin | 0 -> 63527 bytes | |||
| -rw-r--r-- | index.html | 8 | ||||
| -rwxr-xr-x | log/2011-02-17-ubuntu-shows-its-true-colors.org | 6 | ||||
| -rw-r--r-- | src/site.hs | 12 |
6 files changed, 17 insertions, 9 deletions
diff --git a/img/thumb-ubuntu-gf.png b/img/thumb-ubuntu-gf.png Binary files differnew file mode 100644 index 0000000..5f8c587 --- /dev/null +++ b/img/thumb-ubuntu-gf.png diff --git a/img/thumb-ubuntu-gf2.png b/img/thumb-ubuntu-gf2.png Binary files differnew file mode 100644 index 0000000..38324a5 --- /dev/null +++ b/img/thumb-ubuntu-gf2.png diff --git a/img/thumb-ubuntu-gf3.png b/img/thumb-ubuntu-gf3.png Binary files differnew file mode 100644 index 0000000..12ad490 --- /dev/null +++ b/img/thumb-ubuntu-gf3.png @@ -34,7 +34,7 @@ <a href="https://github.com/gnusosa">GitHub</a> </p> <p style="margin-bottom: 0;"> - <a href="http://gnusosa.net/log/">log</a> + <a href="/log/">log</a> </p> <br/> <img alt="Photo of Carlos Sosa" src="selfie.png" width="100%"> @@ -59,9 +59,9 @@ <h2>Talks</h2> <ul> <li>FLOSS as a change platform.</li> - <li><a href='http://gnusosa.net/talks/workshop-vim-hackmeet/'>Make better use of Vim</a></li> - <li><a href='http://gnusosa.net/es/platicas/taller-vim-1/'>Taller de Vim #1</a></li> - <li><a href='http://gnusosa.net/es/platicas/foss-vende/'>FOSS que vende</a></li> + <li><a href='/talks/workshop-vim-hackmeet/'>Make better use of Vim</a></li> + <li><a href='/platicas/taller-vim-1/'>Taller de Vim #1</a></li> + <li><a href='/platicas/foss-vende/'>FOSS que vende</a></li> </ul> </div> diff --git a/log/2011-02-17-ubuntu-shows-its-true-colors.org b/log/2011-02-17-ubuntu-shows-its-true-colors.org index cc38880..c2e7d09 100755 --- a/log/2011-02-17-ubuntu-shows-its-true-colors.org +++ b/log/2011-02-17-ubuntu-shows-its-true-colors.org @@ -32,7 +32,7 @@ is faster, and it feels more natural now." #+CAPTION: I have a Totoro tattoo on my right arm. #+ATTR_HTML: :alt Totoro and Mei image :title I have a Totoro tattoo on my right arm. :align center -[[file:images/ubuntu-gf.png][file:images/thumbs/thumb-ubuntu-gf.png]] +[[file:../img/thumb-ubuntu-gf.png][file:../img/thumb-ubuntu-gf.png]] After the full installation, my girlfriend didn't install anything, until she needed several applications for her college courses. For @@ -43,7 +43,7 @@ Empathy, Gwibber, Gnome Media Player, etc... You get the idea. #+CAPTION: Enjoying Ubuntu's Desktop. #+ATTR_HTML: :alt Enjoying Ubuntu's Desktop. :align center -[[file:images/ubuntu-gf2.png][file:images/thumbs/thumb-ubuntu-gf2.png]] +[[file:../img/thumb-ubuntu-gf2.png][file:../img/thumb-ubuntu-gf2.png]] What amazes me the most, is the feeling of everything working right out of the box, and this includes the installation process. No further @@ -65,7 +65,7 @@ after that I installed via =apt-get= in the Terminal." #+CAPTION: My girlfriend's apt-get action in gnome-terminal. #+ATTR_HTML: :alt My girlfriend's apt-get action in gnome-terminal. :align center -[[file:images/ubuntu-gf3.png][file:images/thumbs/thumb-ubuntu-gf3.png]] +[[file:../img/thumb-ubuntu-gf3.png][file:../img/thumb-ubuntu-gf3.png]] This is a good starting point for her, it shows that her interest in the distro is still fresh. Like any new user, the disposition to learn diff --git a/src/site.hs b/src/site.hs index 2eaec9f..004bd88 100644 --- a/src/site.hs +++ b/src/site.hs @@ -11,8 +11,16 @@ import Site.Content main :: IO () main = hakyll $ do match "img/*" $ do - route idRoute - compile copyFileCompiler + route idRoute + compile copyFileCompiler + + match "platicas/**" $ do + route idRoute + compile copyFileCompiler + + match "talks/**" $ do + route idRoute + compile copyFileCompiler match "fonts/*" $ do route idRoute |
