Skip to content

Commit 331c5a9

Browse files
dark/light theme, index pages, example posts
1 parent 9142362 commit 331c5a9

File tree

19 files changed

+728
-240
lines changed

19 files changed

+728
-240
lines changed

.github/workflows/render-and-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ jobs:
3535
~/.m2/repository
3636
~/.gitlibs
3737
~/.deps.clj
38-
# List all files containing dependencies:
3938
key: cljdeps-${{ hashFiles('deps.edn') }}
4039
restore-keys: cljdeps-
4140

README.md

Lines changed: 0 additions & 171 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
content/about.qmd

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(:refer-clojure :exclude [test])
33
(:require [clojure.tools.build.api :as b]))
44

5-
(def lib 'io.github.timothypratley/civitas)
5+
(def lib 'io.github.timothypratley/clojurecivitas)
66
(def version "0.1.0-SNAPSHOT")
77
(def main 'civitas.main)
88
(def class-dir "target/classes")

clay.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:subdirs-to-sync ["content"]
44
:sync-as-subdirs false
55
:flatten-targets false
6-
:remote-repo {:git-url "https://github.com/timothypratley/civitas"
6+
:remote-repo {:git-url "https://github.com/timothypratley/clojurecivitas"
77
:branch "main"}
88
:hide-info-line true
99
:hide-ui-header true}

content/_quarto.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,23 @@ project:
33

44
website:
55
title: "Clojure Civitas"
6+
favicon: "favicon.ico"
67
navbar:
8+
logo: "images/civitas-icon.svg"
9+
logo-alt: "Clojure Civitas Logo"
710
right:
11+
- posts.qmd
12+
- ideas.qmd
13+
- talks.qmd
14+
- tutorials.qmd
15+
- pages.qmd
816
- about.qmd
917
- icon: github
10-
href: https://github.com/
11-
- icon: twitter
12-
href: https://twitter.com
18+
href: https://github.com/timothypratley/clojurecivitas
19+
1320
format:
1421
html:
15-
theme: cosmo
16-
css: styles.css
22+
theme:
23+
light: [ flatly ]
24+
dark: [ darkly ]
25+
respect-user-color-scheme: true

0 commit comments

Comments
 (0)