From 54cf2cc4dcb45dd383dbca4087a5f3acbbf17087 Mon Sep 17 00:00:00 2001 From: Kaan Genc Date: Tue, 11 May 2021 18:32:00 -0400 Subject: [PATCH] Add Dendron affiliation --- .vscode/tasks.json | 13 +++++++++++++ src/site/core.clj | 7 ++++++- src/site/styles.clj | 3 ++- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..13441a8 --- /dev/null +++ b/.vscode/tasks.json @@ -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": [] + } + ] +} \ No newline at end of file diff --git a/src/site/core.clj b/src/site/core.clj index 6991ad9..71e5f8f 100644 --- a/src/site/core.clj +++ b/src/site/core.clj @@ -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)))) diff --git a/src/site/styles.clj b/src/site/styles.clj index ad3c36f..a255a37 100644 --- a/src/site/styles.clj +++ b/src/site/styles.clj @@ -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"}])