Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
JackWilli committed Sep 14, 2024
0 parents commit baa1183
Show file tree
Hide file tree
Showing 8 changed files with 167 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Created by https://www.toptal.com/developers/gitignore/api/hugo
# Edit at https://www.toptal.com/developers/gitignore?templates=hugo

### Hugo ###
# Generated files by hugo
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json

# Executable may be added to repository
hugo.exe
hugo.darwin
hugo.linux

# Temporary lock file while building
/.hugo_build.lock

# End of https://www.toptal.com/developers/gitignore/api/hugo

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/hugo.386"]
path = themes/hugo.386
url = https://gitlab.com/jmfergeau/hugo.386
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
+++
1 change: 1 addition & 0 deletions content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
author = "internot"
26 changes: 26 additions & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
+++
title = "About"
description = "Hugo, the world’s fastest framework for building websites"
date = "2019-02-28"
aliases = ["about-us","about-hugo","contact"]
author = "Hugo Authors"
+++

Written in Go, Hugo is an open source static site generator available under the [Apache Licence 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.

Hugo makes use of a variety of open source projects including:

* https://github.com/yuin/goldmark
* https://github.com/alecthomas/chroma
* https://github.com/muesli/smartcrop
* https://github.com/spf13/cobra
* https://github.com/spf13/viper

Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.

Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.

Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.

Learn more and contribute on [GitHub](https://github.com/gohugoio).

12 changes: 12 additions & 0 deletions content/post/first.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
+++
title = 'First Post'
date = 2024-09-13T21:20:24-04:00
draft = true
+++

## Introduction

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

Visit the [Hugo](https://gohugo.io) website!

99 changes: 99 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
baseURL = "http://internot.blog"
title = "internot.blog"
languageCode = "en"
DefaultContentLanguage = "en" # Change this to change the site's language
theme = "hugo.386"
preserveTaxonomyNames = true

[params]
# The name to display as main title in the home page
mainpagetitle = "internot.blog"

# The subtitle to display under the title in the home page
mainpagesubtitle = "Welcome to the early 90s!"

# The description of your website. It will be displayed in the home page
mainpagedesc = "This theme is the Hugo port of the BOOTSTRA.386 theme for a cool retro look on your blog. Check the links below to access the posts."

# The name to display in the copyright section in the footer
copyrightname = "internot.blog"

# The url to use as link in the copyright name in the footer. Leave empty to use none.
copyrighturl = "https://github.com/internot-blog"

# Show the "built on Hugo" disclaimer
showhugo = true

# Urls for social networks
#facebook = "https://facebook.com"
#twitter = "https://twitter.com"
#linkedin = "https://linkedin.com"
#github = "https://github.com"
#gitlab = "https://gitlab.com"

# Enables or disables the loading animations. false activates them. Default is false.
loadfastload = false

# Sets the speed for the page loading effect. Default is 1.0.
loadspeedfactor = 1.0

# Enables or disables the second flyby cursor. Default is false.
loadonepass = false

[params.copyright]
name = "internot.blog"

# The url to use as link in the copyright name in the footer. Leave empty to use none.
url = "https://github.com/internot-blog"

# Text to go before copyright information
#prefix = "[hugo.386 theme by Max le Fou](https://gitlab.com/maxlefou/hugo.386)"

# Text to go between copyright and hugo disclaimer (if enabled)
#suffix = "Example site"

[menu]
# This displays buttons in the navbar to access your contents
[[menu.main]]
identifier = "about" # An unique identifier for the button
name = "About" # A display name for the button
url = "/about/" # The path to the content. It can lead to a single page (like here)
weight = 10 # A number to order the buttons in the navbar

[[menu.main]]
identifier = "posts"
name = "All posts"
url = "/post/" # The path can lead to a content folder too.
weight = 20

[taxonomies]
category = "categories"
tag = "tags"


[privacy]

[privacy.vimeo]
disabled = false
simple = true

[privacy.twitter]
disabled = false
enableDNT = true
simple = true

[privacy.instagram]
disabled = false
simple = true

[privacy.youtube]
disabled = false
privacyEnhanced = true

[services]

[services.instagram]
disableInlineCSS = true

[services.twitter]
disableInlineCSS = true
1 change: 1 addition & 0 deletions themes/hugo.386
Submodule hugo.386 added at 2e2a41

0 comments on commit baa1183

Please sign in to comment.