initial commit

This commit is contained in:
ray 2020-01-31 13:33:56 +00:00
commit 7e8549d0e6
11 changed files with 99 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
static/img/* filter=lfs diff=lfs merge=lfs -text

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
blog/
rsources/
resources/

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/hugo-coder"]
path = themes/hugo-coder
url = https://github.com/luizdepra/hugo-coder.git

14
README.md Normal file
View File

@ -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
```

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

4
build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
rm -R ./blog
hugo -D

45
config.toml Normal file
View File

@ -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/"

8
content/about.md Normal file
View File

@ -0,0 +1,8 @@
---
title: "About Me"
date: 2020-01-31T12:54:00Z
draft: true
---
Just some stuff about me ...

11
content/posts/flowmm.md Normal file
View File

@ -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 ...

3
serve.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
hugo serve -D --bind=0.0.0.0 --baseURL=http://192.168.0.5:1313

1
themes/hugo-coder Submodule

@ -0,0 +1 @@
Subproject commit be94b5fd052b910d0b3704bea22d26214136f060