45 lines
821 B
Org Mode
45 lines
821 B
Org Mode
#+TITLE: README
|
|
#+AUTHOR: Elia el Lazkani
|
|
#+DESCRIPTION: README
|
|
#+TAGS: readme
|
|
|
|
* blog.lazkani.io
|
|
|
|
This is the blog written in ~ox-hugo~ and optimized for ~hugo~.
|
|
|
|
* Build
|
|
|
|
** Pulling Theme
|
|
|
|
To be able to build this project, we first need to /install/ the theme.
|
|
|
|
#+begin_src shell
|
|
git submodule update --init --recursive
|
|
#+end_src
|
|
|
|
** Running Hugo Server
|
|
|
|
We can run in memory to test.
|
|
|
|
#+begin_src shell
|
|
hugo server -D
|
|
#+end_src
|
|
|
|
** Generate
|
|
|
|
We can generate the hugo site with the following command.
|
|
|
|
#+begin_src shell
|
|
hugo
|
|
#+end_src
|
|
|
|
* Documentation
|
|
|
|
** README.md
|
|
|
|
#+begin_src md :tangle README.md
|
|
[![Build Status](https://ci.project42.io/api/badges/elia/blog.lazkani.io/status.svg)](https://ci.project42.io/elia/blog.lazkani.io)
|
|
# blog.lazkani.io {#blog-lazkani-io}
|
|
|
|
Welcome to the DevOps blog repository.
|
|
#+end_src
|