1
0
Fork 0

Add Dendron affiliation

This commit is contained in:
Kaan Genc 2021-05-11 18:32:00 -04:00
parent 5afb3d954e
commit 54cf2cc4dc
3 changed files with 21 additions and 2 deletions

13
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "publish",
"type": "shell",
"command": "boot publish",
"problemMatcher": []
}
]
}

View File

@ -23,6 +23,10 @@
[:div.title "PhD Student"]
[:div.department "Computer Science & Engineering"]
[:div.affiliation "The Ohio State University"]
[:div.spacer]
[:div.title "Software Engineering Intern"]
[:div.affiliation [:a {:href "http://dendron.so/"} "Dendron"]]
[:div.spacer]
[: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.linkedin {:href "https://www.linkedin.com/in/kaan-genc-8489b9205/"} "LinkedIn"]
@ -34,6 +38,7 @@
(defn page [{global-meta :meta posts :entries post :entry}]
(hp/html5
(page-header (:title post))
@ -57,4 +62,4 @@
(into [:div.main.column [:h1 "My thoughts on software & computer science"]]
(map (fn [{:keys [title permalink ttr date] :as post}]
[:a.post-listing {:href permalink} [:span.title title] [:br] [:span.ttr ttr " minute read, "] [:span.date (format-time date)]])
posts))))
posts))))

View File

@ -66,4 +66,5 @@
;; Create a separator between publications with the border
[".publication:not(:last-child)" {:border-bottom "1px solid black"}]
;;
[:.conf {:font-size "14px" :color "rgba(0, 0, 0, 0.70)"}])
[:.conf {:font-size "14px" :color "rgba(0, 0, 0, 0.70)"}]
[:.spacer {:height "2rem"}])