-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ddaebf6
commit 6b4d1d3
Showing
6 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
date = {{ .Date }} | ||
draft = true | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |