diff --git a/_quarto.yml b/_quarto.yml index a50a26d..ac4f563 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -1,19 +1,92 @@ +# project: +# type: website + +# website: +# title: "(x)Ability Design Lab" +# site-url: 'https://xabilitylab.ischool.illinois.edu' +# repo-url: 'https://github.com/xability/xability.github.io' +# issue-url: 'https://github.com/xability/xability.github.io/issues/new' +# repo-actions: [edit, issue] +# image: /logo/logo_with_hue.jpeg +# # image-alt: "(x)Ability Design Lab" +# favicon: /logo/favicon.png +# # google-analytics: "G-FV9Z7SDZ0M" +# open-graph: true +# twitter-card: true +# page-navigation: true +# # bread-crumbs: true +# # search: +# # show-item-context: true +# # type: overlay +# # algolia: +# # index-name: prod_QUARTO +# # application-id: ZPJB5I1QN7 +# # search-only-api-key: 41be6c1e0a7fea4a51b107810facf577 +# # analytics-events: true +# # show-logo: true + +# page-footer: +# background: transparent +# # left: | +# # Proudly supported by +# # [![](https://www.rstudio.com/assets/img/posit-logo-fullcolor-TM.svg){fig-alt="Posit" width=65px}](https://posit.co) +# center: | +# © 2024 · Made with +# +# Quarto +# +# right: +# - icon: github +# href: https://github.com/xability +# aria-label: (x)Ability Design Lab GitHub + +# # - icon: rss +# # href: https://quarto.org/docs/blog/index.xml +# # aria-label: Quarto Blog RSS + +# navbar: +# theme: darkly +# background: "#000000" +# logo: logo/logo_without_hue.jpeg +# logo-alt: "(x)Ability Design Lab logo" +# title: false +# left: +# - href: index.qmd +# text: Home +# - href: about.qmd +# - href: people.qmd +# text: People +# - href: projects.qmd +# text: Projects +# - href: contact.qmd +# text: Contact + +# format: +# html: +# theme: [cosmo, svg_tweak.scss] +# css: styles.css +# toc: true + +# bibliography: references.bib + project: type: website website: title: "(x)Ability Design Lab" - site-url: 'https://xabilitylab.ischool.illinois.edu' - repo-url: 'https://github.com/xability/xability.github.io' - issue-url: 'https://github.com/xability/xability.github.io/issues/new' + site-url: "https://xabilitylab.ischool.illinois.edu" + repo-url: "https://github.com/xability/xability.github.io" + issue-url: "https://github.com/xability/xability.github.io/issues/new" repo-actions: [edit, issue] image: /logo/logo_with_hue.jpeg # image-alt: "(x)Ability Design Lab" favicon: /logo/favicon.png - # google-analytics: "G-FV9Z7SDZ0M" open-graph: true twitter-card: true page-navigation: true + + page-footer: + background: transparent # bread-crumbs: true # search: # show-item-context: true @@ -40,10 +113,6 @@ website: href: https://github.com/xability aria-label: (x)Ability Design Lab GitHub - # - icon: rss - # href: https://quarto.org/docs/blog/index.xml - # aria-label: Quarto Blog RSS - navbar: theme: darkly background: "#000000" @@ -58,6 +127,8 @@ website: text: People - href: projects.qmd text: Projects + - href: publications.qmd + text: Publications - href: contact.qmd text: Contact diff --git a/apa.csl b/apa.csl new file mode 100644 index 0000000..d9d5d88 --- /dev/null +++ b/apa.csl @@ -0,0 +1,2128 @@ + + diff --git a/people.qmd b/people.qmd index 046b2bf..6a374be 100644 --- a/people.qmd +++ b/people.qmd @@ -11,7 +11,7 @@ page-layout: full
- +JooYoung Seo

JooYoung Seo

Ph.D., Learning, Design, and Technology
@@ -35,7 +35,7 @@ Seo obtained his PhD and M.Ed in at the Pennsylvania State University, and doub
- +Sanchita Kamath

Sanchita Kamath

Ph.D. Student, Information Sciences
@@ -50,7 +50,7 @@ Seo obtained his PhD and M.Ed in at the Pennsylvania State University, and doub
- +Aziz Zeidieh

Aziz Zeidieh

Ph.D. Student, Informatics
@@ -132,4 +132,4 @@ Seo obtained his PhD and M.Ed in at the Pennsylvania State University, and doub ::: ---> \ No newline at end of file +--> diff --git a/publications.qmd b/publications.qmd new file mode 100644 index 0000000..dd7d8f4 --- /dev/null +++ b/publications.qmd @@ -0,0 +1,16 @@ +--- +title: "Publications" +bibliography: references.bib +nocite: | + @* +csl: apa.csl # Optional: You can change this to your preferred citation style +format: + html: + toc: true + toc-depth: 2 +--- + +The following includes the recent publications in our lab. + +::: {#refs} +::: diff --git a/styles.css b/styles.css index 2ddf50c..853448d 100644 --- a/styles.css +++ b/styles.css @@ -1 +1,12 @@ -/* css styles */ +/* Temporarily override color for all links to test */ +a { + color: #2377cc !important; /* Apply blue color to all links */ + text-decoration: none !important; /* Remove underline globally */ + } + + /* Hover effect for all links */ + a:hover { + color: darkred !important; /* Apply dark red color on hover */ + text-decoration: underline !important; /* Add underline on hover */ + } + \ No newline at end of file