Site + TF
This commit is contained in:
48
site/.gitignore
vendored
Normal file
48
site/.gitignore
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
# Generated files by hugo
|
||||
/public/
|
||||
/resources/_gen/
|
||||
/assets/jsconfig.json
|
||||
hugo_stats.json
|
||||
|
||||
# Executable may be added to repository
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
|
||||
# Temporary lock file while building
|
||||
/.hugo_build.lock
|
||||
|
||||
# Local .terraform directories
|
||||
**/.terraform/*
|
||||
|
||||
# .tfstate files
|
||||
*.tfstate
|
||||
*.tfstate.*
|
||||
|
||||
# Crash log files
|
||||
crash.log
|
||||
crash.*.log
|
||||
|
||||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
|
||||
# password, private keys, and other secrets. These should not be part of version
|
||||
# control as they are data points which are potentially sensitive and subject
|
||||
# to change depending on the environment.
|
||||
*.tfvars
|
||||
*.tfvars.json
|
||||
|
||||
# Ignore override files as they are usually used to override resources locally and so
|
||||
# are not checked in
|
||||
override.tf
|
||||
override.tf.json
|
||||
*_override.tf
|
||||
*_override.tf.json
|
||||
|
||||
# Include override files you do wish to add to version control using negated pattern
|
||||
# !example_override.tf
|
||||
|
||||
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
|
||||
# example: *tfplan*
|
||||
|
||||
# Ignore CLI configuration files
|
||||
.terraformrc
|
||||
terraform.rc
|
6
site/archetypes/default.md
Normal file
6
site/archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
32
site/config.toml
Normal file
32
site/config.toml
Normal file
@ -0,0 +1,32 @@
|
||||
baseURL = "blog.ligthert.net"
|
||||
languageCode = "en-us"
|
||||
title = "Sacha's Blog"
|
||||
theme = "m10c"
|
||||
|
||||
[params]
|
||||
author = "Sacha Ligthert"
|
||||
description = "Things that keep me occupied, or things I just like to share with you."
|
||||
avatar = "/static/hawgface.jpg"
|
||||
#favicon = "/static/favicon_blog.jpg"
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "site"
|
||||
name = "Site"
|
||||
url = "https://sacha.ligthert.net/"
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "fedi"
|
||||
name = "Fedi"
|
||||
url = "https://mastodon.nl/@ligthert"
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "gitea"
|
||||
name = "Gitea"
|
||||
url = "https://gitea.ligthert.net/"
|
||||
|
||||
[params.style]
|
||||
darkestColor = "#eeeeee"
|
||||
darkColor = "#ffffff"
|
||||
lightColor = "#000000"
|
||||
lightestColor = "#000000"
|
||||
primaryColor = "#000000"
|
8
site/content/posts/my-first-post.md
Normal file
8
site/content/posts/my-first-post.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: "My First Post"
|
||||
date: 2022-10-20T11:44:27+02:00
|
||||
draft: true
|
||||
---
|
||||
# FIP
|
||||
My First Post! =)
|
||||
More text! :-)
|
BIN
site/content/static/favicon_blog.png
Normal file
BIN
site/content/static/favicon_blog.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
BIN
site/content/static/hawgface.jpg
Normal file
BIN
site/content/static/hawgface.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
Reference in New Issue
Block a user