Skip to content

Commit

Permalink
root
Browse files Browse the repository at this point in the history
  • Loading branch information
simodima committed Sep 18, 2024
0 parents commit 55e19f6
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/archie"]
path = themes/archie
url = [email protected]:athul/archie.git
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
+++
41 changes: 41 additions & 0 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

:root {
--maincolor: #8f2b9b !important;
--bordercl: #8f2b9b !important;
--callouctcolor: dodgerblue !important;
--hovercolor: #8f2b9b !important;
--darkMaincolor: #8f2b9b !important;
--bgcolor: #f0f0e5;
}

html {
color: #232333;
font-family: 'Roboto Mono', monospace;
font-size: 15px;
line-height: 1.6em;
background: var(--bgcolor);
}

a:hover {
background-color: var(--hovercolor);
color: var(--bgcolor) !important;
}

/* list box */
.list-item {
border: 1px solid var(--bordercl);
border-radius: 0.2em;
box-shadow: 5px 5px 7px #f1e9fd;
padding: 0 1.5em 1.5em 1.5em;
margin: 2em 0 2em 0;
}
.list-item .description {
padding: 1.75em;
}
.list-item .readmore {
display: inline-block;
margin: 0;
padding: 0.3em 0.8em;
border-radius: 3rem;
}

14 changes: 14 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'Simone.dev'
theme = 'archie'


[params]
author = "Simone Di Maulo"
mode="toggle" # color-mode → light,dark,toggle or auto
useCDN=true # don't use CDNs for fonts and icons, instead serve them locally.
subtitle = "I like code, architecture and help developers work better"
mathjax = false # enable MathJax support
katex = false # enable KaTeX support
customcss = ["/css/custom.css"]
1 change: 1 addition & 0 deletions themes/archie
Submodule archie added at d8819d

0 comments on commit 55e19f6

Please sign in to comment.