Skip to content

Commit faef107

Browse files
committed
Initial commit
0 parents  commit faef107

File tree

9 files changed

+131
-0
lines changed

9 files changed

+131
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
public
2+
.hugo_build.lock

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "themes/anubis2"]
2+
path = themes/anubis2
3+
url = https://github.com/Junyi-99/hugo-theme-anubis2.git

archetypes/default.md

Lines changed: 5 additions & 0 deletions
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+
+++

content/about.es.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "About"
3+
description: "Hugo, the world’s fastest framework for building websites"
4+
date: "2024-04-09"
5+
aliases: ["about-us"]
6+
---
7+
8+
Hola

content/about.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: "About"
3+
description: "Hugo, the world’s fastest framework for building websites"
4+
date: "2024-04-09"
5+
aliases: ["about-us"]
6+
---
7+
8+
[Anubis2](https://github.com/Junyi-99/hugo-theme-anubis2) is another simple minimalist theme for Hugo blog engine.
9+
10+
Written in Go, Hugo is an open source static site generator available under the [Apache License 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.
11+
12+
Hugo makes use of a variety of open source projects including:
13+
14+
- <https://github.com/yuin/goldmark>
15+
- <https://github.com/alecthomas/chroma>
16+
- <https://github.com/muesli/smartcrop>
17+
- <https://github.com/spf13/cobra>
18+
- <https://github.com/spf13/viper>
19+
20+
Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
21+
22+
Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
23+
24+
Websites built with Hugo are extremely fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
25+
26+
Learn more and contribute on [GitHub](https://github.com/gohugoio).
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "Why do we reinvent the wheel?"
3+
date: "2024-10-02"
4+
draft: true
5+
hidden: false
6+
tags: [learning]
7+
---

hugo.toml

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
baseURL = '/'
2+
languageCode = 'en-us'
3+
defaultContentLanguage = "en"
4+
title = "Something"
5+
theme = 'anubis2'
6+
disqusShortname = ""
7+
8+
[params.author]
9+
name = "Axel Guarneros"
10+
11+
12+
[params]
13+
description = "codeGAX Blog"
14+
dateFormat = "2006-01-02"
15+
paginationSinglePost = true
16+
17+
colorTheme = "dark"
18+
colorThemeSwitcher = true
19+
20+
readMore = false
21+
readNextPosts = 2
22+
copyCodeButton = true
23+
rssAsSocialIcon = true
24+
locale = "en-us"
25+
toc = true
26+
27+
28+
social = [
29+
{ id = "github", url = "https://github.com/Junyi-99/hugo-theme-anubis2" },
30+
{ id = "linkedin", url = "https://www.linkedin.com/" },
31+
{ id = "email", url = "[email protected]" },
32+
{ id = "x", url = "https://x.com/codegax" },
33+
]
34+
35+
[[menu.main]]
36+
identifier = "home"
37+
name = "Home"
38+
url = "/"
39+
weight = 1
40+
41+
[[menu.main]]
42+
identifier = "about"
43+
name = "About"
44+
url = "/about/"
45+
weight = 2
46+
47+
[[menu.main]]
48+
name = "Archive"
49+
identifier = "archive"
50+
url = "/posts/"
51+
weight = 3
52+
53+
[languages]
54+
[languages.en]
55+
languageName = "English"
56+
57+
[languages.es]
58+
languageName = "Español"
59+
60+
[[languages.es.menu.main]]
61+
identifier = "home"
62+
name = "Inicio"
63+
url = "/"
64+
weight = 1
65+
66+
[[languages.es.menu.main]]
67+
identifier = "about"
68+
name = "Acerca de"
69+
url = "/about/"
70+
weight = 2
71+
72+
[[languages.es.menu.main]]
73+
identifier = "archive"
74+
name = "Archivo"
75+
url = "/posts/"
76+
weight = 4
77+
78+
[languages.es.params]
79+
languageCode = "es-la"

static/favicon.ico

15 KB
Binary file not shown.

themes/anubis2

Submodule anubis2 added at 95844a6

0 commit comments

Comments
 (0)