Skip to content

Commit

Permalink
batman: this commit has no parents
Browse files Browse the repository at this point in the history
  • Loading branch information
fguisso committed Sep 19, 2024
0 parents commit 15c7100
Show file tree
Hide file tree
Showing 93 changed files with 10,612 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "themes/blowfish"]
path = themes/blowfish
url = https://github.com/nunocoracao/blowfish.git
branch = main
Empty file added .hugo_build.lock
Empty file.
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
+++
32 changes: 32 additions & 0 deletions assets/css/schemes/potilivre.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
:root { --color-neutral: 255, 255, 255;
--color-neutral-50: 191,191,191;
--color-neutral-100: 153,153,153;
--color-neutral-200: 115,115,115;
--color-neutral-300: 77,77,77;
--color-neutral-400: 38,38,38;
--color-neutral-500: 0,0,0;
--color-neutral-600: 0,0,0;
--color-neutral-700: 0,0,0;
--color-neutral-800: 0,0,0;
--color-neutral-900: 0,0,0;
--color-primary-50: 255,255,255;
--color-primary-100: 255,255,255;
--color-primary-200: 255,255,255;
--color-primary-300: 255,255,255;
--color-primary-400: 255,255,255;
--color-primary-500: 255,255,255;
--color-primary-600: 235,235,235;
--color-primary-700: 214,214,214;
--color-primary-800: 194,194,194;
--color-primary-900: 173,173,173;
--color-secondary-50: 255,255,255;
--color-secondary-100: 218,218,218;
--color-secondary-200: 180,180,180;
--color-secondary-300: 141,141,141;
--color-secondary-400: 103,103,103;
--color-secondary-500: 65,65,65;
--color-secondary-600: 45,45,45;
--color-secondary-700: 24,24,24;
--color-secondary-800: 4,4,4;
--color-secondary-900: 0,0,0;
}
Binary file added assets/img/poticon-2018.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/potileft-100-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/potileft-100.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/potileft-square-circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/potileft-square-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
173 changes: 173 additions & 0 deletions assets/img/potilivre-logo-branco.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 67 additions & 0 deletions config/_default/hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# -- Site Configuration --
# Refer to the theme docs for more details about each of these parameters.
# https://blowfish.page/docs/getting-started/

theme = "blowfish" # UNCOMMENT THIS LINE
baseURL = "https://potilivre.github.io/"
defaultContentLanguage = "pt-br"

# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles

enableRobotsTXT = true
paginate = 10
summaryLength = 0

buildDrafts = false
buildFuture = false

enableEmoji = true

# googleAnalytics = "G-XXXXXXXXX"

[imaging]
anchor = 'Center'

[taxonomies]
tag = "tags"
category = "categories"
author = "authors"
series = "series"

[sitemap]
changefreq = 'daily'
filename = 'sitemap.xml'
priority = 0.5

[outputs]
home = ["HTML", "RSS", "JSON"]

[related]
threshold = 0
toLower = false

[[related.indices]]
name = "tags"
weight = 100

[[related.indices]]
name = "categories"
weight = 100

[[related.indices]]
name = "series"
weight = 50

[[related.indices]]
name = "authors"
weight = 20

[[related.indices]]
name = "date"
weight = 10

[[related.indices]]
applyFilter = false
name = 'fragmentrefs'
type = 'fragments'
weight = 10
24 changes: 24 additions & 0 deletions config/_default/languages.pt-br.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
languageCode = "pt-br"
languageName = "Portugues"
weight = 1
title = "Potilivre"

[params]
displayName = "PT-BR"
isoCode = "pt-br"
rtl = false
dateFormat = "2 January 2006"
description = "Comunidade Potiguar de Software Livre"
logo = "img/potileft-100-black.png"
secondaryLogo = "img/potileft-100.png"
copyright = "Copyleft - Alguns direitos reservados, exceto quando especificado em contrário e nos conteúdos replicados de outras fontes."

[params.author]
name = "Potilivre"
image = "img/potileft-square-white.png"
headline = "Comunidade Potiguar de Software Livre."
bio = "Comunidade Potiguar de Software Livre."
links = [
{ instagram = "https://www.instagram.com/potilivre_" },
{ telegram = "https://telegram.me/potilivre" }
]
13 changes: 13 additions & 0 deletions config/_default/markup.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# -- Markup --
# These settings are required for the theme to function.

[goldmark]
[goldmark.renderer]
unsafe = true

[highlight]
noClasses = false

[tableOfContents]
startLevel = 2
endLevel = 4
17 changes: 17 additions & 0 deletions config/_default/menus.pt-br.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[[main]]
name = "Quem Somos"
pageRef = "quem-somos"
identifier = "Tyu1knwj2m"
weight = 10

[[main]]
name = "Participe"
pageRef = "participe"
identifier = "oZCe37Fxrw"
weight = 20

[[main]]
name = "Blog"
pageRef = "posts"
identifier = "ziiAY4BnO5"
weight = 30
3 changes: 3 additions & 0 deletions config/_default/module.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[hugoVersion]
extended = false
min = "0.87.0"
Loading

0 comments on commit 15c7100

Please sign in to comment.