-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
116 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/.quarto/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
project: | ||
type: website | ||
output-dir: docs | ||
|
||
website: | ||
title: "Home_Page" | ||
open-graph: true # https://quarto.org/docs/websites/website-tools.html#open-graph | ||
page-footer: "Made with ❤️ and Quarto" | ||
navbar: | ||
right: | ||
- text: Profile | ||
href: index.qmd | ||
|
||
format: | ||
html: | ||
# theme: [cosmo, styles.scss] | ||
# theme: united | ||
# theme: Sandstone | ||
theme: | ||
- cosmo | ||
- styles.scss | ||
fontsize: 1.2em | ||
linestretch: 2.5 | ||
backgroundcolor: rgb(155, 155, 155) | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
title: "David" | ||
subtitle: "Data Scientist" | ||
date: today | ||
date-format: full | ||
# `profile.jpg` photo by Jan Tinneberg on https://unsplash.com | ||
# image: profile.jpg | ||
image: david_maplepath_2018.jpg | ||
about: # https://quarto.org/docs/websites/website-about.html | ||
# id: hero-heading | ||
# template: jolla | ||
template: solana | ||
image-width: 6em | ||
links: | ||
- icon: github | ||
# - icon: flag-fill | ||
text: Github | ||
href: https://github.com/davidzgli | ||
- icon: linkedin | ||
text: LinkedIn | ||
href: https://www.linkedin.com/in/zhiguang-li-8117b453 | ||
--- | ||
|
||
## About | ||
|
||
I am a data scientist at NIH. Currently, I am studying the DNA methylation changes in blood samples of old populations. I am also interested in machine learning and data visualization. | ||
|
||
<!-- :::{#hero-heading} --> | ||
|
||
## Education | ||
|
||
|
||
Wuhan University, Wuhan \| Hubei \| Sept 1994 - June 1998. | ||
|
||
Fudan University, Shanghai \| Shanghai \| Sept 1998 - June 2001. | ||
|
||
CAS, Beijing \| Sept 2004 - June 2008. | ||
|
||
|
||
## Experience | ||
|
||
**LEPS**, National Institute on Aging \| Staff Scientist \| April 2020 - present | ||
|
||
<!-- ::: --> | ||
|
||
### The following is a test | ||
|
||
{{< placeholder 400 200 >}} | ||
|
||
{{< lipsum 1 >}} | ||
|
||
{{< placeholder 400 100 format=svg >}} | ||
|
||
{{< lipsum 2 >}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
// Sass Variables | ||
// https://quarto.org/docs/output-formats/html-themes.html#sass-variables | ||
|
||
/* Colors */ | ||
$body-bg: #FFFFFF; | ||
$body-color: rgb(55, 58, 60); | ||
$link-color: rgb(39, 128, 227); | ||
$h2-font-size: 1.6rem !default; | ||
$headings-font-weight: 500 !default; | ||
// $headings-font-weight: 200 !important; | ||
// $headings-color: blue !default; | ||
$headings-color: black; | ||
// $navbar-bg: rgba(0, 0, 0, .3); | ||
// $gray-700 needs to be defined in the theme even if it is already defined in the default theme | ||
// as shown at https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss. | ||
// This is because the default theme is not loaded when the theme is loaded as explained at | ||
// https://quarto.org/docs/output-formats/html-themes-more.html | ||
$gray-700: #495057 !default; | ||
$navbar-bg: $gray-700 !default; | ||
|
||
/* Fonts */ | ||
$font-family-sans-serif: "Source Sans Pro", -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | ||
$font-size-root: 17px; | ||
|
||
/*-- scss:rules --*/ | ||
h1, h2, h3, h4, h5, h6 { | ||
text-shadow: -2px -2px 0 rgba(0, 0, 0, .3); | ||
} |