This is the repository for the Ethereum Applied Research Group's blog built with Hugo.
- Hugo (Extended version)
-
Install Hugo Extended version:
- For macOS:
brew install hugo - For Ubuntu:
sudo apt install hugo - For other systems, see Hugo Installation Guide
- For macOS:
-
Clone the repository:
git clone git@github.com:eth-applied-research-group/blog.git cd blog -
Update submodules:
git submodule update --init --recursive
To serve the blog locally:
hugo server -DThe site will be available at http://localhost:1313
To create a new post, use the Hugo CLI:
hugo new posts/your-post-name.mdThis will create a new markdown file in content/posts/ with pre-filled front matter.
Edit the file to add your content. The front matter should include:
---
title: "Your Post Title"
date: YYYY-MM-DD
draft: true
---Remove draft: true when ready to publish.