diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2022-03-24 01:31:41 +0100 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2022-03-24 01:31:41 +0100 |
commit | f3504421d4658345917321dad40b79068aa760a8 (patch) | |
tree | d6a33334f2cb124f4c74eedcb9ef72ed49f677bd | |
parent | 9176f98eb7fa33bee31efcf3aab619e39d0a05d4 (diff) | |
download | gabrielgio.me-f3504421d4658345917321dad40b79068aa760a8.tar.gz gabrielgio.me-f3504421d4658345917321dad40b79068aa760a8.tar.bz2 gabrielgio.me-f3504421d4658345917321dad40b79068aa760a8.zip |
feat: Add projects page
Add a list of software I have finish and use on my day to day life.
-rw-r--r-- | config.toml | 6 | ||||
-rw-r--r-- | content/projects/_index.md | 37 | ||||
-rw-r--r-- | themes/flamingo/layouts/_default/baseof.html | 2 | ||||
-rw-r--r-- | themes/flamingo/layouts/partials/header.html | 1 |
4 files changed, 45 insertions, 1 deletions
diff --git a/config.toml b/config.toml index 62c783d..3980f38 100644 --- a/config.toml +++ b/config.toml @@ -7,3 +7,9 @@ staticDir = ['static'] [author] name = "Gabriel Giovanini" email = "gabriel.giovanini@pm.me" + +[markup] + defaultMarkdownHandler = "goldmark" + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true diff --git a/content/projects/_index.md b/content/projects/_index.md new file mode 100644 index 0000000..3229dd9 --- /dev/null +++ b/content/projects/_index.md @@ -0,0 +1,37 @@ ++++ +title = "Projects" +author = ["gabrielgio"] +layout = "single" +draft = false ++++ + + +Just a list of some projects I finished. + +- [Reddit to Nextcloud + importer](https://gabrielgio.gitlab.io/reddit-nextcloud-importer/) + [<i class="fab fa-gitlab"></i>](https://gitlab.com/gabrielgio/reddit-nextcloud-importer) + + A small project that monitors user\'s saved posts on reddit, downloads its + media and uploads to a nextcloud instance. + + It combines 3 projects: [praw](https://github.com/praw-dev/praw) to read and + motitor user's saved feed, [gallery-dl](https://github.com/mikf/gallery-dl) + to download media from several sources, and + [nextcloud-api-wrapper](https://github.com/luffah/nextcloud-API) to manage + folder and upload files to nexcloud instance. + +- [Filter for Nerdcast + (pt-BR)](https://gabrielgio.gitlab.io/jn_filter/) + [<i class="fab fa-gitlab"></i>](https://gitlab.com/gabrielgio/jn_filter) + + Just a small podcast filter to remove and/or split a feed from + [Nerdcast](https://www.jovemnerd.com.br/nerdcast/) into different segments. + The current feed its quite clustered with many programs/segments and this + project just helps to clean up so only the segment you want shows up on you + podcast client. + +- [Password generator](https://genpass.gabrielgio.me/) + [<i class="fab fa-gitlab"></i>](https://gitlab.com/gabrielgio/genpass) + + That is just me having fun with clojure script. diff --git a/themes/flamingo/layouts/_default/baseof.html b/themes/flamingo/layouts/_default/baseof.html index ccec626..7bbf0d5 100644 --- a/themes/flamingo/layouts/_default/baseof.html +++ b/themes/flamingo/layouts/_default/baseof.html @@ -6,7 +6,7 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <link rel="stylesheet" type="text/css" href="css/all.css" /> + <link rel="stylesheet" type="text/css" href="/css/all.css" /> {{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }} diff --git a/themes/flamingo/layouts/partials/header.html b/themes/flamingo/layouts/partials/header.html index a060f18..2ea00f3 100644 --- a/themes/flamingo/layouts/partials/header.html +++ b/themes/flamingo/layouts/partials/header.html @@ -9,6 +9,7 @@ <ul> <li><a class="{{ cond (eq .Title "Posts") "active-link" ""}}" href="/posts/">posts</a></li> <li><a class="{{ cond (eq .Title "Logs") "active-link" ""}}" href="/logs/">logs</a></li> + <li><a class="{{ cond (eq .Title "Projects") "active-link" ""}}" href="/projects/">projects</a></li> <li><a href="https://gitlab.com/gabrielgio/cv/-/raw/main/cv.pdf?inline=false" target="_blank"> |