Skip to content

Commit

Permalink
chore: Add example Hugo page
Browse files Browse the repository at this point in the history
  • Loading branch information
vmaskmovps committed May 30, 2024
1 parent ddaebf6 commit 6b4d1d3
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 0 deletions.
89 changes: 89 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
!.vscode/*.code-snippets
!.vscode/extensions.json
!.vscode/launch.json
!.vscode/settings.json
!.vscode/tasks.json
*.*~
*.bak
*.css.map
*.gho
*.iws
*.ori
*.orig
*.pyc
*.sass.map
*.scss.map
*.sln.docstates
*.suo
*.swp
*.tmp
*.user
*.userosscache
*.vsix
*~
.DS_Store
.Trash-*
.directory
.fuse_hidden*
.history/
.idea
.idea/**/aws.xml
.idea/**/contentModel.xml
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/dataSources/
.idea/**/dbnavigator.xml
.idea/**/dictionaries
.idea/**/dynamic.xml
.idea/**/gradle.xml
.idea/**/libraries
.idea/**/mongoSettings.xml
.idea/**/shelf
.idea/**/sqlDataSources.xml
.idea/**/tasks.xml
.idea/**/uiDesigner.xml
.idea/**/usage.statistics.xml
.idea/**/workspace.xml
.idea/caches/build_file_checksums.ser
.idea/httpRequests
.idea/replstate.xml
.idea/sonarlint/
.idea_modules/
.nfs*
.sass-cache/
.svelte-kit/
.vs/
.vscode
.vscode/*
/.hugo_build.lock
/assets/jsconfig.json
/public/
/resources/_gen/
[Bb]in/
[Dd]ebug/
[Dd]ebugPublic/
[Oo]bj/
[Oo]ut/
[Rr]elease/
[Rr]eleases/
atlassian-ide-plugin.xml
bld/
build/
cmake-build-*/
com_crashlytics_export_strings.xml
crashlytics-build.properties
crashlytics.properties
fabric.properties
hugo.darwin
hugo.exe
hugo.linux
hugo_stats.json
msbuild.err
msbuild.log
msbuild.wrn
nupkg/
out/
package
project.lock.json
x64/
x86/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/ananke"]
path = themes/ananke
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git
5 changes: 5 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++
11 changes: 11 additions & 0 deletions content/posts/my-first-post.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
+++
title = 'Example post'
date = 2024-05-30T18:56:05+03:00
draft = false
+++

## Introduction

This is **bold** text, and this is *emphasized* text.

Visit the [Hugo](https://gohugo.io) website!
4 changes: 4 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
baseURL = 'https://pascal-lang.org/'
languageCode = 'en-us'
title = 'Object Pascal Language'
theme = 'ananke'
1 change: 1 addition & 0 deletions themes/ananke
Submodule ananke added at 33fbda

0 comments on commit 6b4d1d3

Please sign in to comment.