-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 15c7100
Showing
93 changed files
with
10,612 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 @@ | ||
.DS_Store |
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 @@ | ||
[submodule "themes/blowfish"] | ||
path = themes/blowfish | ||
url = https://github.com/nunocoracao/blowfish.git | ||
branch = main |
Empty file.
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,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; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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 |
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,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" } | ||
] |
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,13 @@ | ||
# -- Markup -- | ||
# These settings are required for the theme to function. | ||
|
||
[goldmark] | ||
[goldmark.renderer] | ||
unsafe = true | ||
|
||
[highlight] | ||
noClasses = false | ||
|
||
[tableOfContents] | ||
startLevel = 2 | ||
endLevel = 4 |
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,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 |
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 @@ | ||
[hugoVersion] | ||
extended = false | ||
min = "0.87.0" |
Oops, something went wrong.