initial commit
This commit is contained in:
commit
7e8549d0e6
|
@ -0,0 +1 @@
|
|||
static/img/* filter=lfs diff=lfs merge=lfs -text
|
|
@ -0,0 +1,3 @@
|
|||
blog/
|
||||
rsources/
|
||||
resources/
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/hugo-coder"]
|
||||
path = themes/hugo-coder
|
||||
url = https://github.com/luizdepra/hugo-coder.git
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
|
||||
Serve development server with:
|
||||
|
||||
```sh
|
||||
hugo serve -D --bind=0.0.0.0 --baseURL=http://192.168.0.5:1313
|
||||
```
|
||||
|
||||
Build static files with:
|
||||
|
||||
```sh
|
||||
hugo -D
|
||||
```
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
baseURL = "https://rayelliott.dev/blog/"
|
||||
languageCode = "en-us"
|
||||
|
||||
title = "Blog"
|
||||
theme = "hugo-coder"
|
||||
|
||||
publishDir = "blog"
|
||||
|
||||
|
||||
|
||||
|
||||
# hugo-coder config
|
||||
|
||||
[params]
|
||||
author = "Ray Elliott"
|
||||
info = "Hello World!"
|
||||
|
||||
avatarurl = "/images/avatar.jpg"
|
||||
favicon_32 = "/img/favicon-32x32.png"
|
||||
favicon_16 = "/img/favicon-16x16.png"
|
||||
|
||||
# footercontent = "Yo mah footah"
|
||||
hidecredits = true
|
||||
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
weight = 3
|
||||
url = "/about/"
|
||||
[[menu.main]]
|
||||
name = "Portfolio"
|
||||
weight = 5
|
||||
url = "/categories/portfolio/"
|
||||
[[menu.main]]
|
||||
name = "Posts"
|
||||
weight = 10
|
||||
url ="/posts/"
|
||||
[[menu.main]]
|
||||
name = "Categories"
|
||||
weight = 20
|
||||
url = "/categories/"
|
||||
[[menu.main]]
|
||||
name = "Tags"
|
||||
weight = 30
|
||||
url = "/tags/"
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
title: "About Me"
|
||||
date: 2020-01-31T12:54:00Z
|
||||
draft: true
|
||||
---
|
||||
|
||||
Just some stuff about me ...
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
title: "Flow Model Management"
|
||||
date: 2020-01-31T12:27:18Z
|
||||
categories: ["Portfolio"]
|
||||
tags: ["Vue", "Nuxt"]
|
||||
draft: true
|
||||
---
|
||||
|
||||
Flow Model Management are a ficticious modelling agency, created for the sole
|
||||
purpose of ...
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
hugo serve -D --bind=0.0.0.0 --baseURL=http://192.168.0.5:1313
|
|
@ -0,0 +1 @@
|
|||
Subproject commit be94b5fd052b910d0b3704bea22d26214136f060
|
Reference in New Issue