baseline hugo website

This commit is contained in:
Bryan Joshua Pedini 2024-04-18 07:59:54 +02:00
parent da49f4f41a
commit 01b3ef8d5c
4 changed files with 59 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
/public/
/resources/_gen/
/assets/jsconfig.json
/.hugo_build.lock
hugo_stats.json

5
archetypes/default.md Normal file
View File

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

40
hugo.yaml Normal file
View File

@ -0,0 +1,40 @@
---
baseURL: "https://pedini.dev"
languageCode: "en-us"
title: "Bryan Joshua Pedini"
theme: "hugo-coder"
params:
author: "Bryan Joshua Pedini"
info: "FullStack developer, Networking/Docker specialist, DevOps enthusiast, k8s newbie, disco lover"
description: "Bryan's personal website / blog"
keywords: "blog,personal,developer,networking,docker,devops,k8s,kubernetes"
gravatar: "bryan@pedini.dev"
since: 2019
commit: "https://git.bjphoster.com/source/pedini.dev/tree/"
social:
- name: "Git"
icon: "fa-brands fa-git fa-2x"
weight: 1
url: "https://git.bjphoster.com"
- name: "Instagram"
icon: "fa-brands fa-instagram fa-2x"
weight: 2
url: "https://instagram.com/bryanp_og/"
menu:
main:
- name: "About me"
weight: 1
url: "about/"
- name: "Blog"
weight: 2
url: "blog/"
- name: "Contacts"
weight: 3
url: "contacts/"
taxonomies:
category: "categories"
tag: "tags"

9
makefile Normal file
View File

@ -0,0 +1,9 @@
#!make
default: build
build:
hugo
run:
hugo server