-
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 55e19f6
Showing
6 changed files
with
64 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,3 @@ | ||
[submodule "themes/archie"] | ||
path = themes/archie | ||
url = [email protected]:athul/archie.git |
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,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; | ||
} | ||
|
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,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"] |