Skip to content

Commit 6b4d1d3

Browse files
committed
chore: Add example Hugo page
1 parent ddaebf6 commit 6b4d1d3

File tree

6 files changed

+113
-0
lines changed

6 files changed

+113
-0
lines changed

Diff for: .gitignore

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
!.vscode/*.code-snippets
2+
!.vscode/extensions.json
3+
!.vscode/launch.json
4+
!.vscode/settings.json
5+
!.vscode/tasks.json
6+
*.*~
7+
*.bak
8+
*.css.map
9+
*.gho
10+
*.iws
11+
*.ori
12+
*.orig
13+
*.pyc
14+
*.sass.map
15+
*.scss.map
16+
*.sln.docstates
17+
*.suo
18+
*.swp
19+
*.tmp
20+
*.user
21+
*.userosscache
22+
*.vsix
23+
*~
24+
.DS_Store
25+
.Trash-*
26+
.directory
27+
.fuse_hidden*
28+
.history/
29+
.idea
30+
.idea/**/aws.xml
31+
.idea/**/contentModel.xml
32+
.idea/**/dataSources.ids
33+
.idea/**/dataSources.local.xml
34+
.idea/**/dataSources/
35+
.idea/**/dbnavigator.xml
36+
.idea/**/dictionaries
37+
.idea/**/dynamic.xml
38+
.idea/**/gradle.xml
39+
.idea/**/libraries
40+
.idea/**/mongoSettings.xml
41+
.idea/**/shelf
42+
.idea/**/sqlDataSources.xml
43+
.idea/**/tasks.xml
44+
.idea/**/uiDesigner.xml
45+
.idea/**/usage.statistics.xml
46+
.idea/**/workspace.xml
47+
.idea/caches/build_file_checksums.ser
48+
.idea/httpRequests
49+
.idea/replstate.xml
50+
.idea/sonarlint/
51+
.idea_modules/
52+
.nfs*
53+
.sass-cache/
54+
.svelte-kit/
55+
.vs/
56+
.vscode
57+
.vscode/*
58+
/.hugo_build.lock
59+
/assets/jsconfig.json
60+
/public/
61+
/resources/_gen/
62+
[Bb]in/
63+
[Dd]ebug/
64+
[Dd]ebugPublic/
65+
[Oo]bj/
66+
[Oo]ut/
67+
[Rr]elease/
68+
[Rr]eleases/
69+
atlassian-ide-plugin.xml
70+
bld/
71+
build/
72+
cmake-build-*/
73+
com_crashlytics_export_strings.xml
74+
crashlytics-build.properties
75+
crashlytics.properties
76+
fabric.properties
77+
hugo.darwin
78+
hugo.exe
79+
hugo.linux
80+
hugo_stats.json
81+
msbuild.err
82+
msbuild.log
83+
msbuild.wrn
84+
nupkg/
85+
out/
86+
package
87+
project.lock.json
88+
x64/
89+
x86/

Diff for: .gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/ananke"]
2+
path = themes/ananke
3+
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git

Diff for: archetypes/default.md

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

Diff for: content/posts/my-first-post.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
+++
2+
title = 'Example post'
3+
date = 2024-05-30T18:56:05+03:00
4+
draft = false
5+
+++
6+
7+
## Introduction
8+
9+
This is **bold** text, and this is *emphasized* text.
10+
11+
Visit the [Hugo](https://gohugo.io) website!

Diff for: hugo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
baseURL = 'https://pascal-lang.org/'
2+
languageCode = 'en-us'
3+
title = 'Object Pascal Language'
4+
theme = 'ananke'

Diff for: themes/ananke

Submodule ananke added at 33fbda0

0 commit comments

Comments
 (0)