Posts

2019

Text

Hugo Theme - Monument README

Hugo Theme - Monument A colorful Hugo theme with various out-of-box features. 🎈Demo If you are using Chrome, set chrome://flags/#force-color-profile to sRGB to get a better performance. Features A posts and words counting chart on the home page. Category links and social links on the sidebar. ...

Read more 2019-07-01 18:01
Text

Demo of KaTeX & ChartJS

LCS Function Defined $$\text{LCS}(X _i,Y _j)=\begin{cases} \emptyset & \text{if } i=0 \text{ or } j=0 \\ \text{LCS}(X _{i-1},Y _{j-1}) \hat{\text{ }} x _i & \text{if }i,j>0 \text{ and } x _i = y _i \\ max \text{\textbraceleft} \text{LCS}(X _i,Y _{j-1}, \text{LCS}(X _{i-1},Y _j)\text{\textbraceright} & \text{if } j>0 \text{ and } x _i \ne y _j \end{cases}$$ ...

Read more 2019-07-01 16:10

2014

Text

Creating a New Theme

Introduction This tutorial will show you how to create a simple theme in Hugo. I assume that you are familiar with HTML, the bash command line, and that you are comfortable using Markdown to format content. I’ll explain how Hugo uses templates and how you can organize your templates to create a theme. ...

Read more 2014-09-28 00:00
Text

Getting Started with Hugo

Step 1. Install Hugo Goto hugo releases and download the appropriate version for your os and architecture. Save it somewhere specific as we will be using it in the next step. More complete instructions are available at installing hugo ...

Read more 2014-04-02 00:00
Text

(Hu)go Template Primer

Hugo uses the excellent go html/template library for its template engine. It is an extremely lightweight engine that provides a very small amount of logic. In our experience that it is just the right amount of logic to be able to create a good static website. ...

Read more 2014-04-02 00:00
Text

Migrate to Hugo from Jekyll

Move static content to static Jekyll has a rule that any directory not starting with _ will be copied as-is to the _site output. Hugo keeps all static content under static. You should therefore move it all there. With Jekyll, something that looked like ...

Read more 2014-03-10 00:00