Skip to content

Commit 35f9f3b

Browse files
ClojureCivitas must be clojurecivitas repo name
1 parent f02d63c commit 35f9f3b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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/clojurecivitas)
5+
(def lib 'io.github.clojurecivitas/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/clojurecivitas"
6+
:remote-repo {:git-url "https://github.com/clojurecivitas/clojurecivitas"
77
:branch "main"}
88
:hide-info-line true
99
:hide-ui-header true

content/_quarto.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project:
44
website:
55
title: "Clojure Civitas"
66
favicon: "favicon.ico"
7-
site-url: "https://ClojureCivitas.github.io"
7+
site-url: "https://clojurecivitas.github.io"
88
image: "images/civitas-icon.svg"
99
open-graph: true
1010
navbar:
@@ -17,7 +17,7 @@ website:
1717
- libs.qmd
1818
- filter.qmd
1919
- icon: github
20-
href: "https://github.com/ClojureCivitas/ClojureCivitas"
20+
href: "https://github.com/clojurecivitas/clojurecivitas"
2121

2222
format:
2323
html:

content/about.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
An open effort to structure learning resources with meaningful connections.
88

9-
Explore the [Clojure Civitas Website](https://ClojureCivitas.github.io)
9+
Explore the [Clojure Civitas Website](https://clojurecivitas.github.io)
1010

1111
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; margin: 2rem 0;">
1212
<div style="border-left: 3px solid green; padding-left: 1rem;">

src/civitas/json_ld.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
(:require [clojure.data.json :as json]))
33

44
(def ^:dynamic *ldns* "civitas")
5-
(def ^:dynamic *base* "https://ClojureCivitas.github.io/" *ldns* "/")
5+
(def ^:dynamic *base* "https://clojurecivitas.github.io/" *ldns* "/")
66

77
(defn notebook-jsonld [{:keys [id title topics level] :as resource}]
88
{"@id" (str *base* "resource/" id),

0 commit comments

Comments
 (0)