Skip to content

Commit 5ef1b6d

Browse files
author
Yrjö Kari-Koskinen
committed
Add koodiklinikka Slack in contact part
1 parent 2bc2ff1 commit 5ef1b6d

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Deployment to Github Pages happens automatically via Github Actions once changes
5151
5252
## License
5353
54-
Copyright © 2020 Clojure Finland
54+
Copyright © 2020–2021 Clojure Finland
5555
5656
Distributed under the Eclipse Public License either version 1.0 or (at
5757
your option) any later version.

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{:paths ["src"]
22
:deps
3-
{org.clojure/clojure {:mvn/version "1.10.1"}
3+
{org.clojure/clojure {:mvn/version "1.10.2"}
44
hiccup/hiccup {:mvn/version "1.0.5"}
55
garden/garden {:mvn/version "1.3.10"}}
66
:aliases

src/ClojureFinland/html/page.clj

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
<a href=\"https://clojure.org/guides/getting_started\">guides at
2020
Clojure.org</a> and don’t hesitate to ask questions in e.g. #beginners
2121
or #clojure-finland channels in
22-
<a href=\"http://clojurians.net/\">Clojurians Slack</a>!"}})
22+
<a href=\"http://clojurians.net/\">Clojurians Slack</a> or
23+
#clojure channel in <a href=\"https://koodiklinikka.fi\">Koodiklinikka Slack</a>!"}})
2324

2425
(def companies
2526
{:title "Companies"
@@ -99,8 +100,12 @@
99100
:data
100101
{:email "<a href='mailto:clojurehelsinki@gmail.com'>clojurehelsinki@gmail.com</a>"
101102
:github "https://github.com/ClojureFinland"
102-
:slack {:url "http://clojurians.net/"
103-
:channel "#clojure-finland"}
103+
:slack [{:url "https://koodiklinikka.fi/"
104+
:channel "#clojure"
105+
:language "Finnish"}
106+
{:url "http://clojurians.net/"
107+
:channel "#clojure-finland"
108+
:language "English"}]
104109
:twitter "https://twitter.com/clojurefinland"
105110
:youtube "https://www.youtube.com/channel/UC7GYPoytIg5R56V2Pn-xU9g/videos"}})
106111

@@ -134,6 +139,7 @@
134139
[:th {:scope "row"} (keyword-output k)]
135140
[:td (let [column (cond
136141
(map? v) (table-output v)
142+
(coll? v) (table-output v)
137143
(link? v) (link v)
138144
:else (text-output v))]
139145
(cond-> column

0 commit comments

Comments
 (0)