Posts

2019

Text

Readme

BlackFlow Hugo Theme BlackFlow is a clear, responsive dark style theme with timeline and charts. This theme is referenced from blackburn by yoshiharuyamashita. Demo You can reach a live Demo here which contains official documents from Hugo and some other documents about this theme. ...

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