Compare commits
No commits in common. "6d418ed58d249b789010009c1081ad7e27b49676" and "4382164f1acfc38caacef9f98b63583bd0e22dbc" have entirely different histories.
6d418ed58d
...
4382164f1a
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
.hugo_build.lock
|
.hugo_build.lock
|
||||||
themes/risotto2
|
themes/risotto2
|
||||||
public
|
public
|
||||||
resources
|
|
84
config.toml
Normal file
84
config.toml
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
baseURL = 'https://arch.fail'
|
||||||
|
theme = 'risotto'
|
||||||
|
title = 'Arch Reject'
|
||||||
|
author = 'Pratyush Desai'
|
||||||
|
paginate = 3
|
||||||
|
languageCode = "en"
|
||||||
|
DefaultContentLanguage = "en"
|
||||||
|
enableInlineShortcodes = true
|
||||||
|
|
||||||
|
sectionPagesMenu = "main"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
noindex = false
|
||||||
|
|
||||||
|
[params.theme]
|
||||||
|
palette = "rosepine"
|
||||||
|
|
||||||
|
[params.about]
|
||||||
|
title = "pratyush desai"
|
||||||
|
description = "No description set"
|
||||||
|
logo = "images/shodandos.jpg"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
icon = "fa-brands fa-github"
|
||||||
|
title = "GitHub"
|
||||||
|
url = "https://github.com/mogad0n"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
icon = "fa-brands fa-git-alt"
|
||||||
|
title = "Gitea"
|
||||||
|
url = "https://git.com.de/pratyush"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
icon = "fa-solid fa-envelope"
|
||||||
|
title = "Email"
|
||||||
|
url = "mailto:pratyush.desai@liberta.casa"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
icon = "fa-brands fa-mastodon"
|
||||||
|
title = "Mastodon"
|
||||||
|
url = "https://fosstodon.org/@mogad0n"
|
||||||
|
|
||||||
|
[menu]
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "about"
|
||||||
|
name = "About"
|
||||||
|
url = "/about/"
|
||||||
|
weight = 10
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "projects"
|
||||||
|
name = "Projects"
|
||||||
|
url = "/projects/"
|
||||||
|
weight = 10
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "posts"
|
||||||
|
name = "Posts"
|
||||||
|
url = "/posts/"
|
||||||
|
weight = 10
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "contact"
|
||||||
|
name = "Contact"
|
||||||
|
url = "/contact/"
|
||||||
|
weight = 10
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
category = "categories"
|
||||||
|
tag = "tags"
|
||||||
|
series = "series"
|
||||||
|
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
|
||||||
|
[markup]
|
||||||
|
|
||||||
|
# Table of contents
|
||||||
|
# Add toc = true to content front matter to enable
|
||||||
|
[markup.tableOfContents]
|
||||||
|
startLevel = 2
|
||||||
|
endLevel = 3
|
||||||
|
ordered = true
|
60
config.yaml
60
config.yaml
@ -1,60 +0,0 @@
|
|||||||
baseURL: 'https://arch.fail'
|
|
||||||
theme: risotto
|
|
||||||
title: sirius
|
|
||||||
author: Pratyush Desai
|
|
||||||
paginate: 3
|
|
||||||
languageCode: en
|
|
||||||
DefaultContentLanguage: en
|
|
||||||
enableInlineShortcodes: true
|
|
||||||
sectionPagesMenu: main
|
|
||||||
params:
|
|
||||||
noindex: false
|
|
||||||
theme:
|
|
||||||
palette: rosepine
|
|
||||||
about:
|
|
||||||
title: pratyush desai
|
|
||||||
description: No description set
|
|
||||||
logo: images/shodandos.jpg
|
|
||||||
socialLinks:
|
|
||||||
- icon: fa-brands fa-github
|
|
||||||
title: GitHub
|
|
||||||
url: 'https://github.com/mogad0n'
|
|
||||||
- icon: fa-brands fa-git-alt
|
|
||||||
title: Gitea
|
|
||||||
url: 'https://git.com.de/pratyush'
|
|
||||||
- icon: fa-solid fa-envelope
|
|
||||||
title: Email
|
|
||||||
url: 'mailto:pratyush.desai@liberta.casa'
|
|
||||||
- icon: fa-brands fa-mastodon
|
|
||||||
title: Mastodon
|
|
||||||
url: 'https://fosstodon.org/@mogad0n'
|
|
||||||
menu:
|
|
||||||
main:
|
|
||||||
- identifier: about
|
|
||||||
name: About
|
|
||||||
url: /about/
|
|
||||||
weight: 10
|
|
||||||
- identifier: projects
|
|
||||||
name: Projects
|
|
||||||
url: /projects/
|
|
||||||
weight: 10
|
|
||||||
- identifier: posts
|
|
||||||
name: Posts
|
|
||||||
url: /posts/
|
|
||||||
weight: 10
|
|
||||||
- identifier: contact
|
|
||||||
name: Contact
|
|
||||||
url: /contact/
|
|
||||||
weight: 10
|
|
||||||
taxonomies:
|
|
||||||
category: categories
|
|
||||||
tag: tags
|
|
||||||
series: series
|
|
||||||
markup:
|
|
||||||
goldmark:
|
|
||||||
renderer:
|
|
||||||
unsafe: true
|
|
||||||
tableOfContents:
|
|
||||||
startLevel: 2
|
|
||||||
endLevel: 3
|
|
||||||
ordered: true
|
|
@ -5,7 +5,7 @@ draft: false
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
I'm a software developer from Mumbai (Bombay), India.
|
I'm a software developer from the suburbs of Mumbai (Bombay), India.
|
||||||
|
|
||||||
I can usually be found tinkering on some of the Free and Open source softwares and libraries that enable us to build things and improve our lives. It's not only important in my view to build/contribute software that supports
|
I can usually be found tinkering on some of the Free and Open source softwares and libraries that enable us to build things and improve our lives. It's not only important in my view to build/contribute software that supports
|
||||||
open standards rather than walled gardens but to also run open services.
|
open standards rather than walled gardens but to also run open services.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user