Skip to content

Commit 64de9e3

Browse files
committed
add keynote details
1 parent 2d34c36 commit 64de9e3

File tree

4 files changed

+37
-25
lines changed

4 files changed

+37
-25
lines changed

resources/public/css/style.css

+12
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717
font-weight: 600;
1818
}
1919

20+
@font-face {
21+
font-family: 'Poppins';
22+
src: url('../fonts/Poppins-SemiBold.ttf');
23+
font-weight: 600;
24+
}
25+
2026
body {
2127
font-style: normal;
2228
font-family: 'Cooper Hewitt', 'Barlow Semi Condensed', sans-serif;
@@ -858,3 +864,9 @@ table {
858864
border: 1px dotted black;
859865
margin-bottom: 1.5em;
860866
}
867+
868+
.devanagari {
869+
font-family: 'Poppins', sans-serif;
870+
margin-left: 0.2%;
871+
font-size: 90%;
872+
}
152 KB
Binary file not shown.
42.7 KB
Loading

src/cljs/inclojure_website/page.cljs

+25-25
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"Workshop" "workshops"
5252
"Sponsors" "sponsorship"})
5353

54-
(def talk-links ["steven" "amogh" "vedang" "aldo" "akshat" "anuj" "abhinav" "dheeraj" "prabhanshu"])
54+
(def talk-links ["keynote" "amogh" "vedang" "aldo" "akshat" "anuj" "abhinav" "dheeraj" "prabhanshu"])
5555

5656
(defn nav []
5757
[:nav
@@ -263,30 +263,30 @@
263263
[:img {:alt "Github", :src "images/github.png"}]]]])]])
264264

265265
(defn keynote []
266-
#_[:section {:id "keynote"}
267-
[:h2 "Keynote"]
268-
[:ol.article-list
269-
[:li
270-
[:a
271-
{:href "#"}
272-
[:img.article-image.keynote
273-
{:alt "bbatsov",
274-
:src "images/speakers/bozhidar-batsov.jpg"}]]
275-
[:h4
276-
[:a {:href "https://metaredux.com"} "Bozhidar Batsov"]]
277-
[:p.article-subtitle "Bozhidar is the maintainer of CIDER, nREPL,
278-
a dozen related projects, and the editor of the community
279-
Clojure style guide. Most people would probably describe him as
280-
an Emacs zealot (and they would be right). He's also quite fond
281-
of the Lisp family of languages, functional programming in
282-
general and Clojure in particular."]
283-
[:div.article-fine-print.no-mobile
284-
[:a
285-
{:href "https://twitter.com/bbatsov"}
286-
[:img {:alt "Twitter", :src "images/twitter.png"}]]
287-
[:a
288-
{:href "https://github.com/bbatsov"}
289-
[:img {:alt "Github", :src "images/github.png"}]]]]]])
266+
[:section {:id "keynote"}
267+
[:h2 "Keynote"]
268+
[:ol.article-list
269+
[:li
270+
[:a
271+
{:href "#"}
272+
[:img.article-image.keynote
273+
{:alt "deobald",
274+
:src "images/speakers/steven.png"}]]
275+
[:h4 "The Grift, the Grind, and the " [:span.devanagari "ग्रंथ"]]
276+
[:p.article-subtitle
277+
"By " [:a {:href "https://www.deobald.ca/"} "Steven Deobald"]]
278+
"Programming used to be fun. What happened?"
279+
[:p.article-subtitle [:strong "About the speaker"] ": Steven helped start nilenso, India's first software
280+
cooperative. These days he works on Endatabas, the world's first
281+
immutable HTAP SQL document database. He likes canoeing, bicycles, and
282+
walkable cities."]
283+
[:div.article-fine-print.no-mobile
284+
[:a
285+
{:href "https://twitter.com/deobald"}
286+
[:img {:alt "Twitter", :src "images/twitter.png"}]]
287+
[:a
288+
{:href "https://github.com/deobald"}
289+
[:img {:alt "Github", :src "images/github.png"}]]]]]])
290290

291291
(defn tickets []
292292
[:section {:id "tickets"}

0 commit comments

Comments
 (0)