Initial Release!
Some checks are pending
Deploy Eventually (In)Consistent / build-and-deploy (push) Waiting to run
Some checks are pending
Deploy Eventually (In)Consistent / build-and-deploy (push) Waiting to run
This commit is contained in:
commit
db0b6704f7
21 changed files with 339 additions and 0 deletions
34
.github/workflows/deploy.yml
vendored
Normal file
34
.github/workflows/deploy.yml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Deploy Eventually (In)Consistent
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main # Trigger on pushes to the main branch
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: true
|
||||
|
||||
- name: Setup Hugo
|
||||
uses: peaceiris/actions-hugo@v3
|
||||
with:
|
||||
hugo-version: 'latest'
|
||||
extended: true
|
||||
|
||||
- name: Build blog
|
||||
run: hugo --minify
|
||||
|
||||
- name: Deploy to Server
|
||||
uses: appleboy/scp-action@master
|
||||
with:
|
||||
host: ${{ secrets.TECHBLOG_HOST }}
|
||||
username: ${{ secrets.TECHBLOG_USER }}
|
||||
key: ${{ secrets.TECHBLOG_KEY }}
|
||||
source: "public/"
|
||||
target: "/cotti.com.br/tech/"
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
public
|
||||
/resources/_gen/assets/css
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/re-terminal"]
|
||||
path = themes/re-terminal
|
||||
url = https://github.com/mirus-ua/hugo-theme-re-terminal.git
|
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
7
archetypes/archive.md
Normal file
7
archetypes/archive.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
+++
|
||||
title = "Archive"
|
||||
date = "2025-02-09T20:57:45-03:00"
|
||||
draft = false
|
||||
type = "archive"
|
||||
showFullContent = false
|
||||
+++
|
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
+++
|
||||
date = '{{ .Date }}'
|
||||
draft = true
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
+++
|
13
content/en/about.md
Normal file
13
content/en/about.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
+++
|
||||
date = '2025-02-24T00:52:21-03:00'
|
||||
draft = false
|
||||
title = 'About'
|
||||
hideComments = true
|
||||
+++
|
||||
|
||||
<img src="/images/author.jpg" alt="Author" style="float: right; margin: 0 0 1em 1em; width: 200px;" />
|
||||
Heyo - this is Felipe Cotti, age 37.
|
||||
|
||||
It so happens I enjoy writing relatively technical banter every now and then - and trying out new things. So why not a second blog, using Hugo?
|
||||
|
||||
That's what's happening here.
|
7
content/en/archive/_index.md
Normal file
7
content/en/archive/_index.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
+++
|
||||
title = "Archive"
|
||||
date = "2025-02-09T20:57:45-03:00"
|
||||
draft = false
|
||||
type = "archive"
|
||||
showFullContent = false
|
||||
+++
|
23
content/en/posts/2025/a-different-idea.md
Normal file
23
content/en/posts/2025/a-different-idea.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
+++
|
||||
date = '2025-02-09T20:57:36-03:00'
|
||||
draft = false
|
||||
title = 'A Different Idea'
|
||||
tags = ["revelations"]
|
||||
categories = ["Meta"]
|
||||
cover = "/images/revealed-microplastics.jpg"
|
||||
coverCaption = "T'was revealed to me by the microplastics in my brain."
|
||||
+++
|
||||
|
||||
I've been wanting to do this for a while now - or attempt to.
|
||||
|
||||
To create a blog specifically for technicalities, one that was bilingual (to reach twice as nobody). With a simpler design.
|
||||
|
||||
Nowadays, it's almost impossible to find a Wordpress theme for blogs - especially one that insists on living in the sensibilities of more than 20 years ago.
|
||||
|
||||
Yet here we are, trying to get used to Hugo and its ways of doing things. "But Cotti," you almost say, "you can't even maintain your normal blog, are you going to maintain two?" - That's the catch.
|
||||
|
||||
### Never let your writing mood know that you're in the mood
|
||||
|
||||
After a certain point of me writing things, I noticed this. The more I pretend I don't care, the more ideas appear. If I have everything organized, it becomes substantially easier to write.
|
||||
|
||||
Let's let this slide now, for in my next post I may or may not slam my own design for the Gugu toy bot.
|
13
content/pt/about.md
Normal file
13
content/pt/about.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
+++
|
||||
date = '2025-02-24T00:52:21-03:00'
|
||||
draft = false
|
||||
title = 'Sobre'
|
||||
hideComments = true
|
||||
+++
|
||||
|
||||
<img src="/images/author.jpg" alt="Author" style="float: right; margin: 0 0 1em 1em; width: 200px;" />
|
||||
Olá - aqui é Felipe Cotti, 37 anos.
|
||||
|
||||
Acontece de eu gostar de escrever gracejos relativamente técnicos de vez em quando - e experimentar coisas diferentes. Então por que não um segundo blog, usando Hugo?
|
||||
|
||||
É o que está acontecendo aqui.
|
9
content/pt/archive/_index.md
Normal file
9
content/pt/archive/_index.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
title = "Arquivo"
|
||||
date = "2025-02-09T20:57:45-03:00"
|
||||
draft = false
|
||||
type = "archive"
|
||||
showFullContent = false
|
||||
+++
|
||||
|
||||
Aqui você vê o passado.
|
23
content/pt/posts/2025/a-different-idea.md
Normal file
23
content/pt/posts/2025/a-different-idea.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
+++
|
||||
date = '2025-02-09T20:57:45-03:00'
|
||||
draft = false
|
||||
title = 'Uma ideia diferente'
|
||||
tags = ["revelações"]
|
||||
categories = ["Meta"]
|
||||
cover = "/images/revealed-microplastics.jpg"
|
||||
coverCaption = "Foi-me revelado pelos microplásticos em meu cérebro."
|
||||
+++
|
||||
|
||||
Já tem um tempo que eu queria fazer isso - ou tentar.
|
||||
|
||||
Criar um blog especificamente para tecnicalidades, um que fosse bilíngue (para atingir ao dobro de ninguém). Com um design mais simples.
|
||||
|
||||
Hoje em dia é quase impossível achar um tema de Wordpress para blogs - ainda mais um que teima em viver nas sensibilidades de mais de 20 anos atrás.
|
||||
|
||||
Mas cá estamos, tentando se acostumar com o Hugo e com as formas dele de fazer as coisas. "Mas Cotti", você quase diz, "você nem consegue manter o seu blog normal, vai manter dois?" - Essa é a pegadinha.
|
||||
|
||||
### Nunca deixe sua vontade de escrever saber que você está com vontade
|
||||
|
||||
Depois de um certo ponto em que eu escrevia, eu notei isso. Quanto mais eu finjo que não tô nem aí, mais aparece ideia. Se eu tiver tudo organizadinho, fica substancialmente mais fácil escrever.
|
||||
|
||||
Vamos deixar isso escorrer pelas paredes agora, no meu próximo post onde eu posso ou não descer o sarrafo no meu próprio design pro bot de brinquedos do Gugu.
|
5
go.mod
Normal file
5
go.mod
Normal file
|
@ -0,0 +1,5 @@
|
|||
module bule-overflow
|
||||
|
||||
go 1.23.6
|
||||
|
||||
require github.com/mirus-ua/hugo-theme-re-terminal v1.2.1 // indirect
|
2
go.sum
Normal file
2
go.sum
Normal file
|
@ -0,0 +1,2 @@
|
|||
github.com/mirus-ua/hugo-theme-re-terminal v1.2.1 h1:vikctH4TP2pvNu/2WDbM+LrX1ugP5fi6iu2xddjJPck=
|
||||
github.com/mirus-ua/hugo-theme-re-terminal v1.2.1/go.mod h1:lbM8zlTK8TYbfKyu4m3v/wvZZFALjfxm4JI3OvWLn30=
|
141
hugo.toml
Normal file
141
hugo.toml
Normal file
|
@ -0,0 +1,141 @@
|
|||
baseURL = 'https://tech.cotti.com.br/'
|
||||
languageCode = 'en-us'
|
||||
title = 'Eventually (In)Consistent'
|
||||
defaultContentLanguage = "en"
|
||||
defaultContentLanguageInSubdir = true
|
||||
theme = "re-terminal"
|
||||
pagination.pagerSize = 5
|
||||
|
||||
[params]
|
||||
# dir name of your main content (default is `content/posts`).
|
||||
# the list of set content will show up on your index page (baseurl).
|
||||
contentTypeName = "posts"
|
||||
# ["orange", "blue", "red", "green", "pink"]
|
||||
themeColor = "red"
|
||||
# if you set this to 0, only submenu trigger will be visible
|
||||
showMenuItems = 2
|
||||
# show selector to switch language
|
||||
showLanguageSelector = true
|
||||
# set theme to full screen width
|
||||
fullWidthTheme = false
|
||||
# center theme with default width
|
||||
centerTheme = true
|
||||
# if your resource directory contains an image called `cover.(jpg|png|webp)`,
|
||||
# then the file will be used as a cover automatically.
|
||||
# With this option you don't have to put the `cover` param in a front-matter.
|
||||
autoCover = true
|
||||
# set post to show the last updated
|
||||
# If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
|
||||
showLastUpdated = false
|
||||
# set a custom favicon (default is a `themeColor` square)
|
||||
favicon = "favicon.ico"
|
||||
# Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author
|
||||
# updatedDatePrefix = "Updated"
|
||||
# set all headings to their default size (depending on browser settings)
|
||||
# oneHeadingSize = true # default
|
||||
# whether to show a page's estimated reading time
|
||||
readingTime = true # default
|
||||
# whether to show a table of contents
|
||||
# can be overridden in a page's front-matter
|
||||
# Toc = false # default
|
||||
# set title for the table of contents
|
||||
# can be overridden in a page's front-matter
|
||||
# TocTitle = "Table of Contents" # default
|
||||
# you can set a banner on the top of the page with a call to action
|
||||
# defaults: dismissible = false; URL is optional
|
||||
# [params.banner]
|
||||
# dismissible = false
|
||||
# text = "Check it out on GitHub"
|
||||
# url = "https://github.com/mirus-ua/hugo-theme-re-terminal"
|
||||
|
||||
[params.twitter]
|
||||
# set Twitter handles for Twitter cards
|
||||
# see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution
|
||||
# do not include @
|
||||
creator = ""
|
||||
site = ""
|
||||
|
||||
[params.comments]
|
||||
enable = true
|
||||
|
||||
[languages]
|
||||
[languages.en]
|
||||
languageName = "English"
|
||||
weight = 1
|
||||
contentDir = "content/en"
|
||||
|
||||
[languages.pt]
|
||||
languageName = "Português"
|
||||
weight = 2
|
||||
contentDir = "content/pt"
|
||||
|
||||
[languages.en.params]
|
||||
languageName = "English"
|
||||
weight = 1
|
||||
contentDir = "content/en"
|
||||
title = "Eventually (In)Consistent"
|
||||
subtitle = "Full-duplex null banter"
|
||||
owner = "Felipe Cotti"
|
||||
keywords = ""
|
||||
copyright = ""
|
||||
menuMore = "Show more"
|
||||
readMore = "Read more"
|
||||
readOtherPosts = "Read other posts"
|
||||
newerPosts = "Newer posts"
|
||||
olderPosts = "Older posts"
|
||||
missingContentMessage = "Page not found..."
|
||||
missingBackButtonLabel = "Back to home page"
|
||||
minuteReadingTime = "min read"
|
||||
words = "words"
|
||||
|
||||
[languages.en.params.logo]
|
||||
logoText = "Eventually (In)Consistent"
|
||||
logoHomeLink = "/"
|
||||
|
||||
[languages.en.menu]
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "about"
|
||||
name = "About"
|
||||
url = "/en/about"
|
||||
[[languages.en.menu.main]]
|
||||
identifier = "archive"
|
||||
name = "Archive"
|
||||
url = "/en/archive"
|
||||
|
||||
[languages.pt.params]
|
||||
languageName = "Português"
|
||||
weight = 2
|
||||
contentDir = "content/pt"
|
||||
title = "Eventualmente (In)Consistente"
|
||||
subtitle = "Gracejos nulos full-duplex"
|
||||
owner = "Felipe Cotti"
|
||||
keywords = ""
|
||||
copyright = ""
|
||||
menuMore = "Mostrar mais"
|
||||
readMore = "Ler mais"
|
||||
readOtherPosts = "Leia outras postagens"
|
||||
newerPosts = "Posts mais novos"
|
||||
olderPosts = "Posts mais antigos"
|
||||
missingContentMessage = "Página não encontrada..."
|
||||
missingBackButtonLabel = "Página inicial"
|
||||
minuteReadingTime = "min de leitura"
|
||||
words = "palavras"
|
||||
|
||||
[languages.pt.params.logo]
|
||||
logoText = "Eventualmente (In)Consistente"
|
||||
logoHomeLink = "/pt"
|
||||
|
||||
[languages.pt.menu]
|
||||
[[languages.pt.menu.main]]
|
||||
identifier = "about"
|
||||
name = "Sobre"
|
||||
url = "/pt/about"
|
||||
[[languages.pt.menu.main]]
|
||||
identifier = "archive"
|
||||
name = "Arquivo"
|
||||
url = "/pt/archive"
|
||||
|
||||
[markup]
|
||||
[markup.goldmark]
|
||||
[markup.goldmark.renderer]
|
||||
unsafe = true
|
35
layouts/archive/list.html
Normal file
35
layouts/archive/list.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
{{ define "main" }}
|
||||
{{ with .Content }}
|
||||
<div class="index-content">
|
||||
{{ . }}
|
||||
</div>
|
||||
{{ end }}
|
||||
<div class="posts">
|
||||
{{ range where .Site.RegularPages "Section" "posts" }} <!-- Filter by section -->
|
||||
<article class="post on-list">
|
||||
<h1 class="post-title">
|
||||
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||
</h1>
|
||||
<div class="post-meta">
|
||||
{{- if .Date -}}
|
||||
<time class="post-date">
|
||||
{{- .Date.Format "2006-01-02" -}}
|
||||
</time>
|
||||
{{- end -}}
|
||||
{{- with .Params.Author -}}
|
||||
<span class="post-author">{{- . -}}</span>
|
||||
{{- end -}}
|
||||
</div>
|
||||
<div class="post-content">
|
||||
{{ if .Params.showFullContent }}
|
||||
{{ .Content }}
|
||||
{{ else if .Description }}
|
||||
{{ .Description | markdownify }}
|
||||
{{ else }}
|
||||
{{ .Summary }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</article>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
16
layouts/partials/comments.html
Normal file
16
layouts/partials/comments.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<script defer src="https://comentario.cotti.com.br/comentario.js"></script>
|
||||
<comentario-comments></comentario-comments>
|
||||
<noscript>Please enable JavaScript to view comments.</noscript>
|
||||
|
||||
<script>
|
||||
const comentarioComments = document.getElementsByTagName("comentario-comments");
|
||||
if (localStorage.getItem("theme") === "dark") {
|
||||
for (const commentElement of comentarioComments) {
|
||||
commentElement.setAttribute("theme", "dark");
|
||||
}
|
||||
} else {
|
||||
for (const commentElement of comentarioComments) {
|
||||
commentElement.setAttribute("theme", "light");
|
||||
}
|
||||
}
|
||||
</script>
|
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
static/images/author.jpg
Normal file
BIN
static/images/author.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 118 KiB |
BIN
static/images/revealed-microplastics.jpg
Normal file
BIN
static/images/revealed-microplastics.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 128 KiB |
1
themes/re-terminal
Submodule
1
themes/re-terminal
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 2c92a7b39bac5d76f74ab6eafd7266e60bc8df26
|
Loading…
Add table
Reference in a new issue