Welcome

This web site is created using Hugo a static web site generator.

Hyde Theme

Hyde is an elegant open source and mobile first theme for Hugo. Hyde a two column theme that was ported from the theme of the same name made for Jekyll another static web site generator writen in Ruby.

Making a post using Hugo

The content in Hugo is organized in sections. To make a new content file called welcome.html in the section post run the following.

hugo new post/welcome.md

Adding images

To add an image to a markdown document you can use the following three options.

  1. Markdown syntax

    ![Hugo](/img/hugo/hugo-logo_small.png)
    
  2. HTML syntax

    <img src="/img/hugo/hugo-logo.png" width="200" height="226"/>
    
  3. Hugo shortcodes

    {{<figure src=“/img/hugo/hugo-logo.png” width=“200” height=“226”>}}