Skip to content

Commit 66ec6fe

Browse files
committed
Initial commit
0 parents  commit 66ec6fe

File tree

5 files changed

+58
-0
lines changed

5 files changed

+58
-0
lines changed

Diff for: .gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# If you prefer the allow list template instead of the deny list, see community template:
2+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3+
#
4+
# Binaries for programs and plugins
5+
*.exe
6+
*.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# Test binary, built with `go test -c`
12+
*.test
13+
14+
# Output of the go coverage tool, specifically when used with LiteIDE
15+
*.out
16+
17+
# Dependency directories (remove the comment below to include it)
18+
# vendor/
19+
20+
# Go workspace file
21+
go.work
22+
go.work.sum
23+
24+
# env file
25+
.env
26+
27+
# Generated files by hugo
28+
/public/
29+
/resources/_gen/
30+
/assets/jsconfig.json
31+
hugo_stats.json
32+
33+
# Executable may be added to repository
34+
hugo.exe
35+
hugo.darwin
36+
hugo.linux
37+
38+
# Temporary lock file while building
39+
/.hugo_build.lock

Diff for: archetypes/default.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

Diff for: go.mod

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module github.com/git-mastery/website
2+
3+
go 1.22.4
4+
5+
require github.com/alex-shpak/hugo-book v0.0.0-20241009212754-7c78a39c531a // indirect

Diff for: go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/alex-shpak/hugo-book v0.0.0-20241009212754-7c78a39c531a h1:GiRJQYc9Bt8H59/e0w/97i46Ql39CUIdDQjHikd9scA=
2+
github.com/alex-shpak/hugo-book v0.0.0-20241009212754-7c78a39c531a/go.mod h1:L4NMyzbn15fpLIpmmtDg9ZFFyTZzw87/lk7M2bMQ7ds=

Diff for: hugo.toml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
baseURL = 'https://example.org/'
2+
languageCode = 'en-us'
3+
title = 'Git Mastery'
4+
5+
[module]
6+
[[module.imports]]
7+
path = 'github.com/alex-shpak/hugo-book'

0 commit comments

Comments
 (0)