2019-10-27 16:20:04 -05:00
|
|
|
(ns site.core
|
2020-05-12 03:24:27 -05:00
|
|
|
(:require [hiccup.page :as hp]
|
|
|
|
[garden.core :as gc]))
|
|
|
|
|
2019-10-27 16:20:04 -05:00
|
|
|
|
|
|
|
(defn page [data]
|
|
|
|
(hp/html5
|
2020-09-17 23:03:34 -05:00
|
|
|
[:head
|
|
|
|
[:meta {:charset "utf-8"}]
|
|
|
|
[:link {:rel "stylesheet" :href "main.css"}]]
|
2020-09-18 01:22:08 -05:00
|
|
|
[:title "Homepage of Kaan Genç"]
|
2020-09-17 23:03:34 -05:00
|
|
|
[:link {:href
|
|
|
|
"https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400;1,700&display=swap"
|
|
|
|
:rel "stylesheet"}]
|
|
|
|
(when (= "index" (-> data :entry :slug))
|
|
|
|
[:div.sidebar.column
|
|
|
|
[:img.picture {:alt "A photo of Kaan Genç, after his OOPSLA 2019 talk." :src "/img/profile.jpg"}]
|
|
|
|
[:div.name "Kaan Genç"]
|
|
|
|
[:div.title "PhD Student"]
|
|
|
|
[:div.department "Computer Science & Engineering"]
|
|
|
|
[:div.affiliation "The Ohio State University"]
|
|
|
|
[:span [:a.email {:href "mailto:genc.5@osu.edu"} "genc.5@osu.edu"] [:a.gpg {:href "/extra/kaangenc.gpg"} "GPG key"]]
|
|
|
|
[:a.github {:href "https://github.com/SeriousBug"} "Github"]
|
|
|
|
[:a.researchr {:href "https://conf.researchr.org/profile/kaangenc"} "Researchr"]])
|
|
|
|
[:div.main.column
|
2019-10-27 16:20:04 -05:00
|
|
|
(-> data :entry :content)]))
|