Add al-folio and -folio files
|
@ -0,0 +1,12 @@
|
|||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: # Replace with a single Patreon username
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: alshedivat
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
otechie: # Replace with a single Otechie username
|
||||
custom: # ['https://www.buymeacoffee.com/TkFxuKo']
|
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Acknowledge the following**
|
||||
- [ ] I carefully read and followed the [Getting Started](https://github.com/alshedivat/al-folio#getting-started) guide.
|
||||
- [ ] I read through [FAQ](https://github.com/alshedivat/al-folio#faq) and searched through the [past issues](https://github.com/alshedivat/al-folio/issues), none of which addressed my issue.
|
||||
- [ ] The issue I am raising is a potential bug in al-folio and not just a usage question. <br> [For usage questions, please post in the [Discussions](https://github.com/alshedivat/al-folio/discussions) instead of raising an issue.]
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Screenshots**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**System (please complete the following information):**
|
||||
- OS: [e.g. iOS]
|
||||
- Browser (and its version) [e.g. chrome, safari]
|
||||
- Jekyll version [e.g. 3.8.7]
|
||||
- Ruby version [e.g. 2.6.5]
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
|
@ -0,0 +1,18 @@
|
|||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 60
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 7
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- pinned
|
||||
- security
|
||||
- enhancement
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: wontfix
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
recent activity. It will be closed if no further activity occurs. Thank you
|
||||
for your contributions.
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: false
|
|
@ -0,0 +1,51 @@
|
|||
name: Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Setup Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: '3.0.2'
|
||||
- name: Enable bundler cache
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: vendor/bundle
|
||||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gems-
|
||||
- name: Install deps
|
||||
run: |
|
||||
gem install bundler
|
||||
bundle config path vendor/bundle
|
||||
bundle install --jobs 4 --retry 3
|
||||
npm install -g mermaid.cli
|
||||
- name: Setup deploy options
|
||||
id: setup
|
||||
run: |
|
||||
git config --global user.name "GitHub Action"
|
||||
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||
if [[ ${GITHUB_REF} = refs/pull/*/merge ]]; then # pull request
|
||||
echo "::set-output name=SRC_BRANCH::${GITHUB_HEAD_REF}"
|
||||
echo "::set-output name=NO_PUSH::--no-push"
|
||||
elif [[ ${GITHUB_REF} = refs/heads/* ]]; then # branch, e.g. master, source etc
|
||||
echo "::set-output name=SRC_BRANCH::${GITHUB_REF#refs/heads/}"
|
||||
fi
|
||||
echo "::set-output name=DEPLOY_BRANCH::gh-pages"
|
||||
- name: Deploy website
|
||||
run: yes | bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }}
|
||||
--src ${{ steps.setup.outputs.SRC_BRANCH }}
|
||||
--deploy ${{ steps.setup.outputs.DEPLOY_BRANCH }}
|
|
@ -0,0 +1,11 @@
|
|||
_site
|
||||
.bundle
|
||||
.sass-cache
|
||||
.jekyll-cache
|
||||
.jekyll-metadata
|
||||
.DS_store
|
||||
.ruby-version
|
||||
.tweet-cache
|
||||
Gemfile.lock
|
||||
vendor
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
language: ruby
|
||||
rvm:
|
||||
- 2.4.1
|
||||
|
||||
# Assume bundler is being used, therefore
|
||||
# the `install` step will run `bundle install` by default.
|
||||
script: ./bin/cibuild
|
||||
|
||||
env:
|
||||
global:
|
||||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
||||
|
||||
sudo: false # route your build to the container-based infrastructure for a faster build
|
||||
|
||||
cache: bundler # caching bundler gem packages will speed up build
|
||||
|
||||
# Optional: disable email notifications about the outcome of your builds
|
||||
notifications:
|
||||
email: false
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: page
|
||||
permalink: /404.html
|
||||
title: "Page not found"
|
||||
description: "Looks like there has been a mistake. Nothing exists here."
|
||||
redirect: true
|
||||
---
|
||||
|
||||
<p>You will be redirected to the main page within 3 seconds. If not redirected, please click <a href="{{ site.baseurl | prepend: site.url }}/">here</a>.</p>
|
|
@ -0,0 +1,25 @@
|
|||
# Contributing to al-folio
|
||||
Thank you for considering to contribute to al-folio!
|
||||
|
||||
|
||||
## Pull Requests
|
||||
We welcome your pull requests (PRs).
|
||||
For minor fixes (e.g., documentation improvements), feel free to submit a PR directly.
|
||||
If you would like to implement a new feature or a bug, please make sure you (or someone else) has opened an appropriate issue first; in your PR, please mention the issue it addresses.
|
||||
|
||||
|
||||
## Issues
|
||||
We use GitHub issues to track bugs and feature requests.
|
||||
Before submitting an issue, please make sure:
|
||||
|
||||
1. You have read [the FAQ section](https://github.com/alshedivat/al-folio#faq) of the README and your question is NOT addressed there.
|
||||
2. You have done your best to ensure that your issue is NOT a duplicate of one of [the previous issues](https://github.com/alshedivat/al-folio/issues).
|
||||
3. Your issue is either a bug (unexpected/undesirable behavior) or a feature request.
|
||||
If it is just a question, please ask it in the [Discussions](https://github.com/alshedivat/al-folio/discussions) forum.
|
||||
|
||||
When submitting an issue, please make sure to use the appropriate template.
|
||||
|
||||
|
||||
## License
|
||||
By contributing to al-folio, you agree that your contributions will be licensed
|
||||
under the LICENSE file in the root directory of the source tree.
|
|
@ -0,0 +1,20 @@
|
|||
source 'https://rubygems.org'
|
||||
group :jekyll_plugins do
|
||||
gem 'jekyll'
|
||||
gem 'jekyll-archives'
|
||||
gem 'jekyll-diagrams'
|
||||
gem 'jekyll-email-protect'
|
||||
gem 'jekyll-feed'
|
||||
gem 'jekyll-github-metadata'
|
||||
gem 'jekyll-imagemagick'
|
||||
gem 'jekyll-paginate-v2'
|
||||
gem 'jekyll-scholar'
|
||||
gem 'jekyll-sitemap'
|
||||
gem 'jekyll-target-blank'
|
||||
gem 'jekyll-twitter-plugin'
|
||||
gem 'jemoji'
|
||||
gem 'unicode_utils'
|
||||
gem 'webrick'
|
||||
gem 'htmlcompressor'
|
||||
gem 'htmlbeautifier'
|
||||
end
|
|
@ -0,0 +1,20 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2021 Maruan Al-Shedivat.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -0,0 +1,381 @@
|
|||
# al-folio
|
||||
|
||||
[](https://travis-ci.org/alshedivat/al-folio)
|
||||
[](https://alshedivat.github.io/al-folio/)
|
||||
[](https://github.com/alshedivat/al-folio/graphs/contributors/)
|
||||

|
||||

|
||||
[](https://github.com/alshedivat/al-folio)
|
||||
[](https://github.com/alshedivat/al-folio/fork)
|
||||
[](https://ko-fi.com/alshedivat)
|
||||
|
||||
A simple, clean, and responsive [Jekyll](https://jekyllrb.com/) theme for academics.
|
||||
If you like the theme, give it a star!
|
||||
|
||||
[](https://alshedivat.github.io/al-folio/)
|
||||
|
||||
|
||||
## User community
|
||||
|
||||
The vibrant community of **al-folio** users is growing!
|
||||
Academics around the world use this theme for their homepages, blogs, lab pages, as well as webpages for courses, workshops, conferences, meetups, and more.
|
||||
Check out the community webpages below.
|
||||
Feel free to add your own page(s) by sending a PR.
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Academics</td>
|
||||
<td>
|
||||
<a href="http://maruan.alshedivat.com" target="_blank">★</a>
|
||||
<a href="https://www.cs.columbia.edu/~chen1ru/" target="_blank">★</a>
|
||||
<a href="https://maithraraghu.com" target="_blank">★</a>
|
||||
<a href="http://platanois.org" target="_blank">★</a>
|
||||
<a href="https://otiliastr.github.io" target="_blank">★</a>
|
||||
<a href="https://www.maths.dur.ac.uk/~sxwc62/" target="_blank">★</a>
|
||||
<a href="http://jessachandler.com/" target="_blank">★</a>
|
||||
<a href="https://mayankm96.github.io/" target="_blank">★</a>
|
||||
<a href="https://markdean.info/" target="_blank">★</a>
|
||||
<a href="https://kakodkar.github.io/" target="_blank">★</a>
|
||||
<a href="https://sahirbhatnagar.com/" target="_blank">★</a>
|
||||
<a href="https://spd.gr/" target="_blank">★</a>
|
||||
<a href="https://jay-sarkar.github.io/" target="_blank">★</a>
|
||||
<a href="https://aborowska.github.io/" target="_blank">★</a>
|
||||
<a href="https://aditisgh.github.io/" target="_blank">★</a>
|
||||
<a href="https://alexhaydock.co.uk/" target="_blank">★</a>
|
||||
<a href="https://alixkeener.net/" target="_blank">★</a>
|
||||
<a href="https://andreea7b.github.io/" target="_blank">★</a>
|
||||
<a href="https://rishabhjoshi.github.io/" target="_blank">★</a>
|
||||
<a href="https://sheelabhadra.github.io/" target="_blank">★</a>
|
||||
<a href="https://giograno.me/" target="_blank">★</a>
|
||||
<a href="https://immsrini.github.io/" target="_blank">★</a>
|
||||
<a href="https://apooladian.github.io/" target="_blank">★</a>
|
||||
<a href="https://chinmoy-dutta.github.io/" target="_blank">★</a>
|
||||
<a href="https://liamcli.com/" target="_blank">★</a>
|
||||
<a href="https://yoonholee.com/" target="_blank">★</a>
|
||||
<a href="https://zrqiao.github.io/" target="_blank">★</a>
|
||||
<a href="https://abstractgeek.github.io/" target="_blank">★</a>
|
||||
<a href="https://www.compphys.de/" target="_blank">★</a>
|
||||
<a href="https://julianstreyczek.github.io" target="_blank">★</a>
|
||||
<a href="https://sdaza.com" target="_blank">★</a>
|
||||
<a href="https://niweera.gq" target="_blank">★</a>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Labs</td>
|
||||
<td>
|
||||
<a href="https://www.haylab.caltech.edu/" target="_blank">★</a>
|
||||
<a href="https://sjkimlab.github.io/" target="_blank">★</a>
|
||||
<a href="https://systemconsultantgroup.github.io/scg-folio/" target="_blank">★</a>
|
||||
<a href="https://decisionlab.ucsf.edu/" target="_blank">★</a>
|
||||
<a href="https://programming-group.com/" target="_blank">★</a>
|
||||
<a href="https://sailing-lab.github.io/" target="_blank">★</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Courses</td>
|
||||
<td>
|
||||
CMU PGM (<a href="https://sailinglab.github.io/pgm-spring-2019/" target="_blank">S-19</a>) <br>
|
||||
CMU DeepRL (<a href="https://cmudeeprl.github.io/703website_f19/" target="_blank">F-19</a>, <a href="https://cmudeeprl.github.io/Spring202010403website/" target="_blank">S-20</a>, <a href="https://cmudeeprl.github.io/703website/" target="_blank">F-20</a>, <a href="https://cmudeeprl.github.io/403_website/"target="_blank">S-21</a>) <br>
|
||||
CMU MMML (<a href="https://cmu-multicomp-lab.github.io/mmml-course/fall2020/" target="_blank">F-20</a>) <br>
|
||||
CMU Distributed Systems (<a href="https://andrew.cmu.edu/course/15-440/" target="_blank">S-21</a>)
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Conferences & workshops</td>
|
||||
<td>
|
||||
ML Retrospectives (NeurIPS: <a href="https://ml-retrospectives.github.io/neurips2019/" target="_blank">2019</a>, <a href="https://ml-retrospectives.github.io/neurips2020/" target="_blank">2020</a>; ICML: <a href="https://ml-retrospectives.github.io/icml2020/" target="_blank">2020</a>) <br>
|
||||
HAMLETS (NeurIPS: <a href="https://hamlets-workshop.github.io/" target="_blank">2020</a>) <br>
|
||||
ICBINB (NeurIPS: <a href="https://i-cant-believe-its-not-better.github.io/" target="_blank">2020</a>, <a href="https://i-cant-believe-its-not-better.github.io/neurips2021/" target="_blank">2021</a>) <br>
|
||||
Neural Compression (ICLR: <a href="https://neuralcompression.github.io/" target="_blank">2021</a>)
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
## Best practices
|
||||
|
||||
[](https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Falshedivat.github.io%2Fal-folio%2F&tab=desktop)
|
||||
|
||||
|
||||
## Getting started
|
||||
|
||||
For more about how to use Jekyll, check out [this tutorial](https://www.taniarascia.com/make-a-static-website-with-jekyll/).
|
||||
Why Jekyll? Read [Andrej Karpathy's blog post](https://karpathy.github.io/2014/07/01/switching-to-jekyll/)!
|
||||
|
||||
|
||||
### Installation
|
||||
|
||||
#### Local setup
|
||||
|
||||
Assuming you have [Ruby](https://www.ruby-lang.org/en/downloads/) and [Bundler](https://bundler.io/) installed on your system (*hint: for ease of managing ruby gems, consider using [rbenv](https://github.com/rbenv/rbenv)*), first [fork](https://guides.github.com/activities/forking/) the theme from `github.com:alshedivat/al-folio` to `github.com:<your-username>/<your-repo-name>` and do the following:
|
||||
|
||||
```bash
|
||||
$ git clone git@github.com:<your-username>/<your-repo-name>.git
|
||||
$ cd <your-repo-name>
|
||||
$ bundle install
|
||||
$ bundle exec jekyll serve
|
||||
```
|
||||
|
||||
Now, feel free to customize the theme however you like (don't forget to change the name!).
|
||||
After you are done, **commit** your final changes.
|
||||
|
||||
#### Deployment
|
||||
|
||||
Deploying your website to [GitHub Pages](https://pages.github.com/) is the most popular option.
|
||||
Starting version [v0.3.5](https://github.com/alshedivat/al-folio/releases/tag/v0.3.5), **al-folio** will automatically re-deploy your webpage each time you push new changes to your repository! :sparkles:
|
||||
|
||||
**For personal and organization webpages:**
|
||||
1. Rename your repository to `<your-github-username>.github.io` or `<your-github-orgname>.github.io`.
|
||||
2. In `_config.yml`, set `url` to `https://<your-github-username>.github.io` and leave `baseurl` empty.
|
||||
3. Set up automatic deployment of your webpage (see instructions below).
|
||||
4. Make changes, commit, and push!
|
||||
5. After deployment, the webpage will become available at `<your-github-username>.github.io`.
|
||||
|
||||
**For project pages:**
|
||||
1. In `_config.yml`, set `url` to `https://<your-github-username>.github.io` and `baseurl` to `/<your-repository-name>/`.
|
||||
2. Set up automatic deployment of your webpage (see instructions below).
|
||||
3. Make changes, commit, and push!
|
||||
4. After deployment, the webpage will become available at `<your-github-username>.github.io/<your-repository-name>/`.
|
||||
|
||||
**To enable automatic deployment:**
|
||||
1. Click on **Actions** tab and **Enable GitHub Actions**; do not worry about creating any workflows as everything has already been set for you.
|
||||
2. Make any other changes to your webpage, commit, and push. This will automatically trigger the **Deploy** action.
|
||||
3. Wait for a few minutes and let the action complete. You can see the progress in the **Actions** tab. If completed successfully, in addition to the `master` branch, your repository should now have a newly built `gh-pages` branch.
|
||||
4. Finally, in the **Settings** of your repository, in the Pages section, set the branch to `gh-pages` (**NOT** to `master`). For more details, see [Configuring a publishing source for your GitHub Pages site](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#choosing-a-publishing-source).
|
||||
|
||||
|
||||
<details><summary>(click to expand) <strong>Manual deployment to GitHub Pages:</strong></summary>
|
||||
|
||||
If you need to manually re-deploy your website to GitHub pages, run the deploy script from the root directory of your repository:
|
||||
```bash
|
||||
$ ./bin/deploy
|
||||
```
|
||||
uses the `master` branch for the source code and deploys the webpage to `gh-pages`.
|
||||
|
||||
</details>
|
||||
|
||||
<details><summary>(click to expand) <strong>Deployment to another hosting server (non GitHub Pages):</strong></summary>
|
||||
|
||||
If you decide to not use GitHub Pages and host your page elsewhere, simply run:
|
||||
```bash
|
||||
$ bundle exec jekyll build
|
||||
```
|
||||
which will (re-)generate the static webpage in the `_site/` folder.
|
||||
Then simply copy the contents of the `_site/` foder to your hosting server.
|
||||
|
||||
**Note:** Make sure to correctly set the `url` and `baseurl` fields in `_config.yml` before building the webpage. If you are deploying your webpage to `your-domain.com/your-project/`, you must set `url: your-domain.com` and `baseurl: /your-project/`. If you are deploing directly to `your-domain.com`, leave `baseurl` blank.
|
||||
|
||||
</details>
|
||||
|
||||
<details><summary>(click to expand) <strong>Deployment to a separate repository (advanced users only):</strong></summary>
|
||||
|
||||
**Note:** Do not try using this method unless you know what you are doing (make sure you are familiar with [publishing sources](https://help.github.com/en/github/working-with-github-pages/about-github-pages#publishing-sources-for-github-pages-sites)). This approach allows to have the website's source code in one repository and the deployment version in a different repository.
|
||||
|
||||
Let's assume that your website's publishing source is a `publishing-source` sub-directory of a git-versioned repository cloned under `$HOME/repo/`.
|
||||
For a user site this could well be something like `$HOME/<user>.github.io`.
|
||||
|
||||
Firstly, from the deployment repo dir, checkout the git branch hosting your publishing source.
|
||||
|
||||
Then from the website sources dir (commonly your al-folio fork's clone):
|
||||
```bash
|
||||
$ bundle exec jekyll build --destination $HOME/repo/publishing-source
|
||||
```
|
||||
|
||||
This will instruct jekyll to deploy the website under `$HOME/repo/publishing-source`.
|
||||
|
||||
**Note:** Jekyll will clean `$HOME/repo/publishing-source` before building!
|
||||
|
||||
The quote below is taken directly from the [jekyll configuration docs](https://jekyllrb.com/docs/configuration/options/):
|
||||
|
||||
> Destination folders are cleaned on site builds
|
||||
>
|
||||
> The contents of `<destination>` are automatically cleaned, by default, when the site is built. Files or folders that are not created by your site will be removed. Some files could be retained by specifying them within the `<keep_files>` configuration directive.
|
||||
>
|
||||
> Do not use an important location for `<destination>`; instead, use it as a staging area and copy files from there to your web server.
|
||||
|
||||
If `$HOME/repo/publishing-source` contains files that you want jekyll to leave untouched, specify them under `keep_files` in `_config.yml`.
|
||||
In its default configuration, al-folio will copy the top-level `README.md` to the publishing source. If you want to change this behaviour, add `README.md` under `exclude` in `_config.yml`.
|
||||
|
||||
**Note:** Do _not_ run `jekyll clean` on your publishing source repo as this will result in the entire directory getting deleted, irrespective of the content of `keep_files` in `_config.yml`.
|
||||
|
||||
</details>
|
||||
|
||||
#### Upgrading from a previous version
|
||||
|
||||
If you installed **al-folio** as described above, you can upgrade to the latest version as follows:
|
||||
|
||||
```bash
|
||||
# Assuming the current directory is <your-repo-name>
|
||||
$ git remote add upstream https://github.com/alshedivat/al-folio.git
|
||||
$ git fetch upstream
|
||||
$ git rebase upstream/v0.3.5
|
||||
```
|
||||
|
||||
If you have extensively customized a previous version, it might be trickier to upgrade.
|
||||
You can still follow the steps above, but `git rebase` may result in merge conflicts that must be resolved.
|
||||
See [git rebase manual](https://help.github.com/en/github/using-git/about-git-rebase) and how to [resolve conflicts](https://help.github.com/en/github/using-git/resolving-merge-conflicts-after-a-git-rebase) for more information.
|
||||
If rebasing is too complicated, we recommend to re-install the new version of the theme from scratch and port over your content and changes from the previous version manually.
|
||||
|
||||
### FAQ
|
||||
|
||||
Here are some frequently asked questions.
|
||||
If you have a different question, please ask using [Discussions](https://github.com/alshedivat/al-folio/discussions/categories/q-a).
|
||||
|
||||
1. **Q:** After I fork and setup the repo, I get a deployment error.
|
||||
Isn't the website supposed to correctly deploy automatically? <br>
|
||||
**A:** Yes, if you are using release `v0.3.5` or later, the website will automatically and correctly re-deploy right after your first commit.
|
||||
Please make some changes (e.g., change your website info in `_config.yml`), commit, and push.
|
||||
Make sure to follow [deployment instructions](https://github.com/alshedivat/al-folio#deployment) in the previous section.
|
||||
(Relevant issue: [209](https://github.com/alshedivat/al-folio/issues/209#issuecomment-798849211).)
|
||||
|
||||
2. **Q:** I am using a custom domain (e.g., `foo.com`).
|
||||
My custom domain becomes blank in the repository settings after each deployment.
|
||||
How do I fix that? <br>
|
||||
**A:** You need to add `CNAME` file to the `master` or `source` branch of your repository.
|
||||
The file should contain your custom domain name.
|
||||
(Relevant issue: [130](https://github.com/alshedivat/al-folio/issues/130).)
|
||||
|
||||
3. **Q:** My webpage works locally.
|
||||
But after deploying, it is not displayed correctly (CSS and JS is not loaded properly).
|
||||
How do I fix that? <br>
|
||||
**A:** Make sure to correctly specify the `url` and `baseurl` paths in `_config.yml`.
|
||||
Set `url` to `https://<your-github-username>.github.io` or to `https://<your.custom.domain>` if you are using a custom domain.
|
||||
If you are deploying a personal or organization website, leave `baseurl` blank.
|
||||
If you are deploying a project page, set `baseurl: /<your-project-name>/`.
|
||||
|
||||
4. **Q:** Atom feed doesn't work. Why?
|
||||
<br>
|
||||
**A:** Make sure to correctly specify the `url` and `baseurl` paths in `_config.yml`.
|
||||
RSS Feed plugin works with these correctly set up fields: `title`, `url`, `description` and `author`.
|
||||
Make sure to fill them in an appropriate way and try again.
|
||||
|
||||
## Features
|
||||
|
||||
### Publications
|
||||
|
||||
Your publications page is generated automatically from your BibTex bibliography.
|
||||
Simply edit `_bibliography/papers.bib`.
|
||||
You can also add new `*.bib` files and customize the look of your publications however you like by editing `_pages/publications.md`.
|
||||
|
||||
<p align="center"><img src="https://raw.githubusercontent.com/alshedivat/al-folio/master/assets/img/publications-screenshot.png" width=800></p>
|
||||
|
||||
<details><summary>(click to expand) <strong>Author annotation:</strong></summary>
|
||||
|
||||
In publications, the author entry for yourself is identified by string `scholar:last_name` and string array `scholar:first_name` in `_config.yml`:
|
||||
```
|
||||
scholar:
|
||||
last_name: Einstein
|
||||
first_name: [Albert, A.]
|
||||
```
|
||||
If the entry matches the last name and one form of the first names, it will be underlined.
|
||||
Keep meta-information about your co-authors in `_data/coauthors.yml` and Jekyll will insert links to their webpages automatically.
|
||||
The coauthor data format in `_data/coauthors.yml` is as follows,
|
||||
```
|
||||
"Adams":
|
||||
- firstname: ["Edwin", "E.", "E. P.", "Edwin Plimpton"]
|
||||
url: https://en.wikipedia.org/wiki/Edwin_Plimpton_Adams
|
||||
|
||||
"Podolsky":
|
||||
- firstname: ["Boris", "B.", "B. Y.", "Boris Yakovlevich"]
|
||||
url: https://en.wikipedia.org/wiki/Boris_Podolsky
|
||||
|
||||
"Rosen":
|
||||
- firstname: ["Nathan", "N."]
|
||||
url: https://en.wikipedia.org/wiki/Nathan_Rosen
|
||||
|
||||
"Bach":
|
||||
- firstname: ["Johann Sebastian", "J. S."]
|
||||
url: https://en.wikipedia.org/wiki/Johann_Sebastian_Bach
|
||||
|
||||
- firstname: ["Carl Philipp Emanuel", "C. P. E."]
|
||||
url: https://en.wikipedia.org/wiki/Carl_Philipp_Emanuel_Bach
|
||||
```
|
||||
If the entry matches one of the combinations of the last names and the first names, it will be highlighted and linked to the url provided.
|
||||
|
||||
</details>
|
||||
|
||||
|
||||
### Collections
|
||||
|
||||
This Jekyll theme implements `collections` to let you break up your work into categories.
|
||||
The theme comes with two default collections: `news` and `projects`.
|
||||
Items from the `news` collection are automatically displayed on the home page.
|
||||
Items from the `projects` collection are displayed on a responsive grid on projects page.
|
||||
|
||||
<p align="center"><img src="https://raw.githubusercontent.com/alshedivat/al-folio/master/assets/img/projects-screenshot.png" width=700></p>
|
||||
|
||||
You can easily create your own collections, apps, short stories, courses, or whatever your creative work is.
|
||||
To do this, edit the collections in the `_config.yml` file, create a corresponding folder, and create a landing page for your collection, similar to `_pages/projects.md`.
|
||||
|
||||
|
||||
### Layouts
|
||||
|
||||
**al-folio** comes with stylish layouts for pages and blog posts.
|
||||
|
||||
#### The iconic style of Distill
|
||||
|
||||
The theme allows you to create blog posts in the [distill.pub](https://distill.pub/) style:
|
||||
|
||||
<p align="center"><a href="https://alshedivat.github.io/al-folio/blog/2018/distill/" target="_blank"><img src="https://raw.githubusercontent.com/alshedivat/al-folio/master/assets/img/distill-screenshot.png" width=700></a></p>
|
||||
|
||||
For more details on how to create distill-styled posts using `<d-*>` tags, please refer to [the example](https://alshedivat.github.io/al-folio/blog/2018/distill/).
|
||||
|
||||
#### Full support for math & code
|
||||
|
||||
**al-folio** supports fast math typesetting through [KaTeX](https://katex.org/) and code syntax highlighting using [GitHub style](https://github.com/jwarby/jekyll-pygments-themes):
|
||||
|
||||
<p align="center">
|
||||
<a href="https://alshedivat.github.io/al-folio/blog/2015/math/" target="_blank"><img src="https://raw.githubusercontent.com/alshedivat/al-folio/master/assets/img/math-screenshot.png" width=400></a>
|
||||
<a href="https://alshedivat.github.io/al-folio/blog/2015/code/" target="_blank"><img src="https://raw.githubusercontent.com/alshedivat/al-folio/master/assets/img/code-screenshot.png" width=400></a>
|
||||
</p>
|
||||
|
||||
#### Photos
|
||||
|
||||
Photo formatting is made simple using [Bootstrap's grid system](https://getbootstrap.com/docs/4.4/layout/grid/).
|
||||
Easily create beautiful grids within your blog posts and project pages:
|
||||
|
||||
<p align="center">
|
||||
<a href="https://alshedivat.github.io/al-folio/projects/1_project/">
|
||||
<img src="assets/img/photos-screenshot.png" width="75%">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
||||
### Other features
|
||||
|
||||
#### Theming
|
||||
Six beautiful theme colors have been selected to choose from.
|
||||
The default is purple, but you can quickly change it by editing `$theme-color` variable in the `_sass/_themes.scss` file.
|
||||
Other color variables are listed there as well.
|
||||
|
||||
#### Social media previews
|
||||
**al-folio** supports preview images on social media.
|
||||
To enable this functionality you will need to set `serve_og_meta` to `true` in your `_config.yml`.
|
||||
Once you have done so, all your site's pages will include Open Graph data in the HTML head element.
|
||||
|
||||
You will then need to configure what image to display in your site's social media previews.
|
||||
This can be configured on a per-page basis, by setting the `og_image` page variable.
|
||||
If for an individual page this variable is not set, then the theme will fall back to a site-wide `og_image` variable, configurable in your `_config.yml`.
|
||||
In both the page-specific and site-wide cases, the `og_image` variable needs to hold the URL for the image you wish to display in social media previews.
|
||||
|
||||
#### Atom (RSS-like) Feed
|
||||
It generates an Atom (RSS-like) feed of your posts, useful for Atom and RSS readers.
|
||||
The feed is reachable simply by typing after your homepage `/feed.xml`.
|
||||
E.g. assuming your website mountpoint is the main folder, you can type `yourusername.github.io/feed.xml`
|
||||
|
||||
## Contributing
|
||||
|
||||
Contributions to al-folio are very welcome!
|
||||
Before you get started, please take a look at [the guidelines](CONTRIBUTING.md).
|
||||
|
||||
If you would like to improve documentation, add your webpage to the list below, or fix a minor inconsistency or bug, please feel free to send a PR directly to `master`.
|
||||
For more complex issues/bugs or feature requests, please open an issue using the appropriate template.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
||||
|
||||
Originally, **al-folio** was based on the [\*folio theme](https://github.com/bogoli/-folio) (published by [Lia Bogoev](http://liabogoev.com) and under the MIT license).
|
||||
Since then, it got a full re-write of the styles and many additional cool features.
|
|
@ -0,0 +1,72 @@
|
|||
---
|
||||
---
|
||||
|
||||
@string{aps = {American Physical Society,}}
|
||||
|
||||
@book{einstein1956investigations,
|
||||
bibtex_show={true},
|
||||
title={Investigations on the Theory of the Brownian Movement},
|
||||
author={Einstein, Albert},
|
||||
year={1956},
|
||||
publisher={Courier Corporation,}
|
||||
}
|
||||
|
||||
@article{einstein1950meaning,
|
||||
abbr={AJP},
|
||||
bibtex_show={true},
|
||||
title={The meaning of relativity},
|
||||
author={Einstein, Albert and Taub, AH},
|
||||
journal={American Journal of Physics,},
|
||||
volume={18},
|
||||
number={6},
|
||||
pages={403--404},
|
||||
year={1950},
|
||||
publisher={American Association of Physics Teachers,}
|
||||
}
|
||||
|
||||
@article{PhysRev.47.777,
|
||||
abbr={PhysRev},
|
||||
title={Can Quantum-Mechanical Description of Physical Reality Be Considered Complete?},
|
||||
author={Einstein, A. and Podolsky, B. and Rosen, N.},
|
||||
abstract={In a complete theory there is an element corresponding to each element of reality. A sufficient condition for the reality of a physical quantity is the possibility of predicting it with certainty, without disturbing the system. In quantum mechanics in the case of two physical quantities described by non-commuting operators, the knowledge of one precludes the knowledge of the other. Then either (1) the description of reality given by the wave function in quantum mechanics is not complete or (2) these two quantities cannot have simultaneous reality. Consideration of the problem of making predictions concerning a system on the basis of measurements made on another system that had previously interacted with it leads to the result that if (1) is false then (2) is also false. One is thus led to conclude that the description of reality as given by a wave function is not complete.},
|
||||
journal={Phys. Rev.,},
|
||||
volume={47},
|
||||
issue={10},
|
||||
pages={777--780},
|
||||
numpages={0},
|
||||
year={1935},
|
||||
month={May},
|
||||
publisher=aps,
|
||||
doi={10.1103/PhysRev.47.777},
|
||||
url={http://link.aps.org/doi/10.1103/PhysRev.47.777},
|
||||
html={https://journals.aps.org/pr/abstract/10.1103/PhysRev.47.777},
|
||||
pdf={example_pdf.pdf},
|
||||
selected={true}
|
||||
}
|
||||
|
||||
@article{einstein1905molekularkinetischen,
|
||||
title={{\"U}ber die von der molekularkinetischen Theorie der W{\"a}rme geforderte Bewegung von in ruhenden Fl{\"u}ssigkeiten suspendierten Teilchen},
|
||||
author={Einstein, A.},
|
||||
journal={Annalen der physik,},
|
||||
volume={322},
|
||||
number={8},
|
||||
pages={549--560},
|
||||
year={1905},
|
||||
publisher={Wiley Online Library}
|
||||
}
|
||||
|
||||
@article{einstein1905movement,
|
||||
abbr={Ann. Phys.},
|
||||
title={Un the movement of small particles suspended in statiunary liquids required by the molecular-kinetic theory 0f heat},
|
||||
author={Einstein, A.},
|
||||
journal={Ann. Phys.,},
|
||||
volume={17},
|
||||
pages={549--560},
|
||||
year={1905}
|
||||
}
|
||||
|
||||
@article{einstein1905electrodynamics,
|
||||
title={On the electrodynamics of moving bodies},
|
||||
author={Einstein, A.},
|
||||
year={1905}
|
||||
}
|
|
@ -0,0 +1,312 @@
|
|||
# -----------------------------------------------------------------------------
|
||||
# Site settings
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
title: blank # the website title (if blank, full name will be used instead)
|
||||
first_name: You
|
||||
middle_name: R.
|
||||
last_name: Name
|
||||
email: you@example.com
|
||||
description: > # the ">" symbol means to ignore newlines until "footer_text:"
|
||||
A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.
|
||||
footer_text: >
|
||||
Powered by <a href="http://jekyllrb.com/" target="_blank">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio">al-folio</a> theme.
|
||||
Hosted by <a href="https://pages.github.com/" target="_blank">GitHub Pages</a>.
|
||||
Photos from <a href="https://unsplash.com" target="_blank">Unsplash</a>.
|
||||
keywords: jekyll, jekyll-theme, academic-website, portfolio-website # add your own keywords or leave empty
|
||||
|
||||
lang: en # the language of your site (for example: en, fr, cn, ru, etc.)
|
||||
icon: 🔥 # the emoji used as the favicon
|
||||
url: https://alshedivat.github.io # the base hostname & protocol for your site
|
||||
baseurl: /al-folio # the subpath of your site, e.g. /blog/
|
||||
last_updated: false # set to true if you want to display last updated in the footer
|
||||
impressum_path: # set to path to include impressum link in the footer, use the same path as permalink in a page, helps to conform with EU GDPR
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# RSS Feed
|
||||
# -----------------------------------------------------------------------------
|
||||
# will use title and url fields
|
||||
# Take a look to https://github.com/jekyll/jekyll-feed for more customization
|
||||
|
||||
rss_icon: true
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Layout
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
navbar_fixed: true
|
||||
footer_fixed: true
|
||||
|
||||
# Dimensions
|
||||
max_width: 800px
|
||||
|
||||
# TODO: add layout settings (single page vs. multi-page)
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Open Graph & Schema.org
|
||||
# -----------------------------------------------------------------------------
|
||||
# Display links to the page with a preview object on social media.
|
||||
serve_og_meta: false # Include Open Graph meta tags in the HTML head
|
||||
serve_schema_org: false # Include Schema.org in the HTML head
|
||||
og_image: # The site-wide (default for all links) Open Graph preview image
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Social integration
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
github_username: # your GitHub user name
|
||||
gitlab_username: # your GitLab user name
|
||||
twitter_username: # your Twitter handle
|
||||
linkedin_username: # your LinkedIn user name
|
||||
scholar_userid: # your Google Scholar ID
|
||||
orcid_id: # your ORCID ID
|
||||
medium_username: # your Medium username
|
||||
quora_username: # your Quora username
|
||||
publons_id: # your ID on Publons
|
||||
research_gate_profile: # your profile on ResearchGate
|
||||
blogger_url: # your blogger URL
|
||||
work_url: # work page URL
|
||||
keybase_username: # your keybase user name
|
||||
wikidata_id: # your wikidata id
|
||||
dblp_url: # your DBLP profile url
|
||||
stackoverflow_id: #your stackoverflow id
|
||||
|
||||
contact_note: >
|
||||
You can even add a little note about which of these is the best way to reach you.
|
||||
|
||||
google_analytics: # your google-analytics ID (format: UA-XXXXXXXXX)
|
||||
google_site_verification: # your google-site-verification ID (Google Search Console)
|
||||
bing_site_verification: # out your bing-site-verification ID (Bing Webmaster)
|
||||
panelbear_analytics: # panelbear analytics site ID (format: XXXXXXXXX)
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Blog
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
blog_name: al-folio # your blog must have a name for it to show up in the nav bar
|
||||
blog_description: a simple whitespace theme for academics
|
||||
permalink: /blog/:year/:title/
|
||||
|
||||
# Pagination
|
||||
pagination:
|
||||
enabled: true
|
||||
|
||||
# Comments
|
||||
disqus_shortname: al-folio # put your disqus shortname
|
||||
# https://help.disqus.com/en/articles/1717111-what-s-a-shortname
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Collections
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
collections:
|
||||
news:
|
||||
defaults:
|
||||
layout: post
|
||||
output: true
|
||||
permalink: /news/:path/
|
||||
projects:
|
||||
output: true
|
||||
permalink: /projects/:path/
|
||||
|
||||
news_limit: 5
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Jekyll settings
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
# Markdown and syntax highlight
|
||||
markdown: kramdown
|
||||
highlighter: rouge
|
||||
highlight_theme: github # https://github.com/jwarby/jekyll-pygments-themes
|
||||
kramdown:
|
||||
input: GFM
|
||||
syntax_highlighter_opts:
|
||||
css_class: 'highlight'
|
||||
span:
|
||||
line_numbers: false
|
||||
block:
|
||||
line_numbers: false
|
||||
start_line: 1
|
||||
|
||||
# Includes & excludes
|
||||
include: ['_pages']
|
||||
exclude:
|
||||
- bin
|
||||
- Gemfile
|
||||
- Gemfile.lock
|
||||
- vendor
|
||||
keep_files:
|
||||
- CNAME
|
||||
- .nojekyll
|
||||
- .git
|
||||
|
||||
# Plug-ins
|
||||
plugins:
|
||||
- jekyll-archives
|
||||
- jekyll-diagrams
|
||||
- jekyll-email-protect
|
||||
- jekyll-feed
|
||||
- jekyll-github-metadata
|
||||
- jekyll-imagemagick
|
||||
- jekyll-paginate-v2
|
||||
- jekyll/scholar
|
||||
- jekyll-sitemap
|
||||
- jekyll-target-blank
|
||||
- jekyll-twitter-plugin
|
||||
- jemoji
|
||||
|
||||
# Sitemap settings
|
||||
defaults:
|
||||
- scope:
|
||||
path: "assets/**/*.*"
|
||||
values:
|
||||
sitemap: false
|
||||
# Extras
|
||||
github: [metadata]
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Jekyll optimization
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
# HTML remove comments (<!-- .... -->)
|
||||
remove_HTML_comments: false
|
||||
|
||||
# HTML beautifier (_plugins/beautify.rb) / https://github.com/threedaymonk/htmlbeautifier
|
||||
beautify: false # This function has conflict with the code snippets, they can be displayed incorrectly
|
||||
|
||||
# HTML minify (_plugins/minify.rb) Thanks to: https://www.ffbit.com/blog/2021/03/17/html-minification-in-jekyll.html
|
||||
minify: false
|
||||
|
||||
# CSS/SASS minify
|
||||
sass:
|
||||
style: compressed
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Jekyll Archives
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
jekyll-archives:
|
||||
enabled: [year, tags, categories] # enables year, tag and category archives (remove if you need to disable one of them).
|
||||
layouts:
|
||||
year: archive-year
|
||||
tag: archive-tag
|
||||
category: archive-category
|
||||
permalinks:
|
||||
year: '/blog/:year/'
|
||||
tag: '/blog/tag/:name/'
|
||||
category: '/blog/category/:name/'
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Jekyll Scholar
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
scholar:
|
||||
|
||||
last_name: Einstein
|
||||
first_name: [Albert, A.]
|
||||
|
||||
style: apa
|
||||
locale: en
|
||||
|
||||
source: /_bibliography/
|
||||
bibliography: papers.bib
|
||||
bibliography_template: bib
|
||||
# Note: if you have latex math in your bibtex, the latex filter
|
||||
# preprocessing may conflict with MathJAX if the latter is enabled.
|
||||
# See https://github.com/alshedivat/al-folio/issues/357.
|
||||
bibtex_filters: [latex, smallcaps, superscript]
|
||||
|
||||
replace_strings: true
|
||||
join_strings: true
|
||||
|
||||
details_dir: bibliography
|
||||
details_layout: bibtex.html
|
||||
details_link: Details
|
||||
|
||||
query: "@*"
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Responsive WebP Images
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
imagemagick:
|
||||
enabled: true
|
||||
widths:
|
||||
- 480
|
||||
- 800
|
||||
- 1400
|
||||
input_directories:
|
||||
- assets/img/
|
||||
input_formats:
|
||||
- ".jpg"
|
||||
- ".jpeg"
|
||||
- ".png"
|
||||
- ".tiff"
|
||||
output_formats:
|
||||
webp: "-quality 75%"
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Jekyll Diagrams
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
jekyll-diagrams:
|
||||
# configuration, see https://github.com/zhustec/jekyll-diagrams.
|
||||
# feel free to comment out this section if not using jekyll diagrams.
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Optional Features
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
enable_google_analytics: false # enables google analytics
|
||||
enable_panelbear_analytics: false # enables panelbear analytics
|
||||
enable_google_verification: false # enables google site verification
|
||||
enable_bing_verification: false # enables bing site verification
|
||||
enable_masonry: true # enables automatic project cards arangement
|
||||
enable_math: true # enables math typesetting (uses MathJax)
|
||||
enable_tooltips: false # enables automatic tooltip links generated
|
||||
# for each section titles on pages and posts
|
||||
enable_darkmode: true # enables switching between light/dark modes
|
||||
enable_navbar_social: false # enables displaying social links in the
|
||||
# navbar on the about page
|
||||
enable_project_categories: true # enables categorization of projects into
|
||||
# multiple categories
|
||||
enable_medium_zoom: true # enables image zoom feature (as on medium.com)
|
||||
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Library versions
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
academicons:
|
||||
version: "1.9.1"
|
||||
integrity: "sha256-i1+4qU2G2860dGGIOJscdC30s9beBXjFfzjWLjBRsBg="
|
||||
bootstrap:
|
||||
version: "4.6.1"
|
||||
integrity:
|
||||
css: "sha256-DF7Zhf293AJxJNTmh5zhoYYIMs2oXitRfBjY+9L//AY="
|
||||
js: "sha256-SyTu6CwrfOhaznYZPoolVw2rxoY7lKYKQvqbtqN93HI="
|
||||
fontawesome:
|
||||
version: "5.15.4"
|
||||
integrity: "sha256-mUZM63G8m73Mcidfrv5E+Y61y7a12O5mW4ezU3bxqW4="
|
||||
jquery:
|
||||
version: "3.6.0"
|
||||
integrity: "sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
|
||||
mathjax:
|
||||
version: "3.2.0"
|
||||
masonry:
|
||||
version: "4.2.2"
|
||||
integrity: "sha256-Nn1q/fx0H7SNLZMQ5Hw5JLaTRZp0yILA/FRexe19VdI="
|
||||
mdb:
|
||||
version: "4.20.0"
|
||||
integrity:
|
||||
css: "sha256-jpjYvU3G3N6nrrBwXJoVEYI/0zw8htfFnhT9ljN3JJw="
|
||||
js: "sha256-NdbiivsvWt7VYCt6hYNT3h/th9vSTL4EDWeGs5SN3DA="
|
||||
popper:
|
||||
version: "2.11.2"
|
||||
integrity: "sha256-l/1pMF/+J4TThfgARS6KwWrk/egwuVvhRzfLAMQ6Ds4="
|
||||
medium_zoom:
|
||||
version: "1.0.6"
|
||||
integrity: "sha256-EdPgYcPk/IIrw7FYeuJQexva49pVRZNmt3LculEr7zM="
|
|
@ -0,0 +1,18 @@
|
|||
"Adams":
|
||||
- firstname: ["Edwin", "E.", "E. P.", "Edwin Plimpton"]
|
||||
url: https://en.wikipedia.org/wiki/Edwin_Plimpton_Adams
|
||||
|
||||
"Podolsky":
|
||||
- firstname: ["Boris", "B.", "B. Y.", "Boris Yakovlevich"]
|
||||
url: https://en.wikipedia.org/wiki/Boris_Podolsky
|
||||
|
||||
"Rosen":
|
||||
- firstname: ["Nathan", "N."]
|
||||
url: https://en.wikipedia.org/wiki/Nathan_Rosen
|
||||
|
||||
"Bach":
|
||||
- firstname: ["Johann Sebastian", "J. S."]
|
||||
url: https://en.wikipedia.org/wiki/Johann_Sebastian_Bach
|
||||
|
||||
- firstname: ["Carl Philipp Emanuel", "C. P. E."]
|
||||
url: https://en.wikipedia.org/wiki/Carl_Philipp_Emanuel_Bach
|
|
@ -0,0 +1,17 @@
|
|||
{%- assign path = include.path | remove: ".jpg" | remove: ".jpeg" | remove: ".png" | remove: ".tiff" -%}
|
||||
|
||||
<figure>
|
||||
|
||||
<picture>
|
||||
{% for i in site.imagemagick.widths -%}
|
||||
<source media="(max-width: {{ i }}px)" srcset="{{ path | relative_url }}-{{ i }}.webp" />
|
||||
{% endfor -%}
|
||||
|
||||
<!-- Fallback to the original file -->
|
||||
<img {% if include.class %}class="{{ include.class }}"{% endif %} src="{{ include.path | relative_url }}" {% if include.alt %}alt="{{ include.alt }}"{% endif %} {% if include.title %}title="{{ include.title }}"{% endif %} {% if include.zoomable %}data-zoomable{% endif %} />
|
||||
|
||||
</picture>
|
||||
|
||||
{%- if include.caption -%}<figcaption class="caption">{{ include.caption }}</figcaption>{%- endif %}
|
||||
|
||||
</figure>
|
|
@ -0,0 +1,25 @@
|
|||
{% if site.footer_fixed %}
|
||||
<footer class="fixed-bottom">
|
||||
<div class="container mt-0">
|
||||
© Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}. {{ site.footer_text }}
|
||||
{%- if site.impressum_path -%}
|
||||
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>.
|
||||
{%- endif -%}
|
||||
{%- if site.last_updated -%}
|
||||
Last updated: {{ "now" | date: '%B %d, %Y' }}.
|
||||
{%- endif %}
|
||||
</div>
|
||||
</footer>
|
||||
{%- else -%}
|
||||
<footer class="sticky-bottom mt-5">
|
||||
<div class="container">
|
||||
© Copyright {{ site.time | date: '%Y' }} {{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}. {{ site.footer_text }}
|
||||
{%- if site.impressum_path -%}
|
||||
<a href="{{ site.url }}{{ site.baseurl }}{{ site.impressum_path }}">Impressum</a>.
|
||||
{%- endif -%}
|
||||
{%- if site.last_updated -%}
|
||||
Last updated: {{ "now" | date: '%B %d, %Y' }}.
|
||||
{%- endif %}
|
||||
</div>
|
||||
</footer>
|
||||
{%- endif %}
|
|
@ -0,0 +1,29 @@
|
|||
|
||||
<!-- Metadata, OpenGraph and Schema.org -->
|
||||
{% include metadata.html %}
|
||||
|
||||
<!-- Bootstrap & MDB -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@{{ site.bootstrap.version }}/dist/css/bootstrap.min.css" rel="stylesheet" integrity="{{ site.bootstrap.integrity.css }}" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/mdbootstrap@{{ site.mdb.version }}/css/mdb.min.css" integrity="{{ site.mdb.integrity.css }}" crossorigin="anonymous" />
|
||||
|
||||
<!-- Fonts & Icons -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@{{ site.fontawesome.version }}/css/all.min.css" integrity="{{ site.fontawesome.integrity }}" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/academicons@{{ site.academicons.version }}/css/academicons.min.css" integrity="{{ site.academicons.integrity }}" crossorigin="anonymous">
|
||||
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:100,300,400,500,700|Material+Icons">
|
||||
|
||||
<!-- Code Syntax Highlighting -->
|
||||
<link rel="stylesheet" href="https://gitcdn.link/repo/jwarby/jekyll-pygments-themes/master/{{ site.highlight_theme }}.css" />
|
||||
|
||||
<!-- Styles -->
|
||||
{% if site.icon != empty -%}
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>{{ site.icon }}</text></svg>">
|
||||
{%- endif %}
|
||||
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
||||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
||||
|
||||
{%- if site.enable_darkmode %}
|
||||
|
||||
<!-- Dark Mode -->
|
||||
<script src="{{ '/assets/js/theme.js' | relative_url }}"></script>
|
||||
<script src="{{ '/assets/js/dark_mode.js' | relative_url }}"></script>
|
||||
{%- endif -%}
|
|
@ -0,0 +1,93 @@
|
|||
|
||||
<header>
|
||||
|
||||
<!-- Nav Bar -->
|
||||
<nav id="navbar" class="navbar navbar-light navbar-expand-sm {% if site.navbar_fixed %}fixed-top{% else %}sticky-top{% endif %}">
|
||||
<div class="container">
|
||||
{% if page.title != "about" -%}
|
||||
<a class="navbar-brand title font-weight-lighter" href="{{ site.baseurl | prepend: site.url }}/">
|
||||
{%- if site.title == "blank" -%}<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }} {{ site.last_name }}{%- else -%}{{ site.title }}{%- endif -%}
|
||||
</a>
|
||||
{%- elsif site.enable_navbar_social -%}
|
||||
<!-- Social Icons -->
|
||||
<div class="navbar-brand social">
|
||||
{% include social.html %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<!-- Navbar Toggle -->
|
||||
<button class="navbar-toggler collapsed ml-auto" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar top-bar"></span>
|
||||
<span class="icon-bar middle-bar"></span>
|
||||
<span class="icon-bar bottom-bar"></span>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse text-right" id="navbarNav">
|
||||
<ul class="navbar-nav ml-auto flex-nowrap">
|
||||
|
||||
<!-- About -->
|
||||
<li class="nav-item {% if page.title == 'about' %}active{% endif %}">
|
||||
<a class="nav-link" href="{{ '/' | relative_url }}">about
|
||||
{%- if page.title == "about" -%}
|
||||
<span class="sr-only">(current)</span>
|
||||
{%- endif -%}
|
||||
</a>
|
||||
</li>
|
||||
{% if site.blog_name %}
|
||||
<!-- Blog -->
|
||||
<li class="nav-item {% if page.url contains 'blog' %}active{% endif %}">
|
||||
<a class="nav-link" href="{{ '/blog/' | relative_url }}">blog
|
||||
{%- if page.title == "blog" -%}
|
||||
<span class="sr-only">(current)</span>
|
||||
{%- endif -%}
|
||||
</a>
|
||||
</li>
|
||||
{%- endif %}
|
||||
|
||||
<!-- Other pages -->
|
||||
{%- assign sorted_pages = site.pages | sort: "title" -%}
|
||||
{%- for p in sorted_pages -%}
|
||||
{%- if p.nav and p.autogen == nil -%}
|
||||
{%- if p.dropdown %}
|
||||
<li class="nav-item dropdown {% if page.title == p.title %}active{% endif %}">
|
||||
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{{ p.title }}
|
||||
{%- if page.title == p.title -%}
|
||||
<span class="sr-only">(current)</span>
|
||||
{%- endif -%}
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
|
||||
{%- for child in p.children -%}
|
||||
{%- if child.title == 'divider' %}
|
||||
<div class="dropdown-divider"></div>
|
||||
{%- else %}
|
||||
<a class="dropdown-item" href="{{ child.permalink | relative_url }}">{{ child.title }}</a>
|
||||
{%- endif -%}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</li>
|
||||
{%- else %}
|
||||
<li class="nav-item {% if page.title == p.title %}active{% endif %}">
|
||||
<a class="nav-link" href="{{ p.url | relative_url }}">{{ p.title }}
|
||||
{%- if page.title == p.title -%}
|
||||
<span class="sr-only">(current)</span>
|
||||
{%- endif -%}
|
||||
</a>
|
||||
</li>
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
{% endfor -%}
|
||||
{%- if site.enable_darkmode %}
|
||||
|
||||
<!-- Toogle theme mode -->
|
||||
<div class = "toggle-container">
|
||||
<a id = "light-toggle">
|
||||
<i class="fas fa-moon"></i>
|
||||
<i class="fas fa-sun"></i>
|
||||
</a>
|
||||
</div>
|
||||
{%- endif %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
|
@ -0,0 +1,64 @@
|
|||
<!-- Load Core and Bootstrap JS -->
|
||||
<script src="https://code.jquery.com/jquery-{{ site.jquery.version }}.slim.min.js" integrity="{{ site.jquery.integrity }}" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/{{ site.popper.version }}/umd/popper.min.js" integrity="{{ site.popper.integrity }}" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/{{ site.bootstrap.version }}/js/bootstrap.min.js" integrity="{{ site.bootstrap.integrity.js }}" crossorigin="anonymous"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/{{ site.mdb.version }}/js/mdb.min.js" integrity="{{ site.mdb.integrity.js }}" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- Load Common JS -->
|
||||
<script src="{{ '/assets/js/common.js' | relative_url }}"></script>
|
||||
|
||||
<!-- Code Syntax Highlighting -->
|
||||
<link rel="stylesheet" href="https://gitcdn.link/repo/jwarby/jekyll-pygments-themes/master/{{ site.highlight_theme }}.css" />
|
||||
|
||||
{% if site.enable_katex %}
|
||||
<!-- Load KaTeX -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/{{ site.katex.version }}/katex.min.css" integrity="{{ site.katex.integrity.css }}" crossorigin="anonymous" />
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/{{ site.katex.version }}/katex.min.js" integrity="{{ site.katex.integrity.js }}" crossorigin="anonymous"></script>
|
||||
<script src="{{ '/assets/js/katex.js' | relative_url }}"></script>
|
||||
{% endif %}
|
||||
|
||||
{% if site.enable_mansory %}
|
||||
<!-- Load Mansory & imagesLoaded -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/masonry/{{ site.mansory.version }}/masonry.pkgd.min.js" integrity="{{ site.masonry.integrity }}" crossorigin="anonymous"></script>
|
||||
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
|
||||
|
||||
<!-- Project Cards Layout -->
|
||||
<script type="text/javascript">
|
||||
// Init Masonry
|
||||
var $grid = $('.grid').masonry({
|
||||
gutter: 10,
|
||||
horizontalOrder: true,
|
||||
itemSelector: '.grid-item',
|
||||
});
|
||||
// layout Masonry after each image loads
|
||||
$grid.imagesLoaded().progress( function() {
|
||||
$grid.masonry('layout');
|
||||
});
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{% if site.enable_tooltips %}
|
||||
<!-- Enable Tooltips -->
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
$('[data-toggle="tooltip"]').tooltip()
|
||||
})
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
<!-- Include custom icon fonts -->
|
||||
<link rel="stylesheet" href="{{ '/assets/css/fontawesome-all.min.css' | prepend: site.baseurl | prepend: site.url }}">
|
||||
<link rel="stylesheet" href="{{ '/assets/css/academicons.min.css' | prepend: site.baseurl | prepend: site.url }}">
|
||||
|
||||
{% if site.google_analytics %}
|
||||
<!-- Google Analytics -->
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', '{{ site.google_analytics }}', 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
{% endif %}
|
|
@ -0,0 +1,154 @@
|
|||
{% if site.enable_google_verification or site.enable_bing_verification %}
|
||||
<!-- Website verification -->
|
||||
{% if site.enable_google_verification -%}
|
||||
<meta name="google-site-verification" content="{{ site.google_site_verification }}" />
|
||||
{%- endif -%}
|
||||
{% if site.enable_bing_verification -%}
|
||||
<meta name="msvalidate.01" content="{{ site.bing_site_verification }}" />
|
||||
{%- endif -%}
|
||||
{%- endif %}
|
||||
|
||||
<!-- Standard metadata -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>
|
||||
{%- if site.title == "blank" -%}
|
||||
{%- capture title -%}{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}{%- endcapture -%}
|
||||
{%- else -%}
|
||||
{%- capture title -%}{{ site.title }}{%- endcapture -%}
|
||||
{%- endif -%}
|
||||
{%- if page.title != "blank" and page.url != "/" -%}
|
||||
{{ title }} | {{ page.title }}
|
||||
{%- else -%}
|
||||
{{ title }}
|
||||
{%- endif -%}
|
||||
</title>
|
||||
<meta name="author" content="{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}" />
|
||||
<meta name="description" content="{%- if page.description -%}{{ page.description }}{%- else -%}{{ site.description }}{%- endif -%}" />
|
||||
{%- if page.keywords or site.keywords %}
|
||||
<meta name="keywords" content="{%- if page.keywords -%}{{ page.keywords }}{%- else -%}{{ site.keywords }}{%- endif -%}" />
|
||||
{%- endif %}
|
||||
|
||||
{%- if site.serve_og_meta %}
|
||||
|
||||
<!-- OpenGraph -->
|
||||
<meta property="og:site_name" content="{{ site.title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="{%- if page.title -%}{{ site.title }} | {{ page.title }}{%- else -%}{{ site.title }}{%- endif -%}" />
|
||||
<meta property="og:url" content="{{ page.url | prepend: site.baseurl | prepend: site.url | remove_first: 'index.html' }}" />
|
||||
<meta property="og:description" content="{%- if page.description -%}{{ page.description }}{%- else -%}{{ site.description }}{%- endif -%}" />
|
||||
{% if page.og_image or site.og_image -%}
|
||||
<meta property="og:image" content="{%- if page.og_image -%}{{ page.og_image }}{%- else -%}{{ site.og_image }}{%- endif -%}" />
|
||||
{%- endif %}
|
||||
<meta property="og:locale" content="{{ site.lang }}" />
|
||||
|
||||
<!-- Twitter card -->
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:title" content="{%- if page.title -%}{{ page.title }}{%- else -%}{{ site.title }}{%- endif -%}" />
|
||||
<meta name="twitter:description" content="{%- if page.description -%}{{ page.description }}{%- else -%}{{ site.description }}{%- endif -%}" />
|
||||
{% if page.og_image or site.og_image -%}
|
||||
<meta name="twitter:image" content="{%- if page.og_image -%}{{ page.og_image }}{%- else -%}{{ site.og_image }}{%- endif -%}" />
|
||||
{%- endif %}
|
||||
{% if site.twitter_username -%}
|
||||
<meta name="twitter:site" content="@{{ site.twitter_username }}" />
|
||||
<meta name="twitter:creator" content="@{{ site.twitter_username }}" />
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
|
||||
{%- if site.serve_schema_org %}
|
||||
|
||||
<!-- Schema.org -->
|
||||
{%- comment -%} Social links generator for "sameAs schema" {%- endcomment %}
|
||||
{% assign sameaslinks = "" | split: "," %}
|
||||
{%- if site.orcid_id -%}
|
||||
{%- capture link -%}https://orcid.org/{{ site.orcid_id }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.scholar_userid -%}
|
||||
{%- capture link -%}https://scholar.google.com/citations?user={{ site.scholar_userid }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.publons_id -%}
|
||||
{%- capture link -%}https://publons.com/a/{{ site.publons_id }}/{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.research_gate_profile -%}
|
||||
{%- capture link -%}https://www.researchgate.net/profile/{{site.research_gate_profile}}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.github_username -%}
|
||||
{%- capture link -%}https://github.com/{{ site.github_username }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.linkedin_username -%}
|
||||
{%- capture link -%}https://www.linkedin.com/in/{{ site.linkedin_username }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.twitter_username -%}
|
||||
{%- capture link -%}https://twitter.com/{{ site.twitter_username }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.medium_username -%}
|
||||
{%- capture link -%}https://medium.com/@{{ site.medium_username }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.quora_username -%}
|
||||
{%- capture link -%}https://www.quora.com/profile/{{ site.quora_username }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.blogger_url -%}
|
||||
{%- capture link -%}{{ site.blogger_url }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.work_url -%}
|
||||
{%- capture link -%}{{ site.work_url }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.wikidata_id -%}
|
||||
{%- capture link -%}https://www.wikidata.org/wiki/{{ site.wikidata_id }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.strava_userid -%}
|
||||
{%- capture link -%}https://www.strava.com/athletes/{{ site.strava_userid }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.keybase_username -%}
|
||||
{%- capture link -%}https://keybase.io/{{ site.keybase_username }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.gitlab_username -%}
|
||||
{%- capture link -%}https://gitlab.com/{{ site.gitlab_username }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.dblp_url -%}
|
||||
{%- capture link -%}{{ site.dblp_url }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.stackoverflow_id -%}
|
||||
{%- capture link -%}https://stackoverflow.com/users/{{ site.stackoverflow_id }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if sameaslinks != blank -%}
|
||||
{%- assign sameaslinks = sameaslinks | split: "" -%}
|
||||
{%- endif -%}
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"author":
|
||||
{
|
||||
"@type": "Person",
|
||||
"name": "{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}"
|
||||
},
|
||||
"url": "{{ page.url | prepend: site.baseurl | prepend: site.url }}",
|
||||
"@type": "WebSite",
|
||||
"description": "{%- if page.description -%}{{ page.description }}{%- else if site.description -%}{{ site.description }}{%- endif -%}",
|
||||
"headline": "{%- if page.title -%}{{ page.title }}{%- else -%}{{ site.title }}{%- endif -%}",
|
||||
{% if sameaslinks != blank -%}
|
||||
"sameAs": {{ sameaslinks }},
|
||||
{%- endif %}
|
||||
"name": "{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}",
|
||||
"@context": "https://schema.org"
|
||||
}
|
||||
</script>
|
||||
{%- endif %}
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
<div class="news">
|
||||
<h2>news</h2>
|
||||
{% if site.news -%}
|
||||
<div class="table-responsive">
|
||||
<table class="table table-sm table-borderless">
|
||||
{%- assign news = site.news | reverse -%}
|
||||
{% for item in news limit: site.news_limit %}
|
||||
<tr>
|
||||
<th scope="row">{{ item.date | date: "%b %-d, %Y" }}</th>
|
||||
<td>
|
||||
{% if item.inline -%}
|
||||
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
|
||||
{%- else -%}
|
||||
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.title }}</a>
|
||||
{%- endif %}
|
||||
</td>
|
||||
</tr>
|
||||
{%- endfor %}
|
||||
</table>
|
||||
</div>
|
||||
{%- else -%}
|
||||
<p>No news so far...</p>
|
||||
{%- endif %}
|
||||
</div>
|
|
@ -0,0 +1,17 @@
|
|||
{%- if paginator.total_pages > 1 -%}
|
||||
<nav aria-label="Blog page naviation">
|
||||
<ul class="pagination pagination-lg justify-content-center">
|
||||
<li class="page-item {% unless paginator.previous_page %}disabled{% endunless %}">
|
||||
<a class="page-link" href="{{ paginator.previous_page_path | relative_url }}" tabindex="-1" aria-disabled="{{ paginator.previous_page }}">Newer</a>
|
||||
</li>
|
||||
{%- if paginator.page_trail -%}
|
||||
{% for trail in paginator.page_trail -%}
|
||||
<li class="page-item {% if page.url == trail.path %}active{% endif %}"><a class="page-link" href="{{ trail.path | relative_url }}" title="{{trail.title}}">{{ trail.num }}</a></li>
|
||||
{% endfor -%}
|
||||
{%- endif -%}
|
||||
<li class="page-item {% unless paginator.next_page %}disabled{% endunless %}">
|
||||
<a class="page-link" href="{{ paginator.next_page_path | relative_url }}">Older</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
{%- endif -%}
|
|
@ -0,0 +1,36 @@
|
|||
|
||||
<!-- _includes/projects.html -->
|
||||
<div class="grid-item">
|
||||
{% if project.redirect -%}
|
||||
<a href="{{ project.redirect }}">
|
||||
{%- else -%}
|
||||
<a href="{{ project.url | relative_url }}">
|
||||
{%- endif %}
|
||||
<div class="card hoverable">
|
||||
{%- if project.img %}
|
||||
{%- include figure.html
|
||||
path=project.img
|
||||
alt="project thumbnail" -%}
|
||||
{%- endif %}
|
||||
<div class="card-body">
|
||||
<h2 class="card-title text-lowercase">{{ project.title }}</h2>
|
||||
<p class="card-text">{{ project.description }}</p>
|
||||
<div class="row ml-1 mr-1 p-0">
|
||||
{%- if project.github -%}
|
||||
<div class="github-icon">
|
||||
<div class="icon" data-toggle="tooltip" title="Code Repository">
|
||||
<a href="{{ project.github }}"><i class="fab fa-github gh-icon"></i></a>
|
||||
</div>
|
||||
{%- if project.github_stars -%}
|
||||
<span class="stars" data-toggle="tooltip" title="GitHub Stars">
|
||||
<i class="fas fa-star"></i>
|
||||
<span id="{{ project.github_stars }}-stars"></span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
</div>
|
||||
{%- endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
|
@ -0,0 +1,43 @@
|
|||
<div class="card-item col">
|
||||
{%- if project.redirect -%}
|
||||
<a href="{{ project.redirect }}">
|
||||
{%- else -%}
|
||||
<a href="{{ project.url | relative_url }}">
|
||||
{%- endif -%}
|
||||
<div class="card hoverable">
|
||||
<div class="row g-0">
|
||||
{%- if project.img -%}
|
||||
<div class="card-img col-md-6">
|
||||
{% responsive_image_block %}
|
||||
path: {{ project.img }}
|
||||
alt: "project thumbnail"
|
||||
{% endresponsive_image_block %}
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
{%- else -%}
|
||||
<div class="col-md-12">
|
||||
{%- endif -%}
|
||||
<div class="card-body">
|
||||
<h3 class="card-title text-lowercase">{{ project.title }}</h3>
|
||||
<p class="card-text">{{ project.description }}</p>
|
||||
<div class="row ml-1 mr-1 p-0">
|
||||
{%- if project.github -%}
|
||||
<div class="github-icon">
|
||||
<div class="icon" data-toggle="tooltip" title="Code Repository">
|
||||
<a href="{{ project.github }}"><i class="fab fa-github gh-icon"></i></a>
|
||||
</div>
|
||||
{%- if project.github_stars -%}
|
||||
<span class="stars" data-toggle="tooltip" title="GitHub Stars">
|
||||
<i class="fas fa-star"></i>
|
||||
<span id="{{ project.github_stars }}-stars"></span>
|
||||
</span>
|
||||
{%- endif -%}
|
||||
</div>
|
||||
{%- endif -%}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
|
@ -0,0 +1,18 @@
|
|||
{%- if site.enable_google_analytics -%}
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag() { dataLayer.push(arguments); }
|
||||
gtag('js', new Date());
|
||||
gtag('config', '{{ site.google_analytics }}');
|
||||
</script>
|
||||
{%- endif -%}
|
||||
{%- if site.enable_panelbear_analytics -%}
|
||||
<!-- Panelbear Analytics - We respect your privacy -->
|
||||
<script async src="https://cdn.panelbear.com/analytics.js?site={{site.panelbear_analytics}}"></script>
|
||||
<script>
|
||||
window.panelbear = window.panelbear || function() { (window.panelbear.q = window.panelbear.q || []).push(arguments); };
|
||||
panelbear('config', { site: '{{site.panelbear_analytics}}' });
|
||||
</script>
|
||||
{%- endif -%}
|
|
@ -0,0 +1,4 @@
|
|||
<!-- Bootsrap & MDB scripts -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@{{ site.popper.version }}/dist/umd/popper.min.js" integrity="{{ site.popper.integrity }}" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@{{ site.bootstrap.version }}/dist/js/bootstrap.min.js" integrity="{{ site.bootstrap.integrity.js }}" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/mdbootstrap@{{ site.mdb.version }}/js/mdb.min.js" integrity="{{ site.mdb.integrity.js }}" crossorigin="anonymous"></script>
|
|
@ -0,0 +1,2 @@
|
|||
<!-- jQuery -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/jquery@{{ site.jquery.version }}/dist/jquery.min.js" integrity="{{ site.jquery.integrity }}" crossorigin="anonymous"></script>
|
|
@ -0,0 +1,6 @@
|
|||
{%- if site.enable_masonry -%}
|
||||
<!-- Mansory & imagesLoaded -->
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/masonry-layout@{{ site.masonry.version }}/dist/masonry.pkgd.min.js" integrity="{{ site.masonry.integrity }}" crossorigin="anonymous"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
|
||||
<script defer src="{{ '/assets/js/mansory.js' | relative_url }}" type="text/javascript"></script>
|
||||
{%- endif -%}
|
|
@ -0,0 +1,12 @@
|
|||
{%- if site.enable_math -%}
|
||||
<!-- MathJax -->
|
||||
<script type="text/javascript">
|
||||
window.MathJax = {
|
||||
tex: {
|
||||
tags: 'ams'
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<script defer type="text/javascript" id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@{{ site.mathjax.version }}/es5/tex-mml-chtml.js"></script>
|
||||
<script defer src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
||||
{%- endif %}
|
|
@ -0,0 +1,14 @@
|
|||
{% if site.enable_tooltips %}
|
||||
<!-- Enable Tooltips -->
|
||||
<script type="text/javascript">
|
||||
$(function () {$('[data-toggle="tooltip"]').tooltip()})
|
||||
</script>
|
||||
{%- endif %}
|
||||
{%- if site.enable_medium_zoom %}
|
||||
<!-- Medium Zoom JS -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/medium-zoom@{{ site.medium_zoom.version }}/dist/medium-zoom.min.js" integrity="{{ site.medium_zoom.integrity }}" crossorigin="anonymous"></script>
|
||||
<script src="{{ '/assets/js/zoom.js' | relative_url }}"></script>
|
||||
{%- endif -%}
|
||||
|
||||
<!-- Load Common JS -->
|
||||
<script src="{{ '/assets/js/common.js' | relative_url }}"></script>
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
<div class="publications">
|
||||
<h2>selected publications</h2>
|
||||
{% bibliography -f papers -q @*[selected=true]* %}
|
||||
</div>
|
|
@ -0,0 +1,57 @@
|
|||
{%- if site.email -%}
|
||||
<a href="mailto:{{ site.email | encode_email }}" title="email"><i class="fas fa-envelope"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.orcid_id -%}
|
||||
<a href="https://orcid.org/{{ site.orcid_id }}" title="ORCID"><i class="ai ai-orcid"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.scholar_userid -%}
|
||||
<a href="https://scholar.google.com/citations?user={{ site.scholar_userid }}" title="Google Scholar"><i class="ai ai-google-scholar"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.publons_id -%}
|
||||
<a href="https://publons.com/a/{{ site.publons_id }}/" title="Publons"><i class="ai ai-publons"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.research_gate_profile -%}
|
||||
<a href="https://www.researchgate.net/profile/{{site.research_gate_profile}}/" title="ResearchGate"><i class="ai ai-researchgate"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.github_username -%}
|
||||
<a href="https://github.com/{{ site.github_username }}" title="GitHub"><i class="fab fa-github"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.linkedin_username -%}
|
||||
<a href="https://www.linkedin.com/in/{{ site.linkedin_username }}" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.twitter_username -%}
|
||||
<a href="https://twitter.com/{{ site.twitter_username }}" title="Twitter"><i class="fab fa-twitter"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.medium_username -%}
|
||||
<a href="https://medium.com/@{{ site.medium_username }}" title="Medium"><i class="fab fa-medium"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.quora_username -%}
|
||||
<a href="https://www.quora.com/profile/{{ site.quora_username }}" title="Quora"><i class="fab fa-quora"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.blogger_url -%}
|
||||
<a href="{{ site.blogger_url }}" title="Blogger"><i class="fab fa-blogger-b"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.work_url -%}
|
||||
<a href="{{ site.work_url }}" title="Work"><i class="fas fa-briefcase"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.wikidata_id -%}
|
||||
<a href="https://www.wikidata.org/wiki/{{ site.wikidata_id }}" title="Wikidata"><i class="fas fa-barcode"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.strava_userid -%}
|
||||
<a href="https://www.strava.com/athletes/{{ site.strava_userid }}" title="Strava"><i class="fab fa-strava"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.keybase_username -%}
|
||||
<a href="https://keybase.io/{{ site.keybase_username }}" title="Keybase"><i class="fab fa-keybase"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.gitlab_username -%}
|
||||
<a href="https://gitlab.com/{{ site.gitlab_username }}" title="GitLab"><i class="fab fa-gitlab"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.dblp_url -%}
|
||||
<a href="{{ site.dblp_url }}" title="DBLP"><i class="ai ai-dblp"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.stackoverflow_id -%}
|
||||
<a href="https://stackoverflow.com/users/{{ site.stackoverflow_id }}" title="Stackoverflow"><i class="fab fa-stack-overflow"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.rss_icon -%}
|
||||
<a href="{{ site.baseurl | prepend: site.url }}/feed.xml" title="RSS Feed"><i class="fas fa-rss-square"></i></a>
|
||||
{% endif %}
|
|
@ -0,0 +1,59 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<!-- about.html -->
|
||||
<div class="post">
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">
|
||||
{% if site.title == "blank" -%}<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }} {{ site.last_name }}{%- else -%}{{ site.title }}{%- endif %}
|
||||
</h1>
|
||||
<p class="desc">{{ page.subtitle }}</p>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
{% if page.profile -%}
|
||||
<div class="profile float-{%- if page.profile.align == 'left' -%}left{%- else -%}right{%- endif -%}">
|
||||
{%- if page.profile.image %}
|
||||
{%- assign profile_image_path = page.profile.image | prepend: 'assets/img/' -%}
|
||||
{% include figure.html
|
||||
path=profile_image_path
|
||||
class="img-fluid z-dept-1 rounded"
|
||||
alt=page.profile.image -%}
|
||||
{% endif -%}
|
||||
{%- if page.profile.address %}
|
||||
<div class="address">
|
||||
{{ page.profile.address }}
|
||||
</div>
|
||||
{%- endif %}
|
||||
</div>
|
||||
{%- endif %}
|
||||
|
||||
<div class="clearfix">
|
||||
{{ content }}
|
||||
</div>
|
||||
|
||||
{% if page.news -%}
|
||||
<!-- News -->
|
||||
{%- include news.html %}
|
||||
{%- endif %}
|
||||
{% if page.selected_papers -%}
|
||||
<!-- Selected papers -->
|
||||
{%- include selected_papers.html %}
|
||||
{%- endif %}
|
||||
{%- if page.social %}
|
||||
<!-- Social -->
|
||||
<div class="social">
|
||||
<div class="contact-icons">
|
||||
{% include social.html %}
|
||||
</div>
|
||||
|
||||
<div class="contact-note">
|
||||
{{ site.contact_note }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{%- endif %}
|
||||
</article>
|
||||
|
||||
</div>
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="post">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title"> <i class="fas fa-tag fa-sm"></i> {{ page.title }} </h1>
|
||||
<p class="post-description"> an archive of posts in this category </p>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-sm table-borderless">
|
||||
{% for post in page.posts %}
|
||||
<tr>
|
||||
<th scope="row">{{ post.date | date: "%b %-d, %Y" }}</th>
|
||||
<td>
|
||||
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
</div>
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="post">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title"> <i class="fas fa-hashtag fa-sm"></i> {{ page.title }} </h1>
|
||||
<p class="post-description"> an archive of posts with this tag </p>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-sm table-borderless">
|
||||
{% for post in page.posts %}
|
||||
<tr>
|
||||
<th scope="row">{{ post.date | date: "%b %-d, %Y" }}</th>
|
||||
<td>
|
||||
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
</div>
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<div class="post">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title"> <i class="fas fa-calendar fa-sm"></i> {{ page.date | date: "%Y" }} </h1>
|
||||
<p class="post-description"> an archive of posts from this year </p>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-sm table-borderless">
|
||||
{% for post in page.posts %}
|
||||
<tr>
|
||||
<th scope="row">{{ post.date | date: "%b %-d, %Y" }}</th>
|
||||
<td>
|
||||
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
</div>
|
|
@ -0,0 +1,158 @@
|
|||
---
|
||||
---
|
||||
<!-- _layouts/bib.html -->
|
||||
<div class="row">
|
||||
<div class="col-sm-2 abbr">
|
||||
{%- if entry.abbr -%}
|
||||
{%- if site.data.venues[entry.abbr] -%}
|
||||
<abbr class="badge"><a href="{{site.data.venues[entry.abbr].url}}">{{entry.abbr}}</a></abbr>
|
||||
{%- else -%}
|
||||
<abbr class="badge">{{entry.abbr}}</abbr>
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
</div>
|
||||
|
||||
<!-- Entry bib key -->
|
||||
<div id="{{entry.key}}" class="col-sm-8">
|
||||
{% if entry.type == "thesis" -%}
|
||||
{{reference}}
|
||||
{%- else %}
|
||||
<!-- Title -->
|
||||
<div class="title">{{entry.title}}</div>
|
||||
<!-- Author -->
|
||||
<div class="author">
|
||||
{%- for author in entry.author_array -%}
|
||||
{%- assign author_is_self = false -%}
|
||||
{%- if author.last == site.scholar.last_name%}
|
||||
{%- if site.scholar.first_name contains author.first -%}
|
||||
{%- assign author_is_self = true -%}
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
{%- assign coauthor_url = nil -%}
|
||||
{%- if site.data.coauthors[author.last] -%}
|
||||
{%- for coauthor in site.data.coauthors[author.last] -%}
|
||||
{%- if coauthor.firstname contains author.first -%}
|
||||
{%- assign coauthor_url = coauthor.url -%}
|
||||
{%- break -%}
|
||||
{%- endif -%}
|
||||
{%- endfor -%}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if forloop.length == 1 -%}
|
||||
{%- if author_is_self %}
|
||||
<em>{{author.last}}, {{author.first}}</em>
|
||||
{%- else -%}
|
||||
{{author.last}}, {{author.first}}
|
||||
{%- endif -%}
|
||||
{%- else -%}
|
||||
{%- unless forloop.last -%}
|
||||
{% if author_is_self %}
|
||||
<em>{{author.last}}, {{author.first}}</em>,
|
||||
{%- else -%}
|
||||
{% if coauthor_url -%}
|
||||
<a href="{{coauthor_url}}">{{author.last}}, {{author.first}}</a>,
|
||||
{%- else -%}
|
||||
{{author.last}}, {{author.first}},
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
{%- else -%}
|
||||
{% if author_is_self -%}
|
||||
and <em>{{author.last}}, {{author.first}}</em>
|
||||
{% else -%}
|
||||
{%- if coauthor_url -%}
|
||||
and <a href="{{coauthor_url}}">{{author.last}}, {{author.first}}</a>
|
||||
{% else -%}
|
||||
and {{author.last}}, {{author.first}}
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
{%- endunless -%}
|
||||
{%- endif -%}
|
||||
{%- endfor %}
|
||||
</div>
|
||||
|
||||
<!-- Journal/Book title and date -->
|
||||
{% if entry.type == "article" -%}
|
||||
{%- capture entrytype -%}<em>{{entry.journal}}</em>{%- endcapture -%}
|
||||
{%- elsif entry.type == "inproceedings" -%}
|
||||
{%- capture entrytype -%}<em>In {{entry.booktitle}}</em> {%- endcapture -%}
|
||||
{%- endif -%}
|
||||
{%- if entry.month -%}
|
||||
{%- capture entrymonth -%}{{ " " }}{{ entry.month | capitalize }}{%- endcapture -%}
|
||||
{%- endif -%}
|
||||
{%- if entry.year -%}
|
||||
{%- capture entryyear -%}{{ " " }}{{entry.year}}{%- endcapture -%}
|
||||
{%- endif -%}
|
||||
{%- capture periodical -%}{{ entrytype }}{{ entrymonth }}{{ entryyear }}{%- endcapture -%}
|
||||
<div class="periodical">
|
||||
{{ periodical | strip }}
|
||||
</div>
|
||||
{%- endif %}
|
||||
|
||||
<!-- Links/Buttons -->
|
||||
<div class="links">
|
||||
{%- if entry.abstract %}
|
||||
<a class="abstract btn btn-sm z-depth-0" role="button">Abs</a>
|
||||
{%- endif %}
|
||||
{%- if entry.arxiv %}
|
||||
<a href="http://arxiv.org/abs/{{ entry.arxiv }}" class="btn btn-sm z-depth-0" role="button">arXiv</a>
|
||||
{%- endif %}
|
||||
{%- if entry.bibtex_show %}
|
||||
<a class="bibtex btn btn-sm z-depth-0" role="button">Bib</a>
|
||||
{%- endif %}
|
||||
{%- if entry.html %}
|
||||
<a href="{{ entry.html }}" class="btn btn-sm z-depth-0" role="button">HTML</a>
|
||||
{%- endif %}
|
||||
{%- if entry.pdf %}
|
||||
{% if entry.pdf contains '://' -%}
|
||||
<a href="{{ entry.pdf }}" class="btn btn-sm z-depth-0" role="button">PDF</a>
|
||||
{%- else -%}
|
||||
<a href="{{ entry.pdf | prepend: '/assets/pdf/' | relative_url }}" class="btn btn-sm z-depth-0" role="button">PDF</a>
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- if entry.supp %}
|
||||
{% if entry.supp contains '://' -%}
|
||||
<a href="{{ entry.supp }}" class="btn btn-sm z-depth-0" role="button">Supp</a>
|
||||
{%- else -%}
|
||||
<a href="{{ entry.supp | prepend: '/assets/pdf/' | relative_url }}" class="btn btn-sm z-depth-0" role="button">Supp</a>
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- if entry.blog %}
|
||||
<a href="{{ entry.blog }}" class="btn btn-sm z-depth-0" role="button">Blog</a>
|
||||
{%- endif %}
|
||||
{%- if entry.code %}
|
||||
<a href="{{ entry.code }}" class="btn btn-sm z-depth-0" role="button">Code</a>
|
||||
{%- endif %}
|
||||
{%- if entry.poster %}
|
||||
{% if entry.poster contains '://' -%}
|
||||
<a href="{{ entry.poster }}" class="btn btn-sm z-depth-0" role="button">Poster</a>
|
||||
{%- else -%}
|
||||
<a href="{{ entry.poster | prepend: '/assets/pdf/' | relative_url }}" class="btn btn-sm z-depth-0" role="button">Poster</a>
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- if entry.slides %}
|
||||
{% if entry.slides contains '://' -%}
|
||||
<a href="{{ entry.slides }}" class="btn btn-sm z-depth-0" role="button">Slides</a>
|
||||
{%- else -%}
|
||||
<a href="{{ entry.slides | prepend: '/assets/pdf/' | relative_url }}" class="btn btn-sm z-depth-0" role="button">Slides</a>
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
{%- if entry.website %}
|
||||
<a href="{{ entry.website }}" class="btn btn-sm z-depth-0" role="button">Website</a>
|
||||
{%- endif %}
|
||||
</div>
|
||||
|
||||
{% if entry.abstract -%}
|
||||
<!-- Hidden abstract block -->
|
||||
<div class="abstract hidden">
|
||||
<p>{{ entry.abstract }}</p>
|
||||
</div>
|
||||
{%- endif -%}
|
||||
|
||||
{% if entry.bibtex_show -%}
|
||||
<!-- Hidden bibtex block -->
|
||||
<div class="bibtex hidden">
|
||||
{% highlight bibtex %}{{ entry.bibtex }}{% endhighlight %}
|
||||
</div>
|
||||
{%- endif %}
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,37 @@
|
|||
---
|
||||
layout: parse
|
||||
---
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ site.lang }}">
|
||||
|
||||
<!-- Head -->
|
||||
<head>
|
||||
{%- if page.redirect -%}
|
||||
<meta http-equiv="refresh" content="3; url={{ site.baseurl | prepend: site.url }}/" />
|
||||
{%- endif -%}
|
||||
{% include head.html %}
|
||||
</head>
|
||||
|
||||
<!-- Body -->
|
||||
<body class="{%- if site.navbar_fixed -%}fixed-top-nav{%- endif -%} {% unless site.footer_fixed %}sticky-bottom-footer{% endunless %}">
|
||||
|
||||
<!-- Header -->
|
||||
{%- include header.html %}
|
||||
|
||||
<!-- Content -->
|
||||
<div class="container mt-5">
|
||||
{{ content }}
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
{%- include footer.html %}
|
||||
|
||||
<!-- JavaScripts -->
|
||||
{% include scripts/jquery.html %}
|
||||
{% include scripts/bootstrap.html %}
|
||||
{% include scripts/masonry.html %}
|
||||
{% include scripts/misc.html %}
|
||||
{% include scripts/mathjax.html %}
|
||||
{% include scripts/analytics.html %}
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,111 @@
|
|||
<!DOCTYPE html>
|
||||
<!-- _layouts/distill.html -->
|
||||
<html>
|
||||
<head>
|
||||
{%- include head.html %}
|
||||
|
||||
{% include scripts/mathjax.html %}
|
||||
<!-- Distill js -->
|
||||
<script src="{{ '/assets/js/distillpub/template.v2.js' | relative_url }}"></script>
|
||||
<script src="{{ '/assets/js/distillpub/transforms.v2.js' | relative_url }}"></script>
|
||||
{% if page._styles %}
|
||||
<!-- Page/Post style -->
|
||||
<style type="text/css">
|
||||
{{ page._styles }}
|
||||
</style>
|
||||
{%- endif %}
|
||||
</head>
|
||||
|
||||
<d-front-matter>
|
||||
<script async type="text/json">{
|
||||
"title": "{{ page.title }}",
|
||||
"description": "{{ page.description }}",
|
||||
"published": "{{ page.date | date: '%B %-d, %Y' }}",
|
||||
"authors": [
|
||||
{% for author in page.authors -%}
|
||||
{
|
||||
"author": "{{ author.name }}",
|
||||
"authorURL": "{{ author.url }}",
|
||||
"affiliations": [
|
||||
{
|
||||
"name": "{{ author.affiliations.name }}",
|
||||
"url": "{{ author.affiliations.url }}"
|
||||
}
|
||||
]
|
||||
}{% if forloop.last == false %},{% endif %}
|
||||
{% endfor %}
|
||||
],
|
||||
"katex": {
|
||||
"delimiters": [
|
||||
{
|
||||
"left": "$",
|
||||
"right": "$",
|
||||
"display": false
|
||||
},
|
||||
{
|
||||
"left": "$$",
|
||||
"right": "$$",
|
||||
"display": true
|
||||
}
|
||||
]
|
||||
}
|
||||
}</script>
|
||||
</d-front-matter>
|
||||
|
||||
<body class="{%- if site.navbar_fixed -%}fixed-top-nav{%- endif -%} {%- unless site.footer_fixed -%}sticky-bottom-footer{%- endunless -%}">
|
||||
|
||||
<!-- Header -->
|
||||
{%- include header.html %}
|
||||
|
||||
<!-- Content -->
|
||||
<div class="post distill">
|
||||
|
||||
<d-title>
|
||||
<h1>{{ page.title }}</h1>
|
||||
<p>{{ page.description }}</p>
|
||||
</d-title>
|
||||
|
||||
<d-byline></d-byline>
|
||||
|
||||
<d-article>
|
||||
{% if page.toc -%}
|
||||
<d-contents>
|
||||
<nav class="l-text figcaption">
|
||||
<h3>Contents</h3>
|
||||
{% for section in page.toc -%}
|
||||
<div><a href="#{{ section.name | slugify }}">{{ section.name }}</a></div>
|
||||
{% if section.subsections -%}
|
||||
<ul>
|
||||
{% for subsection in section.subsections -%}
|
||||
<li><a href="#{{ subsection.name | slugify }}">{{ subsection.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{%- endif -%}
|
||||
{%- endfor %}
|
||||
</nav>
|
||||
</d-contents>
|
||||
{%- endif %}
|
||||
|
||||
{{ content }}
|
||||
</d-article>
|
||||
|
||||
<d-appendix>
|
||||
<d-footnote-list></d-footnote-list>
|
||||
<d-citation-list></d-citation-list>
|
||||
</d-appendix>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
{%- include footer.html %}
|
||||
|
||||
</body>
|
||||
|
||||
<d-bibliography src="{{ page.bibliography | prepend: '/assets/bibliography/' | relative_url }}">
|
||||
</d-bibliography>
|
||||
|
||||
{% include scripts/jquery.html %}
|
||||
{% include scripts/bootstrap.html %}
|
||||
<script src="{{ '/assets/js/distillpub/overrides.js' | relative_url }}"></script>
|
||||
|
||||
</html>
|
|
@ -0,0 +1 @@
|
|||
{{content}}
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
<!-- page.html -->
|
||||
<div class="post">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">{{ page.title }}</h1>
|
||||
<p class="post-description">{{ page.description }}</p>
|
||||
</header>
|
||||
|
||||
<article>
|
||||
{{ content }}
|
||||
</article>
|
||||
|
||||
</div>
|
|
@ -0,0 +1,30 @@
|
|||
{%- if site.remove_HTML_comments -%}
|
||||
{%- assign _comments = "<!-- -->" | split: " " -%}
|
||||
{%- capture _comment_befores -%}{{ content }}{%- endcapture -%}
|
||||
{%- assign _comment_befores = _comment_befores | split: _comments.first -%}
|
||||
{%- for _comment_before in _comment_befores -%}
|
||||
{%- if forloop.first -%}
|
||||
{%- continue -%}
|
||||
{%- endif -%}
|
||||
{%- capture _comment_outside -%}
|
||||
{%- if _carry -%}
|
||||
{{ _comments.first }}
|
||||
{%- endif -%}
|
||||
{{ _comment_before }}
|
||||
{%- endcapture -%}
|
||||
{%- capture _comment -%}
|
||||
{%- unless _carry -%}
|
||||
{{ _comments.first }}
|
||||
{%- endunless -%}
|
||||
{{ _comment_outside | split: _comments.last | first }}
|
||||
{%- if _comment_outside contains _comments.last -%}
|
||||
{{ _comments.last }}
|
||||
{%- assign _carry = false -%}
|
||||
{%- else -%}
|
||||
{%- assign _carry = true -%}
|
||||
{%- endif -%}
|
||||
{%- endcapture -%}
|
||||
{%- assign content = content | remove_first: _comment -%}
|
||||
{%- endfor -%}
|
||||
{%- endif -%}
|
||||
{{ content | beautify | minify }}
|
|
@ -0,0 +1,61 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
<!-- _layouts/post.html -->
|
||||
{%- assign year = page.date | date: "%Y" -%}
|
||||
{%- assign tags = page.tags | join: "" -%}
|
||||
{%- assign categories = page.categories | join: "" -%}
|
||||
|
||||
{% if page._styles %}
|
||||
<!-- Page/Post style -->
|
||||
<style type="text/css">
|
||||
{{ page._styles }}
|
||||
</style>
|
||||
{% endif %}
|
||||
|
||||
<div class="post">
|
||||
|
||||
<header class="post-header">
|
||||
<h1 class="post-title">{{ page.title }}</h1>
|
||||
<p class="post-meta">{{ page.date | date: "%B %-d, %Y" }}{%- if page.author -%} • {{ page.author }}{%- endif -%}{%- if page.meta -%} • {{ page.meta }}{%- endif -%}</p>
|
||||
<p class="post-tags">
|
||||
<a href="{{ year | prepend: '/blog/' | prepend: site.baseurl}}"> <i class="fas fa-calendar fa-sm"></i> {{ year }} </a>
|
||||
{%- if tags != "" %}
|
||||
·
|
||||
{% for tag in page.tags -%}
|
||||
<a href="{{ tag | prepend: '/blog/tag/' | prepend: site.baseurl}}">
|
||||
<i class="fas fa-hashtag fa-sm"></i> {{ tag }}</a>
|
||||
{% endfor -%}
|
||||
{% endif %}
|
||||
|
||||
{%- if categories != "" %}
|
||||
·
|
||||
{% for category in page.categories -%}
|
||||
<a href="{{ category | prepend: '/blog/category/' | prepend: site.baseurl}}">
|
||||
<i class="fas fa-tag fa-sm"></i> {{ category }}</a>
|
||||
{% endfor -%}
|
||||
{% endif %}
|
||||
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<article class="post-content">
|
||||
{{ content }}
|
||||
</article>
|
||||
|
||||
{%- if site.disqus_shortname and page.comments -%}
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = '{{ site.disqus_shortname }}';
|
||||
var disqus_identifier = '{{ page.id }}';
|
||||
var disqus_title = {{ page.title | jsonify }};
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
{%- endif %}
|
||||
|
||||
</div>
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
date: 2015-10-22 15:59:00-0400
|
||||
inline: true
|
||||
---
|
||||
|
||||
A simple inline announcement.
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
layout: post
|
||||
title: A long announcement with details
|
||||
date: 2015-11-07 16:11:00-0400
|
||||
inline: false
|
||||
---
|
||||
|
||||
Announcements and news can be much longer than just quick inline posts. In fact, they can have all the features available for the standard blog posts. See below.
|
||||
|
||||
***
|
||||
|
||||
Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. <a href="https://www.pinterest.com">Pinterest</a> DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade <a href="https://en.wikipedia.org/wiki/Cold-pressed_juice">cold-pressed</a> meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy.
|
||||
|
||||
#### Hipster list
|
||||
<ul>
|
||||
<li>brunch</li>
|
||||
<li>fixie</li>
|
||||
<li>raybans</li>
|
||||
<li>messenger bag</li>
|
||||
</ul>
|
||||
|
||||
Hoodie Thundercats retro, tote bag 8-bit Godard craft beer gastropub. Truffaut Tumblr taxidermy, raw denim Kickstarter sartorial dreamcatcher. Quinoa chambray slow-carb salvia readymade, bicycle rights 90's yr typewriter selfies letterpress cardigan vegan.
|
||||
|
||||
***
|
||||
|
||||
Pug heirloom High Life vinyl swag, single-origin coffee four dollar toast taxidermy reprehenderit fap distillery master cleanse locavore. Est anim sapiente leggings Brooklyn ea. Thundercats locavore excepteur veniam eiusmod. Raw denim Truffaut Schlitz, migas sapiente Portland VHS twee Bushwick Marfa typewriter retro id keytar.
|
||||
|
||||
> We do not grow absolutely, chronologically. We grow sometimes in one dimension, and not in another, unevenly. We grow partially. We are relative. We are mature in one realm, childish in another.
|
||||
> —Anais Nin
|
||||
|
||||
Fap aliqua qui, scenester pug Echo Park polaroid irony shabby chic ex cardigan church-key Odd Future accusamus. Blog stumptown sartorial squid, gastropub duis aesthetic Truffaut vero. Pinterest tilde twee, odio mumblecore jean shorts lumbersexual.
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
layout: post
|
||||
date: 2016-01-15 07:59:00-0400
|
||||
inline: true
|
||||
---
|
||||
|
||||
A simple inline announcement with Markdown emoji! :sparkles: :smile:
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
layout: about
|
||||
title: about
|
||||
permalink: /
|
||||
subtitle: <a href='#'>Affiliations</a>. Address. Contacts. Moto. Etc.
|
||||
|
||||
profile:
|
||||
align: right
|
||||
image: prof_pic.jpg
|
||||
address: >
|
||||
<p>555 your office number</p>
|
||||
<p>123 your address street</p>
|
||||
<p>Your City, State 12345</p>
|
||||
|
||||
news: true # includes a list of news items
|
||||
selected_papers: true # includes a list of papers marked as "selected={true}"
|
||||
social: true # includes social icons at the bottom of the page
|
||||
---
|
||||
|
||||
Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com). You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder.
|
||||
|
||||
Put your address / P.O. box / other info right below your picture. You can also disable any these elements by editing `profile` property of the YAML header of your `_pages/about.md`. Edit `_bibliography/papers.bib` and Jekyll will render your [publications page](/al-folio/publications/) automatically.
|
||||
|
||||
Link to your social media connections, too. This theme is set up to use [Font Awesome icons](http://fortawesome.github.io/Font-Awesome/) and [Academicons](https://jpswalsh.github.io/academicons/), like the ones below. Add your Facebook, Twitter, LinkedIn, Google Scholar, or just disable all of them.
|
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
layout: page
|
||||
title: submenus
|
||||
nav: true
|
||||
dropdown: true
|
||||
children:
|
||||
- title: publications
|
||||
permalink: /publications/
|
||||
- title: divider
|
||||
- title: projects
|
||||
permalink: /projects/
|
||||
---
|
|
@ -0,0 +1,57 @@
|
|||
---
|
||||
layout: page
|
||||
title: projects
|
||||
permalink: /projects/
|
||||
description: A growing collection of your cool projects.
|
||||
nav: true
|
||||
display_categories: [work, fun]
|
||||
horizontal: false
|
||||
---
|
||||
|
||||
<!-- pages/projects.md -->
|
||||
<div class="projects">
|
||||
{%- if site.enable_project_categories and page.display_categories %}
|
||||
<!-- Display categorized projects -->
|
||||
{%- for category in page.display_categories %}
|
||||
<h2 class="category">{{ category }}</h2>
|
||||
{%- assign categorized_projects = site.projects | where: "category", category -%}
|
||||
{%- assign sorted_projects = categorized_projects | sort: "importance" %}
|
||||
<!-- Generate cards for each project -->
|
||||
{% if page.horizontal -%}
|
||||
<div class="container">
|
||||
<div class="row row-cols-2">
|
||||
{%- for project in sorted_projects -%}
|
||||
{% include projects_horizontal.html %}
|
||||
{%- endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{%- else -%}
|
||||
<div class="grid">
|
||||
{%- for project in sorted_projects -%}
|
||||
{% include projects.html %}
|
||||
{%- endfor %}
|
||||
</div>
|
||||
{%- endif -%}
|
||||
{% endfor %}
|
||||
|
||||
{%- else -%}
|
||||
<!-- Display projects without categories -->
|
||||
{%- assign sorted_projects = site.projects | sort: "importance" -%}
|
||||
<!-- Generate cards for each project -->
|
||||
{% if page.horizontal -%}
|
||||
<div class="container">
|
||||
<div class="row row-cols-2">
|
||||
{%- for project in sorted_projects -%}
|
||||
{% include projects_horizontal.html %}
|
||||
{%- endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{%- else -%}
|
||||
<div class="grid">
|
||||
{%- for project in sorted_projects -%}
|
||||
{% include projects.html %}
|
||||
{%- endfor %}
|
||||
</div>
|
||||
{%- endif -%}
|
||||
{%- endif -%}
|
||||
</div>
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
layout: page
|
||||
permalink: /publications/
|
||||
title: publications
|
||||
description: publications by categories in reversed chronological order. generated by jekyll-scholar.
|
||||
years: [1956, 1950, 1935, 1905]
|
||||
nav: true
|
||||
---
|
||||
<!-- _pages/publications.md -->
|
||||
<div class="publications">
|
||||
|
||||
{%- for y in page.years %}
|
||||
<h2 class="year">{{y}}</h2>
|
||||
{% bibliography -f papers -q @*[year={{y}}]* %}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
layout: page
|
||||
permalink: /teaching/
|
||||
title: teaching
|
||||
description: Materials for courses you taught. Replace this text with your description.
|
||||
nav: true
|
||||
---
|
||||
|
||||
For now, this page is assumed to be a static description of your courses. You can convert it to a collection similar to `_projects/` so that you can have a dedicated page for each course.
|
||||
|
||||
Organize your courses by years, topics, or universities, however you like!
|
|
@ -0,0 +1,27 @@
|
|||
require 'htmlbeautifier'
|
||||
|
||||
module Jekyll
|
||||
module StripHTML
|
||||
def beautify(content)
|
||||
if beautify_enabled?
|
||||
content = HtmlBeautifier.beautify(content)
|
||||
else
|
||||
content
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def beautify_enabled?
|
||||
config = @context.registers[:site].config
|
||||
true?(config['beautify'])
|
||||
end
|
||||
|
||||
def true?(obj)
|
||||
obj.to_s.downcase == 'true'
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
Liquid::Template.register_filter(Jekyll::StripHTML)
|
|
@ -0,0 +1,28 @@
|
|||
# Source: https://www.ffbit.com/blog/2021/03/17/html-minification-in-jekyll.html
|
||||
require 'htmlcompressor'
|
||||
|
||||
module Jekyll
|
||||
module MinifyFilter
|
||||
def minify(content)
|
||||
if minify_enabled?
|
||||
compressor = HtmlCompressor::Compressor.new
|
||||
compressor.compress content
|
||||
else
|
||||
content
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def minify_enabled?
|
||||
config = @context.registers[:site].config
|
||||
true?(config['minify'])
|
||||
end
|
||||
|
||||
def true?(obj)
|
||||
obj.to_s.downcase == 'true'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Liquid::Template.register_filter(Jekyll::MinifyFilter)
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with formatting and links
|
||||
date: 2015-03-15 16:40:16
|
||||
description: march & april, looking forward to summer
|
||||
tags: formatting links
|
||||
categories: sample-posts
|
||||
---
|
||||
Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. <a href="https://www.pinterest.com">Pinterest</a> DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade <a href="https://en.wikipedia.org/wiki/Cold-pressed_juice">cold-pressed</a> meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy.
|
||||
|
||||
#### Hipster list
|
||||
<ul>
|
||||
<li>brunch</li>
|
||||
<li>fixie</li>
|
||||
<li>raybans</li>
|
||||
<li>messenger bag</li>
|
||||
</ul>
|
||||
|
||||
Hoodie Thundercats retro, tote bag 8-bit Godard craft beer gastropub. Truffaut Tumblr taxidermy, raw denim Kickstarter sartorial dreamcatcher. Quinoa chambray slow-carb salvia readymade, bicycle rights 90's yr typewriter selfies letterpress cardigan vegan.
|
||||
|
||||
<hr>
|
||||
|
||||
Pug heirloom High Life vinyl swag, single-origin coffee four dollar toast taxidermy reprehenderit fap distillery master cleanse locavore. Est anim sapiente leggings Brooklyn ea. Thundercats locavore excepteur veniam eiusmod. Raw denim Truffaut Schlitz, migas sapiente Portland VHS twee Bushwick Marfa typewriter retro id keytar.
|
||||
|
||||
<blockquote>
|
||||
We do not grow absolutely, chronologically. We grow sometimes in one dimension, and not in another, unevenly. We grow partially. We are relative. We are mature in one realm, childish in another.
|
||||
—Anais Nin
|
||||
</blockquote>
|
||||
|
||||
Fap aliqua qui, scenester pug Echo Park polaroid irony shabby chic ex cardigan church-key Odd Future accusamus. Blog stumptown sartorial squid, gastropub duis aesthetic Truffaut vero. Pinterest tilde twee, odio mumblecore jean shorts lumbersexual.
|
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with images
|
||||
date: 2015-05-15 21:01:00
|
||||
description: this is what included images could look like
|
||||
tags: formatting images
|
||||
categories: sample-posts
|
||||
---
|
||||
This is an example post with image galleries.
|
||||
|
||||
<div class="row mt-3">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/9.jpg" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
A simple, elegant caption looks good between image rows, after each row, or doesn't have to be there at all.
|
||||
</div>
|
||||
|
||||
Images can be made zoomable.
|
||||
Simply add `data-zoomable` to `<img>` tags that you want to make zoomable.
|
||||
|
||||
<div class="row mt-3">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/8.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/10.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
The rest of the images in this post are all zoomable, arranged into different mini-galleries.
|
||||
|
||||
<div class="row mt-3">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/12.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" zoomable=true %}
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,41 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with code
|
||||
date: 2015-07-15 15:09:00
|
||||
description: an example of a blog post with some code
|
||||
tags: formatting code
|
||||
categories: sample-posts
|
||||
---
|
||||
This theme implements a built-in Jekyll feature, the use of Rouge, for syntax highlighting.
|
||||
It supports more than 100 languages.
|
||||
This example is in C++.
|
||||
All you have to do is wrap your code in a liquid tag:
|
||||
|
||||
{% raw %}
|
||||
{% highlight c++ linenos %} <br/> code code code <br/> {% endhighlight %}
|
||||
{% endraw %}
|
||||
|
||||
The keyword `linenos` triggers display of line numbers.
|
||||
Produces something like this:
|
||||
|
||||
{% highlight c++ linenos %}
|
||||
|
||||
int main(int argc, char const \*argv[])
|
||||
{
|
||||
string myString;
|
||||
|
||||
cout << "input a string: ";
|
||||
getline(cin, myString);
|
||||
int length = myString.length();
|
||||
|
||||
char charArray = new char * [length];
|
||||
|
||||
charArray = myString;
|
||||
for(int i = 0; i < length; ++i){
|
||||
cout << charArray[i] << " ";
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
{% endhighlight %}
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with comments
|
||||
date: 2015-10-20 11:59:00-0400
|
||||
description: an example of a blog post with comments
|
||||
comments: true
|
||||
categories: sample-posts external-services
|
||||
---
|
||||
This post shows how to add DISQUS comments.
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with math
|
||||
date: 2015-10-20 11:12:00-0400
|
||||
description: an example of a blog post with some math
|
||||
tags: formatting math
|
||||
categories: sample-posts
|
||||
---
|
||||
This theme supports rendering beautiful math in inline and display modes using [MathJax 3](https://www.mathjax.org/) engine. You just need to surround your math expression with `$$`, like `$$ E = mc^2 $$`. If you leave it inside a paragraph, it will produce an inline expression, just like $$ E = mc^2 $$.
|
||||
|
||||
To use display mode, again surround your expression with `$$` and place it as a separate paragraph. Here is an example:
|
||||
|
||||
$$
|
||||
\sum_{k=1}^\infty |\langle x, e_k \rangle|^2 \leq \|x\|^2
|
||||
$$
|
||||
|
||||
You can also use `\begin{equation}...\end{equation}` instead of `$$` for display mode math.
|
||||
MathJax will automatically number equations:
|
||||
|
||||
\begin{equation}
|
||||
\label{eq:cauchy-schwarz}
|
||||
\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)
|
||||
\end{equation}
|
||||
|
||||
and by adding `\label{...}` inside the equation environment, we can now refer to the equation using `\eqref`.
|
||||
|
||||
Note that MathJax 3 is [a major re-write of MathJax](https://docs.mathjax.org/en/latest/upgrading/whats-new-3.0.html) that brought a significant improvement to the loading and rendering speed, which is now [on par with KaTeX](http://www.intmath.com/cg5/katex-mathjax-comparison.php).
|
|
@ -0,0 +1,282 @@
|
|||
---
|
||||
layout: distill
|
||||
title: a distill-style blog post
|
||||
description: an example of a distill-style blog post and main elements
|
||||
date: 2021-05-22
|
||||
|
||||
authors:
|
||||
- name: Albert Einstein
|
||||
url: "https://en.wikipedia.org/wiki/Albert_Einstein"
|
||||
affiliations:
|
||||
name: IAS, Princeton
|
||||
- name: Boris Podolsky
|
||||
url: "https://en.wikipedia.org/wiki/Boris_Podolsky"
|
||||
affiliations:
|
||||
name: IAS, Princeton
|
||||
- name: Nathan Rosen
|
||||
url: "https://en.wikipedia.org/wiki/Nathan_Rosen"
|
||||
affiliations:
|
||||
name: IAS, Princeton
|
||||
|
||||
bibliography: 2018-12-22-distill.bib
|
||||
|
||||
# Optionally, you can add a table of contents to your post.
|
||||
# NOTES:
|
||||
# - make sure that TOC names match the actual section names
|
||||
# for hyperlinks within the post to work correctly.
|
||||
# - we may want to automate TOC generation in the future using
|
||||
# jekyll-toc plugin (https://github.com/toshimaru/jekyll-toc).
|
||||
toc:
|
||||
- name: Equations
|
||||
# if a section has subsections, you can add them as follows:
|
||||
# subsections:
|
||||
# - name: Example Child Subsection 1
|
||||
# - name: Example Child Subsection 2
|
||||
- name: Citations
|
||||
- name: Footnotes
|
||||
- name: Code Blocks
|
||||
- name: Layouts
|
||||
- name: Other Typography?
|
||||
|
||||
# Below is an example of injecting additional post-specific styles.
|
||||
# If you use this post as a template, delete this _styles block.
|
||||
_styles: >
|
||||
.fake-img {
|
||||
background: #bbb;
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.fake-img p {
|
||||
font-family: monospace;
|
||||
color: white;
|
||||
text-align: left;
|
||||
margin: 12px 0;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
---
|
||||
|
||||
**NOTE:**
|
||||
Citations, footnotes, and code blocks do not display correctly in the dark mode since distill does not support the dark mode by default.
|
||||
If you are interested in correctly adding dark mode support for distill, please open [a discussion](https://github.com/alshedivat/al-folio/discussions) and let us know.
|
||||
|
||||
|
||||
## Equations
|
||||
|
||||
This theme supports rendering beautiful math in inline and display modes using [MathJax 3](https://www.mathjax.org/) engine.
|
||||
You just need to surround your math expression with `$$`, like `$$ E = mc^2 $$`.
|
||||
If you leave it inside a paragraph, it will produce an inline expression, just like $$ E = mc^2 $$.
|
||||
|
||||
To use display mode, again surround your expression with `$$` and place it as a separate paragraph.
|
||||
Here is an example:
|
||||
|
||||
$$
|
||||
\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)
|
||||
$$
|
||||
|
||||
Note that MathJax 3 is [a major re-write of MathJax](https://docs.mathjax.org/en/latest/upgrading/whats-new-3.0.html) that brought a significant improvement to the loading and rendering speed, which is now [on par with KaTeX](http://www.intmath.com/cg5/katex-mathjax-comparison.php).
|
||||
|
||||
|
||||
***
|
||||
|
||||
## Citations
|
||||
|
||||
Citations are then used in the article body with the `<d-cite>` tag.
|
||||
The key attribute is a reference to the id provided in the bibliography.
|
||||
The key attribute can take multiple ids, separated by commas.
|
||||
|
||||
The citation is presented inline like this: <d-cite key="gregor2015draw"></d-cite> (a number that displays more information on hover).
|
||||
If you have an appendix, a bibliography is automatically created and populated in it.
|
||||
|
||||
Distill chose a numerical inline citation style to improve readability of citation dense articles and because many of the benefits of longer citations are obviated by displaying more information on hover.
|
||||
However, we consider it good style to mention author last names if you discuss something at length and it fits into the flow well — the authors are human and it’s nice for them to have the community associate them with their work.
|
||||
|
||||
***
|
||||
|
||||
## Footnotes
|
||||
|
||||
Just wrap the text you would like to show up in a footnote in a `<d-footnote>` tag.
|
||||
The number of the footnote will be automatically generated.<d-footnote>This will become a hoverable footnote.</d-footnote>
|
||||
|
||||
***
|
||||
|
||||
## Code Blocks
|
||||
|
||||
Syntax highlighting is provided within `<d-code>` tags.
|
||||
An example of inline code snippets: `<d-code language="html">let x = 10;</d-code>`.
|
||||
For larger blocks of code, add a `block` attribute:
|
||||
|
||||
<d-code block language="javascript">
|
||||
var x = 25;
|
||||
function(x) {
|
||||
return x * x;
|
||||
}
|
||||
</d-code>
|
||||
|
||||
**Note:** `<d-code>` blocks do not look well in the dark mode.
|
||||
You can always use the default code-highlight using the `highlight` liquid tag:
|
||||
|
||||
{% highlight javascript %}
|
||||
var x = 25;
|
||||
function(x) {
|
||||
return x * x;
|
||||
}
|
||||
{% endhighlight %}
|
||||
|
||||
***
|
||||
|
||||
## Layouts
|
||||
|
||||
The main text column is referred to as the body.
|
||||
It is the assumed layout of any direct descendants of the `d-article` element.
|
||||
|
||||
<div class="fake-img l-body">
|
||||
<p>.l-body</p>
|
||||
</div>
|
||||
|
||||
For images you want to display a little larger, try `.l-page`:
|
||||
|
||||
<div class="fake-img l-page">
|
||||
<p>.l-page</p>
|
||||
</div>
|
||||
|
||||
All of these have an outset variant if you want to poke out from the body text a little bit.
|
||||
For instance:
|
||||
|
||||
<div class="fake-img l-body-outset">
|
||||
<p>.l-body-outset</p>
|
||||
</div>
|
||||
|
||||
<div class="fake-img l-page-outset">
|
||||
<p>.l-page-outset</p>
|
||||
</div>
|
||||
|
||||
Occasionally you’ll want to use the full browser width.
|
||||
For this, use `.l-screen`.
|
||||
You can also inset the element a little from the edge of the browser by using the inset variant.
|
||||
|
||||
<div class="fake-img l-screen">
|
||||
<p>.l-screen</p>
|
||||
</div>
|
||||
<div class="fake-img l-screen-inset">
|
||||
<p>.l-screen-inset</p>
|
||||
</div>
|
||||
|
||||
The final layout is for marginalia, asides, and footnotes.
|
||||
It does not interrupt the normal flow of `.l-body` sized text except on mobile screen sizes.
|
||||
|
||||
<div class="fake-img l-gutter">
|
||||
<p>.l-gutter</p>
|
||||
</div>
|
||||
|
||||
***
|
||||
|
||||
## Other Typography?
|
||||
|
||||
Emphasis, aka italics, with *asterisks* (`*asterisks*`) or _underscores_ (`_underscores_`).
|
||||
|
||||
Strong emphasis, aka bold, with **asterisks** or __underscores__.
|
||||
|
||||
Combined emphasis with **asterisks and _underscores_**.
|
||||
|
||||
Strikethrough uses two tildes. ~~Scratch this.~~
|
||||
|
||||
1. First ordered list item
|
||||
2. Another item
|
||||
⋅⋅* Unordered sub-list.
|
||||
1. Actual numbers don't matter, just that it's a number
|
||||
⋅⋅1. Ordered sub-list
|
||||
4. And another item.
|
||||
|
||||
⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown).
|
||||
|
||||
⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅
|
||||
⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅
|
||||
⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.)
|
||||
|
||||
* Unordered list can use asterisks
|
||||
- Or minuses
|
||||
+ Or pluses
|
||||
|
||||
[I'm an inline-style link](https://www.google.com)
|
||||
|
||||
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
|
||||
|
||||
[I'm a reference-style link][Arbitrary case-insensitive reference text]
|
||||
|
||||
[I'm a relative reference to a repository file](../blob/master/LICENSE)
|
||||
|
||||
[You can use numbers for reference-style link definitions][1]
|
||||
|
||||
Or leave it empty and use the [link text itself].
|
||||
|
||||
URLs and URLs in angle brackets will automatically get turned into links.
|
||||
http://www.example.com or <http://www.example.com> and sometimes
|
||||
example.com (but not on Github, for example).
|
||||
|
||||
Some text to show that the reference links can follow later.
|
||||
|
||||
[arbitrary case-insensitive reference text]: https://www.mozilla.org
|
||||
[1]: http://slashdot.org
|
||||
[link text itself]: http://www.reddit.com
|
||||
|
||||
Here's our logo (hover to see the title text):
|
||||
|
||||
Inline-style:
|
||||

|
||||
|
||||
Reference-style:
|
||||
![alt text][logo]
|
||||
|
||||
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
|
||||
|
||||
Inline `code` has `back-ticks around` it.
|
||||
|
||||
```javascript
|
||||
var s = "JavaScript syntax highlighting";
|
||||
alert(s);
|
||||
```
|
||||
|
||||
```python
|
||||
s = "Python syntax highlighting"
|
||||
print s
|
||||
```
|
||||
|
||||
```
|
||||
No language indicated, so no syntax highlighting.
|
||||
But let's throw in a <b>tag</b>.
|
||||
```
|
||||
|
||||
Colons can be used to align columns.
|
||||
|
||||
| Tables | Are | Cool |
|
||||
| ------------- |:-------------:| -----:|
|
||||
| col 3 is | right-aligned | $1600 |
|
||||
| col 2 is | centered | $12 |
|
||||
| zebra stripes | are neat | $1 |
|
||||
|
||||
There must be at least 3 dashes separating each header cell.
|
||||
The outer pipes (|) are optional, and you don't need to make the
|
||||
raw Markdown line up prettily. You can also use inline Markdown.
|
||||
|
||||
Markdown | Less | Pretty
|
||||
--- | --- | ---
|
||||
*Still* | `renders` | **nicely**
|
||||
1 | 2 | 3
|
||||
|
||||
> Blockquotes are very handy in email to emulate reply text.
|
||||
> This line is part of the same quote.
|
||||
|
||||
Quote break.
|
||||
|
||||
> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can *put* **Markdown** into a blockquote.
|
||||
|
||||
|
||||
Here's a line for us to start with.
|
||||
|
||||
This line is separated from the one above by two newlines, so it will be a *separate paragraph*.
|
||||
|
||||
This line is also a separate paragraph, but...
|
||||
This line is only separated by a single newline, so it's a separate line in the *same paragraph*.
|
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with github metadata
|
||||
date: 2020-09-28 21:01:00
|
||||
description: a quick run down on accessing github metadata.
|
||||
categories: sample-posts external-services
|
||||
---
|
||||
|
||||
A sample blog page that demonstrates the accessing of github meta data.
|
||||
|
||||
## What does Github-MetaData do?
|
||||
* Propagates the site.github namespace with repository metadata
|
||||
* Setting site variables :
|
||||
* site.title
|
||||
* site.description
|
||||
* site.url
|
||||
* site.baseurl
|
||||
* Accessing the metadata - duh.
|
||||
* Generating edittable links.
|
||||
|
||||
## Additional Reading
|
||||
* If you're recieving incorrect/missing data, you may need to perform a Github API<a href="https://github.com/jekyll/github-metadata/blob/master/docs/authentication.md"> authentication</a>.
|
||||
* Go through this <a href="https://jekyll.github.io/github-metadata/">README</a> for more details on the topic.
|
||||
* <a href= "https://github.com/jekyll/github-metadata/blob/master/docs/site.github.md">This page</a> highlights all the feilds you can access with github-metadata.
|
||||
<br />
|
||||
|
||||
## Example MetaData
|
||||
* Host Name : {{ site.github.hostname }}
|
||||
* URL : {{ site.github.url }}
|
||||
* BaseURL : {{ site.github.baseurl }}
|
||||
* Archived : {{ site.github.archived}}
|
||||
* Contributors :
|
||||
{% for contributor in site.github.contributors %}
|
||||
* {{ contributor.login }}
|
||||
{% endfor %}
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with twitter
|
||||
date: 2020-09-28 11:12:00-0400
|
||||
description: an example of a blog post with twitter
|
||||
tags: formatting
|
||||
categories: sample-posts external-services
|
||||
---
|
||||
A sample blog page that demonstrates the inclusion of Tweets/Timelines/etc.
|
||||
|
||||
# Tweet
|
||||
An example of displaying a tweet:
|
||||
{% twitter https://twitter.com/rubygems/status/518821243320287232 %}
|
||||
|
||||
# Timeline
|
||||
An example of pulling from a timeline:
|
||||
{% twitter https://twitter.com/jekyllrb maxwidth=500 limit=3 %}
|
||||
|
||||
# Additional Details
|
||||
For more details on using the plugin visit: [jekyll-twitter-plugin](https://github.com/rob-murray/jekyll-twitter-plugin)
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
layout: post
|
||||
title: a post with diagrams
|
||||
date: 2021-07-04 17:39:00
|
||||
description: an example of a blog post with diagrams
|
||||
---
|
||||
|
||||
This theme supports generating various diagrams from a text description using [jekyll-diagrams](https://github.com/zhustec/jekyll-diagrams){:target="\_blank"} plugin.
|
||||
Below, we generate a few examples of such diagrams using languages such as [mermaid](https://mermaid-js.github.io/mermaid/){:target="\_blank"}, [plantuml](https://plantuml.com/){:target="\_blank"}, [vega-lite](https://vega.github.io/vega-lite/){:target="\_blank"}, etc.
|
||||
|
||||
**Note:** different diagram-generation packages require external dependencies to be installed on your machine.
|
||||
Also, be mindful of that because of diagram generation the fist time you build your Jekyll website after adding new diagrams will be SLOW.
|
||||
For any other details, please refer to [jekyll-diagrams](https://github.com/zhustec/jekyll-diagrams){:target="\_blank"} README.
|
||||
|
||||
|
||||
## Mermaid
|
||||
|
||||
Install mermaid using `node.js` package manager `npm` by running the following command:
|
||||
```bash
|
||||
npm install -g mermaid.cli
|
||||
```
|
||||
|
||||
The diagram below was generated by the following code:
|
||||
|
||||
{% raw %}
|
||||
```
|
||||
{% mermaid %}
|
||||
sequenceDiagram
|
||||
participant John
|
||||
participant Alice
|
||||
Alice->>John: Hello John, how are you?
|
||||
John-->>Alice: Great!
|
||||
{% endmermaid %}
|
||||
```
|
||||
{% endraw %}
|
||||
|
||||
{% mermaid %}
|
||||
sequenceDiagram
|
||||
participant John
|
||||
participant Alice
|
||||
Alice->>John: Hello John, how are you?
|
||||
John-->>Alice: Great!
|
||||
{% endmermaid %}
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
layout: page
|
||||
title: project 1
|
||||
description: a project with a background image
|
||||
img: assets/img/12.jpg
|
||||
importance: 1
|
||||
category: work
|
||||
---
|
||||
|
||||
Every project has a beautiful feature showcase page.
|
||||
It's easy to include images in a flexible 3-column grid format.
|
||||
Make your photos 1/3, 2/3, or full width.
|
||||
|
||||
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
|
||||
|
||||
---
|
||||
layout: page
|
||||
title: project
|
||||
description: a project with a background image
|
||||
img: /assets/img/12.jpg
|
||||
---
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
This image can also have a caption. It's like magic.
|
||||
</div>
|
||||
|
||||
You can also put regular text between your rows of images.
|
||||
Say you wanted to write a little bit about your project before you posted the rest of the images.
|
||||
You describe how you toiled, sweated, *bled* for your project, and then... you reveal it's glory in the next row of images.
|
||||
|
||||
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
You can also have artistically styled 2/3 + 1/3 images, like these.
|
||||
</div>
|
||||
|
||||
|
||||
The code is simple.
|
||||
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
|
||||
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
|
||||
Here's the code for the last row of images above:
|
||||
|
||||
{% raw %}
|
||||
```html
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
{% endraw %}
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
layout: page
|
||||
title: project 2
|
||||
description: a project with a background image
|
||||
img: assets/img/3.jpg
|
||||
importance: 2
|
||||
category: work
|
||||
---
|
||||
|
||||
Every project has a beautiful feature showcase page.
|
||||
It's easy to include images in a flexible 3-column grid format.
|
||||
Make your photos 1/3, 2/3, or full width.
|
||||
|
||||
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
|
||||
|
||||
---
|
||||
layout: page
|
||||
title: project
|
||||
description: a project with a background image
|
||||
img: /assets/img/12.jpg
|
||||
---
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
This image can also have a caption. It's like magic.
|
||||
</div>
|
||||
|
||||
You can also put regular text between your rows of images.
|
||||
Say you wanted to write a little bit about your project before you posted the rest of the images.
|
||||
You describe how you toiled, sweated, *bled* for your project, and then... you reveal it's glory in the next row of images.
|
||||
|
||||
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
You can also have artistically styled 2/3 + 1/3 images, like these.
|
||||
</div>
|
||||
|
||||
|
||||
The code is simple.
|
||||
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
|
||||
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
|
||||
Here's the code for the last row of images above:
|
||||
|
||||
{% raw %}
|
||||
```html
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
{% endraw %}
|
|
@ -0,0 +1,81 @@
|
|||
---
|
||||
layout: page
|
||||
title: project 3
|
||||
description: a project that redirects to another website
|
||||
img: assets/img/7.jpg
|
||||
redirect: https://unsplash.com
|
||||
importance: 3
|
||||
category: work
|
||||
---
|
||||
|
||||
Every project has a beautiful feature showcase page.
|
||||
It's easy to include images in a flexible 3-column grid format.
|
||||
Make your photos 1/3, 2/3, or full width.
|
||||
|
||||
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
|
||||
|
||||
---
|
||||
layout: page
|
||||
title: project
|
||||
description: a project with a background image
|
||||
img: /assets/img/12.jpg
|
||||
---
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
This image can also have a caption. It's like magic.
|
||||
</div>
|
||||
|
||||
You can also put regular text between your rows of images.
|
||||
Say you wanted to write a little bit about your project before you posted the rest of the images.
|
||||
You describe how you toiled, sweated, *bled* for your project, and then... you reveal it's glory in the next row of images.
|
||||
|
||||
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
You can also have artistically styled 2/3 + 1/3 images, like these.
|
||||
</div>
|
||||
|
||||
|
||||
The code is simple.
|
||||
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
|
||||
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
|
||||
Here's the code for the last row of images above:
|
||||
|
||||
{% raw %}
|
||||
```html
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
{% endraw %}
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
layout: page
|
||||
title: project 4
|
||||
description: another without an image
|
||||
img:
|
||||
importance: 3
|
||||
category: fun
|
||||
---
|
||||
|
||||
Every project has a beautiful feature showcase page.
|
||||
It's easy to include images in a flexible 3-column grid format.
|
||||
Make your photos 1/3, 2/3, or full width.
|
||||
|
||||
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
|
||||
|
||||
---
|
||||
layout: page
|
||||
title: project
|
||||
description: a project with a background image
|
||||
img: /assets/img/12.jpg
|
||||
---
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
This image can also have a caption. It's like magic.
|
||||
</div>
|
||||
|
||||
You can also put regular text between your rows of images.
|
||||
Say you wanted to write a little bit about your project before you posted the rest of the images.
|
||||
You describe how you toiled, sweated, *bled* for your project, and then... you reveal it's glory in the next row of images.
|
||||
|
||||
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
You can also have artistically styled 2/3 + 1/3 images, like these.
|
||||
</div>
|
||||
|
||||
|
||||
The code is simple.
|
||||
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
|
||||
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
|
||||
Here's the code for the last row of images above:
|
||||
|
||||
{% raw %}
|
||||
```html
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
{% endraw %}
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
layout: page
|
||||
title: project 5
|
||||
description: a project with a background image
|
||||
img: assets/img/1.jpg
|
||||
importance: 3
|
||||
category: fun
|
||||
---
|
||||
|
||||
Every project has a beautiful feature showcase page.
|
||||
It's easy to include images in a flexible 3-column grid format.
|
||||
Make your photos 1/3, 2/3, or full width.
|
||||
|
||||
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
|
||||
|
||||
---
|
||||
layout: page
|
||||
title: project
|
||||
description: a project with a background image
|
||||
img: /assets/img/12.jpg
|
||||
---
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
This image can also have a caption. It's like magic.
|
||||
</div>
|
||||
|
||||
You can also put regular text between your rows of images.
|
||||
Say you wanted to write a little bit about your project before you posted the rest of the images.
|
||||
You describe how you toiled, sweated, *bled* for your project, and then... you reveal it's glory in the next row of images.
|
||||
|
||||
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
You can also have artistically styled 2/3 + 1/3 images, like these.
|
||||
</div>
|
||||
|
||||
|
||||
The code is simple.
|
||||
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
|
||||
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
|
||||
Here's the code for the last row of images above:
|
||||
|
||||
{% raw %}
|
||||
```html
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
{% endraw %}
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
layout: page
|
||||
title: project 6
|
||||
description: a project with no image
|
||||
img:
|
||||
importance: 4
|
||||
category: fun
|
||||
---
|
||||
|
||||
Every project has a beautiful feature showcase page.
|
||||
It's easy to include images in a flexible 3-column grid format.
|
||||
Make your photos 1/3, 2/3, or full width.
|
||||
|
||||
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
|
||||
|
||||
---
|
||||
layout: page
|
||||
title: project
|
||||
description: a project with a background image
|
||||
img: /assets/img/12.jpg
|
||||
---
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
This image can also have a caption. It's like magic.
|
||||
</div>
|
||||
|
||||
You can also put regular text between your rows of images.
|
||||
Say you wanted to write a little bit about your project before you posted the rest of the images.
|
||||
You describe how you toiled, sweated, *bled* for your project, and then... you reveal it's glory in the next row of images.
|
||||
|
||||
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="caption">
|
||||
You can also have artistically styled 2/3 + 1/3 images, like these.
|
||||
</div>
|
||||
|
||||
|
||||
The code is simple.
|
||||
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
|
||||
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
|
||||
Here's the code for the last row of images above:
|
||||
|
||||
{% raw %}
|
||||
```html
|
||||
<div class="row justify-content-sm-center">
|
||||
<div class="col-sm-8 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
<div class="col-sm-4 mt-3 mt-md-0">
|
||||
{% include figure.html path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
|
||||
</div>
|
||||
</div>
|
||||
```
|
||||
{% endraw %}
|
|
@ -0,0 +1,574 @@
|
|||
/*******************************************************************************
|
||||
* Styles for the base elements of the theme.
|
||||
******************************************************************************/
|
||||
@charset "UTF-8";
|
||||
html{
|
||||
margin-left: calc(100vw - 100%);
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
// Typography
|
||||
|
||||
p, h1, h2, h3, h4, h5, h6, em, div, li, span, strong {
|
||||
color: var(--global-text-color);
|
||||
}
|
||||
|
||||
hr {
|
||||
border-top: 1px solid var(--global-divider-color);
|
||||
}
|
||||
|
||||
a, table.table a {
|
||||
color: var(--global-theme-color);
|
||||
&:hover {
|
||||
color: var(--global-theme-color);
|
||||
text-decoration: underline;
|
||||
}
|
||||
&:hover:after :not(.nav-item.dropdown) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
figure, img {
|
||||
max-width: 90vw;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
background: var(--global-bg-color);
|
||||
border-left: 2px solid var(--global-theme-color);
|
||||
margin: 1.5em 10px;
|
||||
padding: 0.5em 10px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
// Math
|
||||
|
||||
.equation {
|
||||
margin-bottom: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// Caption
|
||||
|
||||
.caption {
|
||||
font-size: 0.875rem;
|
||||
margin-top: 0.75rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// Citation
|
||||
.citation, .citation-number {
|
||||
color: var(--global-theme-color);
|
||||
}
|
||||
|
||||
// Profile
|
||||
|
||||
.profile {
|
||||
margin-left: 1rem;
|
||||
width: 100%;
|
||||
|
||||
.address {
|
||||
margin-bottom: 5px;
|
||||
margin-top: 5px;
|
||||
font-family: monospace;
|
||||
p {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
.profile {
|
||||
width: 30%;
|
||||
.address {
|
||||
p { display: block; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.post-description {
|
||||
margin-bottom: 2rem;
|
||||
font-size: 0.875rem;
|
||||
a {
|
||||
color: inherit;
|
||||
&:hover {
|
||||
color: var(--global-theme-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Navbar customization
|
||||
|
||||
.navbar {
|
||||
box-shadow: none;
|
||||
border-bottom: 1px solid var(--global-divider-color);
|
||||
background-color: var(--global-bg-color);
|
||||
opacity: 0.95;
|
||||
}
|
||||
.navbar .dropdown-menu {
|
||||
background-color: var(--global-bg-color);
|
||||
border: 1px solid var(--global-divider-color);
|
||||
a:not(.active) {
|
||||
color: var(--global-text-color);
|
||||
}
|
||||
a:hover {
|
||||
color: var(--global-hover-color);
|
||||
}
|
||||
.dropdown-divider {
|
||||
border-top: 1px solid var(--global-divider-color) !important;
|
||||
}
|
||||
}
|
||||
.dropdown-item {
|
||||
color: var(--global-text-color);
|
||||
&:hover {
|
||||
color: var(--global-hover-color);
|
||||
background-color: var(--global-bg-color);
|
||||
}
|
||||
}
|
||||
.navbar.navbar-light {
|
||||
a {
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
.navbar-brand {
|
||||
color: var(--global-text-color);
|
||||
}
|
||||
.navbar-nav .nav-item .nav-link {
|
||||
color: var(--global-text-color);
|
||||
&:hover {
|
||||
color: var(--global-hover-color);
|
||||
}
|
||||
}
|
||||
.navbar-nav .nav-item.active>.nav-link {
|
||||
background-color: inherit;
|
||||
font-weight: bolder;
|
||||
color: var(--global-theme-color);
|
||||
&:hover {
|
||||
color: var(--global-hover-color);
|
||||
}
|
||||
}
|
||||
.navbar-brand.social {
|
||||
padding-bottom: 0;
|
||||
padding-top: 0;
|
||||
font-size: 1.7rem;
|
||||
a {
|
||||
i::before {
|
||||
color: var(--global-text-color);
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
}
|
||||
&:hover {
|
||||
i::before {
|
||||
color: var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
.icon-bar {
|
||||
display: block;
|
||||
width: 22px;
|
||||
height: 2px;
|
||||
background-color: var(--global-text-color);
|
||||
border-radius: 1px;
|
||||
margin-bottom: 4px;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
.top-bar {
|
||||
transform: rotate(45deg);
|
||||
transform-origin: 10% 10%;
|
||||
}
|
||||
.middle-bar {
|
||||
opacity: 0;
|
||||
}
|
||||
.bottom-bar {
|
||||
transform: rotate(-45deg);
|
||||
transform-origin: 10% 90%;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-toggler.collapsed {
|
||||
.top-bar {
|
||||
transform: rotate(0);
|
||||
}
|
||||
.middle-bar {
|
||||
opacity: 1;
|
||||
}
|
||||
.bottom-bar {
|
||||
transform: rotate(0);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// News
|
||||
|
||||
.news table td {
|
||||
font-size: 1rem;
|
||||
color: var(--global-text-color);
|
||||
}
|
||||
|
||||
.news table th {
|
||||
color: var(--global-text-color);
|
||||
}
|
||||
|
||||
// Social (bottom)
|
||||
|
||||
.social {
|
||||
text-align: center;
|
||||
.contact-icons {
|
||||
font-size: 4rem;
|
||||
a {
|
||||
i::before {
|
||||
color: var(--global-text-color);
|
||||
-webkit-transition: all 0.2s ease-in-out;
|
||||
}
|
||||
&:hover {
|
||||
i::before {
|
||||
color: var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.contact-note {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Footer
|
||||
footer.fixed-bottom {
|
||||
background-color: var(--global-footer-bg-color);
|
||||
font-size: 0.75rem;
|
||||
.container {
|
||||
color: var(--global-footer-text-color);
|
||||
padding-top: 9px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
a {
|
||||
color: var(--global-footer-link-color);
|
||||
&:hover {
|
||||
color: var(--global-theme-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
footer.sticky-bottom {
|
||||
border-top: 1px solid var(--global-divider-color);
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
|
||||
// Blog
|
||||
|
||||
.header-bar {
|
||||
border-bottom: 1px solid var(--global-divider-color);
|
||||
text-align: center;
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 5rem;
|
||||
h1 {
|
||||
color: var(--global-theme-color);
|
||||
font-size: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.post-list {
|
||||
margin: 0;
|
||||
margin-bottom: 40px;
|
||||
padding: 0;
|
||||
li {
|
||||
border-bottom: 1px solid var(--global-divider-color);
|
||||
list-style: none;
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
.post-meta {
|
||||
color: var(--global-text-color-light);
|
||||
font-size: 0.875rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.post-tags {
|
||||
color: var(--global-text-color-light);
|
||||
font-size: 0.875rem;
|
||||
padding-top: 0.25rem;
|
||||
}
|
||||
a {
|
||||
color: var(--global-text-color);
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
color: var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pagination {
|
||||
.page-item {
|
||||
.page-link {
|
||||
color: var(--global-text-color);
|
||||
&:hover {
|
||||
color: $black-color;
|
||||
}
|
||||
}
|
||||
&.active .page-link {
|
||||
color: $white-color;
|
||||
background-color: var(--global-theme-color);
|
||||
&:hover {
|
||||
background-color: var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Distill
|
||||
|
||||
.distill {
|
||||
a:hover {
|
||||
border-bottom-color: var(--global-theme-color);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Projects
|
||||
|
||||
.projects {
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
.card-title {
|
||||
color: var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card {
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
.card-title {
|
||||
color: $black-color;
|
||||
}
|
||||
}
|
||||
|
||||
.card-item {
|
||||
width: auto;
|
||||
margin-bottom: 10px;
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
.grid-item {
|
||||
width: 250px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
h2.category {
|
||||
color: var(--global-divider-color);
|
||||
border-bottom: 1px solid var(--global-divider-color);
|
||||
padding-top: 0.5rem;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Publications
|
||||
|
||||
.publications {
|
||||
margin-top: 2rem;
|
||||
h1 {
|
||||
color: var(--global-theme-color);
|
||||
font-size: 2rem;
|
||||
text-align: center;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
h2 {
|
||||
margin-bottom: 1rem;
|
||||
span {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
h2.year {
|
||||
color: var(--global-divider-color);
|
||||
border-top: 1px solid var(--global-divider-color);
|
||||
padding-top: 1rem;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: -2rem;
|
||||
text-align: right;
|
||||
}
|
||||
ol.bibliography {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
|
||||
li {
|
||||
margin-bottom: 1rem;
|
||||
.abbr {
|
||||
height: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
abbr {
|
||||
display: inline-block;
|
||||
background-color: var(--global-theme-color);
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
a {
|
||||
color: white;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.award {
|
||||
color: var(--global-theme-color) !important;
|
||||
border: 1px solid var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
.title {
|
||||
font-weight: bolder;
|
||||
}
|
||||
.author {
|
||||
a {
|
||||
border-bottom: 1px dashed var(--global-theme-color);
|
||||
&:hover {
|
||||
border-bottom-style: solid;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
> em {
|
||||
border-bottom: 1px solid;
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
.links {
|
||||
a.btn {
|
||||
color: var(--global-text-color);
|
||||
border: 1px solid var(--global-text-color);
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
padding-top: 0.25rem;
|
||||
padding-bottom: 0.25rem;
|
||||
&:hover {
|
||||
color: var(--global-theme-color);
|
||||
border-color: var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
.hidden {
|
||||
font-size: 0.875rem;
|
||||
max-height: 0px;
|
||||
overflow: hidden;
|
||||
text-align: justify;
|
||||
-webkit-transition: 0.15s ease;
|
||||
-moz-transition: 0.15s ease;
|
||||
-ms-transition: 0.15s ease;
|
||||
-o-transition: 0.15s ease;
|
||||
transition: all 0.15s ease;
|
||||
|
||||
p {
|
||||
line-height: 1.4em;
|
||||
margin: 10px;
|
||||
}
|
||||
pre {
|
||||
font-size: 1em;
|
||||
line-height: 1.4em;
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
.hidden.open {
|
||||
max-height: 100em;
|
||||
-webkit-transition: 0.15s ease;
|
||||
-moz-transition: 0.15s ease;
|
||||
-ms-transition: 0.15s ease;
|
||||
-o-transition: 0.15s ease;
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
div.abstract.hidden {
|
||||
border: dashed 1px var(--global-bg-color);
|
||||
}
|
||||
div.abstract.hidden.open {
|
||||
border-color: var(--global-text-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Rouge Color Customization
|
||||
figure.highlight {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
pre {
|
||||
color: var(--global-theme-color);
|
||||
background-color: var(--global-code-bg-color);
|
||||
border-radius: 6px;
|
||||
padding: 6px 12px;
|
||||
pre, code {
|
||||
background-color: transparent;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
code {
|
||||
color: var(--global-theme-color);
|
||||
background-color: var(--global-code-bg-color);
|
||||
border-radius: 3px;
|
||||
padding: 3px 3px;
|
||||
}
|
||||
|
||||
|
||||
// Transitioning Themes
|
||||
html.transition,
|
||||
html.transition *,
|
||||
html.transition *:before,
|
||||
html.transition *:after {
|
||||
transition: all 750ms !important;
|
||||
transition-delay: 0 !important;
|
||||
}
|
||||
|
||||
// Extra Markdown style (post Customization)
|
||||
.post{
|
||||
.post-meta{
|
||||
color: var(--global-text-color-light);
|
||||
font-size: 0.875rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.post-tags{
|
||||
color: var(--global-text-color-light);
|
||||
font-size: 0.875rem;
|
||||
padding-bottom: 1rem;
|
||||
a {
|
||||
color: var(--global-text-color-light);
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
color: var(--global-theme-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
.post-content{
|
||||
blockquote {
|
||||
border-left: 5px solid var(--global-theme-color);
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.post-tags {
|
||||
color: var(--global-text-color-light);
|
||||
font-size: 0.875rem;
|
||||
padding-top: 0.25rem;
|
||||
}
|
|
@ -0,0 +1,126 @@
|
|||
/*******************************************************************************
|
||||
* Style overrides for distill blog posts.
|
||||
******************************************************************************/
|
||||
|
||||
d-byline {
|
||||
border-top-color: var(--global-divider-color) !important;
|
||||
}
|
||||
|
||||
d-byline h3 {
|
||||
color: var(--global-text-color) !important;
|
||||
}
|
||||
|
||||
d-byline a, d-article d-byline a {
|
||||
color: var(--global-text-color) !important;
|
||||
&:hover {
|
||||
color: var(--global-hover-color) !important;
|
||||
}
|
||||
}
|
||||
|
||||
d-article {
|
||||
border-top-color: var(--global-divider-color) !important;
|
||||
a, p, h1, h2, h3, h4, h5, h6, li, table {
|
||||
color: var(--global-text-color) !important;
|
||||
}
|
||||
a, h1, h2, hr, table, table th, table td {
|
||||
border-bottom-color: var(--global-divider-color) !important;
|
||||
}
|
||||
a:hover {
|
||||
border-bottom-color: var(--global-hover-color) !important;
|
||||
}
|
||||
b i {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
d-contents {
|
||||
align-self: start;
|
||||
grid-column: 1 / 4;
|
||||
grid-row: auto / span 4;
|
||||
justify-self: end;
|
||||
margin-top: 0em;
|
||||
padding-left: 2em;
|
||||
padding-right: 3em;
|
||||
border-right: 1px solid var(--global-divider-color);
|
||||
width: calc(max(70%, 300px));
|
||||
margin-right: 0px;
|
||||
margin-top: 0em;
|
||||
display: grid;
|
||||
grid-template-columns:
|
||||
minmax(8px, 1fr) [toc] auto
|
||||
minmax(8px, 1fr) [toc-line] 1px
|
||||
minmax(32px, 2fr);
|
||||
|
||||
nav {
|
||||
grid-column: toc;
|
||||
a {
|
||||
border-bottom: none !important;
|
||||
&:hover {
|
||||
border-bottom: 1px solid var(--global-text-color) !important;
|
||||
}
|
||||
}
|
||||
h3 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
div {
|
||||
display: block;
|
||||
outline: none;
|
||||
margin-bottom: 0.8em;
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
font-weight: bold;
|
||||
}
|
||||
ul {
|
||||
padding-left: 1em;
|
||||
margin-top: 0;
|
||||
margin-bottom: 6px;
|
||||
list-style-type: none;
|
||||
li {
|
||||
margin-bottom: 0.25em;
|
||||
}
|
||||
}
|
||||
}
|
||||
.figcaption {
|
||||
line-height: 1.4em;
|
||||
}
|
||||
toc-line {
|
||||
border-right: 1px solid var(--global-divider-color);
|
||||
grid-column: toc-line;
|
||||
}
|
||||
}
|
||||
|
||||
d-footnote {
|
||||
scroll-margin-top: 66px;
|
||||
}
|
||||
}
|
||||
|
||||
d-appendix {
|
||||
border-top-color: var(--global-divider-color) !important;
|
||||
color: var(--global-distill-app-color) !important;
|
||||
h3, li, span {
|
||||
color: var(--global-distill-app-color) !important;
|
||||
}
|
||||
a, a.footnote-backlink {
|
||||
color: var(--global-distill-app-color) !important;
|
||||
&:hover {
|
||||
color: var(--global-hover-color) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
d-article {
|
||||
d-contents {
|
||||
display: block;
|
||||
grid-column-start: 2;
|
||||
grid-column-end: -2;
|
||||
padding-bottom: 0.5em;
|
||||
margin-bottom: 1em;
|
||||
padding-top: 0.5em;
|
||||
width: 100%;
|
||||
border: 1px solid var(--global-divider-color);
|
||||
nav {
|
||||
grid-column: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
figure > img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
font-size: $small-font-size;
|
||||
}
|
||||
|
||||
|
||||
.blankbox {
|
||||
background: $theme-color;
|
||||
}
|
||||
.img_row {
|
||||
/*height: $img-height;*/
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
box-sizing:border-box;
|
||||
}
|
||||
.col {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
box-sizing:border-box;
|
||||
/*padding: $img-spacing;*/
|
||||
}
|
||||
.one {
|
||||
width:33.33%;
|
||||
}
|
||||
.two {
|
||||
width: 66.66%;
|
||||
}
|
||||
.three {
|
||||
width: 100%;
|
||||
}
|
||||
.caption {
|
||||
height: 100%;
|
||||
color: $caption-color;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
font-size: $caption-font-size;
|
||||
}
|
|
@ -0,0 +1,110 @@
|
|||
.site-header {
|
||||
border-bottom: 1px solid $grey-color-light;
|
||||
background-color: #fff;
|
||||
opacity: 0.95;
|
||||
position:fixed;
|
||||
left:calc((100vw - 100%)/2);
|
||||
top:0px;
|
||||
width:100%;
|
||||
z-index: 50;
|
||||
}
|
||||
|
||||
.site-title {
|
||||
font-size: 20px;
|
||||
line-height: $nav-height;
|
||||
letter-spacing: -1px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.site-nav {
|
||||
float: right;
|
||||
line-height: $nav-height;
|
||||
|
||||
.nav-trigger {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.page-link{
|
||||
line-height: $line-height;
|
||||
// Gaps between nav items, but not on the first one
|
||||
&:not(:first-child) {
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
// added for hamburger
|
||||
@include media-query($on-palm) {
|
||||
position: absolute;
|
||||
top: 9px;
|
||||
right: $horizontal-spacing-unit / 2;
|
||||
background-color: $background-color;
|
||||
border: 1px solid $grey-color-light;
|
||||
border-radius: 5px;
|
||||
text-align: right;
|
||||
|
||||
label[for="nav-trigger"] {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
z-index: 2;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.menu-icon {
|
||||
display: block;
|
||||
float: right;
|
||||
width: 36px;
|
||||
height: 26px;
|
||||
line-height: 0;
|
||||
padding-top: 10px;
|
||||
text-align: center;
|
||||
|
||||
> svg path {
|
||||
fill: $grey-color-dark;
|
||||
}
|
||||
}
|
||||
|
||||
input ~ .trigger {
|
||||
clear: both;
|
||||
display: none;
|
||||
}
|
||||
|
||||
input:checked ~ .trigger {
|
||||
display: block;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.page-link {
|
||||
display: block;
|
||||
padding: 5px 10px;
|
||||
|
||||
&:not(:last-child) {
|
||||
margin-right: 0;
|
||||
}
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header-bar{
|
||||
border-bottom: 1px solid $light-gray;
|
||||
font-size: 20px;
|
||||
display: block;
|
||||
opacity: 0.75;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding-top: 25px;
|
||||
padding-bottom: $space-4;
|
||||
line-height: 3em;
|
||||
z-index: 25;
|
||||
h1{
|
||||
color: $theme-color;
|
||||
font-size:75px;
|
||||
}
|
||||
h2{
|
||||
font-size:25px;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
/******************************************************************************
|
||||
* Content
|
||||
******************************************************************************/
|
||||
|
||||
body {
|
||||
padding-bottom: 70px;
|
||||
color: var(--global-text-color);
|
||||
background-color: var(--global-bg-color);
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
scroll-margin-top: 66px;
|
||||
}
|
||||
}
|
||||
|
||||
body.fixed-top-nav {
|
||||
// Add some padding for the nav-bar.
|
||||
padding-top: 56px;
|
||||
}
|
||||
|
||||
body.sticky-bottom-footer {
|
||||
// Remove padding below footer.
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: $max-content-width;
|
||||
}
|
||||
|
||||
// Profile
|
||||
.profile {
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: redefine content layout.
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
* Publications
|
||||
******************************************************************************/
|
||||
|
||||
// TODO: redefine publications layout.
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
* Projects
|
||||
*****************************************************************************/
|
||||
|
||||
// TODO: redefine projects layout.
|
|
@ -0,0 +1,87 @@
|
|||
@mixin media-query($device) {
|
||||
@media screen and (max-width: $device) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: $viewport-small) {
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
h1,
|
||||
.h1 {
|
||||
font-size: $h1;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.site-nav {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.site-header a {
|
||||
font-size: $h4;
|
||||
}
|
||||
|
||||
.site-header .site-title {
|
||||
font-size: $h3;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.site-header .site-nav {
|
||||
float: right;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin-left: $space-3;
|
||||
padding: $space-3;
|
||||
}
|
||||
|
||||
.social-icons-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.social-icons-right {
|
||||
text-align: right;
|
||||
}
|
||||
.img_row {
|
||||
height: $img-height/3;
|
||||
}
|
||||
.col {
|
||||
padding: $img-spacing/3;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: $viewport-medium) {
|
||||
html {
|
||||
font-size: 18px;
|
||||
}
|
||||
.img_row {
|
||||
height: $img-height/1.5;
|
||||
}
|
||||
.col {
|
||||
padding: $img-spacing/1.5;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: $viewport-large) {
|
||||
html {
|
||||
font-size: 20px;
|
||||
}
|
||||
.img_row {
|
||||
height: $img-height;
|
||||
}
|
||||
.col {
|
||||
padding: $img-spacing;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: $viewport-large + 14) {
|
||||
em img {
|
||||
max-width: $measure-width + 14;
|
||||
margin-left: -7em;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
/*******************************************************************************
|
||||
* Themes
|
||||
******************************************************************************/
|
||||
|
||||
:root {
|
||||
--global-bg-color: #{$white-color};
|
||||
--global-code-bg-color: #{$code-bg-color-light};
|
||||
--global-text-color: #{$black-color};
|
||||
--global-text-color-light: #{$grey-color};
|
||||
--global-theme-color: #{$purple-color};
|
||||
--global-hover-color: #{$purple-color};
|
||||
--global-footer-bg-color: #{$grey-color-dark};
|
||||
--global-footer-text-color: #{$grey-color-light};
|
||||
--global-footer-link-color: #{$white-color};
|
||||
--global-distill-app-color: #{$grey-color};
|
||||
--global-divider-color: rgba(0,0,0,.1);
|
||||
|
||||
.fa-sun {
|
||||
display : none;
|
||||
}
|
||||
.fa-moon {
|
||||
padding-left: 10px;
|
||||
padding-top: 12px;
|
||||
display : block;
|
||||
}
|
||||
}
|
||||
|
||||
html[data-theme='dark'] {
|
||||
--global-bg-color: #{$grey-color-dark};
|
||||
--global-code-bg-color: #{$code-bg-color-dark};
|
||||
--global-text-color: #{$grey-color-light};
|
||||
--global-text-color-light: #{$grey-color-light};
|
||||
--global-theme-color: #{$cyan-color};
|
||||
--global-hover-color: #{$cyan-color};
|
||||
--global-footer-bg-color: #{$grey-color-light};
|
||||
--global-footer-text-color: #{$grey-color-dark};
|
||||
--global-footer-link-color: #{$black-color};
|
||||
--global-distill-app-color: #{$grey-color-light};
|
||||
--global-divider-color: #424246;
|
||||
|
||||
.fa-sun {
|
||||
padding-left: 10px;
|
||||
padding-top: 12px;
|
||||
display : block;
|
||||
}
|
||||
.fa-moon {
|
||||
display : none;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
/*******************************************************************************
|
||||
* Variables used throughout the theme.
|
||||
* To adjust anything, simply edit the variables below and rebuild the theme.
|
||||
******************************************************************************/
|
||||
|
||||
|
||||
// Colors
|
||||
$red-color: #FF3636 !default;
|
||||
$red-color-dark: #B71C1C !default;
|
||||
$orange-color: #F29105 !default;
|
||||
$blue-color: #0076df !default;
|
||||
$blue-color-dark: #00369f !default;
|
||||
$cyan-color: #2698BA !default;
|
||||
$light-cyan-color: lighten($cyan-color, 25%);
|
||||
$green-color: #00ab37 !default;
|
||||
$green-color-lime: #B7D12A !default;
|
||||
$green-color-dark: #009f06 !default;
|
||||
$green-color-light: #ddffdd !default;
|
||||
$green-color-bright: #11D68B !default;
|
||||
$purple-color: #B509AC !default;
|
||||
$light-purple-color: lighten($purple-color, 25%);
|
||||
$pink-color: #f92080 !default;
|
||||
$pink-color-light: #ffdddd !default;
|
||||
$yellow-color: #efcc00 !default;
|
||||
|
||||
$grey-color: #828282 !default;
|
||||
$grey-color-light: lighten($grey-color, 40%);
|
||||
$grey-color-dark: #1C1C1D;
|
||||
|
||||
$white-color: #ffffff !default;
|
||||
$black-color: #000000 !default;
|
||||
|
||||
|
||||
// Theme colors
|
||||
|
||||
$code-bg-color-light: rgba($purple-color, 0.05);
|
||||
$code-bg-color-dark: #2c3237 !default;
|
|
@ -0,0 +1,7 @@
|
|||
@article{gregor2015draw,
|
||||
title={DRAW: A recurrent neural network for image generation},
|
||||
author={Gregor, Karol and Danihelka, Ivo and Graves, Alex and Rezende, Danilo Jimenez and Wierstra, Daan},
|
||||
journal={arXiv preprint, arXiv:1502.04623},
|
||||
year={2015},
|
||||
url={https://arxiv.org/pdf/1502.04623.pdf}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
# Only the main Sass file needs front matter (the dashes are enough)
|
||||
---
|
||||
@charset "utf-8";
|
||||
|
||||
// Dimensions
|
||||
$max-content-width: {{ site.max_width }};
|
||||
|
||||
@import
|
||||
"variables",
|
||||
"themes",
|
||||
"layout",
|
||||
"base",
|
||||
"distill"
|
||||
;
|
After Width: | Height: | Size: 410 KiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 195 KiB |
After Width: | Height: | Size: 574 KiB |
After Width: | Height: | Size: 1.9 MiB |
After Width: | Height: | Size: 1.8 MiB |
After Width: | Height: | Size: 4.3 MiB |
After Width: | Height: | Size: 3.0 MiB |
After Width: | Height: | Size: 955 KiB |
After Width: | Height: | Size: 3.4 MiB |
After Width: | Height: | Size: 4.3 MiB |
After Width: | Height: | Size: 800 KiB |
After Width: | Height: | Size: 182 KiB |
After Width: | Height: | Size: 186 KiB |
After Width: | Height: | Size: 188 KiB |
|
@ -0,0 +1,231 @@
|
|||
|
||||
<svg class="theme--agnostic" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" width="1000" height="330">
|
||||
<style>
|
||||
.gauge-base {
|
||||
opacity: 0.1
|
||||
}
|
||||
|
||||
.gauge-arc {
|
||||
fill: none;
|
||||
animation-delay: 250ms;
|
||||
stroke-linecap: round;
|
||||
transform: rotate(-90deg);
|
||||
transform-origin: 100px 60px;
|
||||
animation: load-gauge 1s ease forwards
|
||||
}
|
||||
|
||||
.guage-text {
|
||||
font-size: 40px;
|
||||
font-family: monospace;
|
||||
text-align: center
|
||||
}
|
||||
|
||||
.guage-red {
|
||||
color: #ff4e42;
|
||||
fill: #ff4e42;
|
||||
stroke: #ff4e42
|
||||
}
|
||||
.guage-orange {
|
||||
color: #ffa400;
|
||||
fill: #ffa400;
|
||||
stroke: #ffa400
|
||||
}
|
||||
.guage-green {
|
||||
color: #0cce6b;
|
||||
fill: #0cce6b;
|
||||
stroke: #0cce6b
|
||||
}
|
||||
.theme--agnostic .guage-undefined {
|
||||
color: #5c5c5c;
|
||||
fill: #5c5c5c;
|
||||
stroke: #5c5c5c
|
||||
}
|
||||
.theme--light .guage-undefined {
|
||||
color: #1e1e1e;
|
||||
fill: #1e1e1e;
|
||||
stroke: #1e1e1e
|
||||
}
|
||||
.theme--dark .guage-undefined {
|
||||
color: #f5f5f5;
|
||||
fill: #f5f5f5;
|
||||
stroke: #f5f5f5
|
||||
}
|
||||
|
||||
.guage-title {
|
||||
stroke: none;
|
||||
font-size: 26px;
|
||||
line-height: 26px;
|
||||
font-family: Roboto, Halvetica, Arial, sans-serif
|
||||
}
|
||||
.metric.guage-title {
|
||||
font-family: 'Courier New', Courier, monospace
|
||||
}
|
||||
.theme--agnostic .guage-title {
|
||||
color: #737373;
|
||||
fill: #737373
|
||||
}
|
||||
.theme--light .guage-title {
|
||||
color: #212121;
|
||||
fill: #212121
|
||||
}
|
||||
.theme--dark .guage-title {
|
||||
color: #f5f5f5;
|
||||
fill: #f5f5f5
|
||||
}
|
||||
|
||||
@keyframes load-gauge {
|
||||
from {
|
||||
stroke-dasharray: 0 352.858
|
||||
}
|
||||
}
|
||||
.lh-gauge--pwa__disc {
|
||||
fill: #e0e0e0
|
||||
}
|
||||
.lh-gauge--pwa__logo {
|
||||
position: relative;
|
||||
fill: #b0b0b0
|
||||
}
|
||||
.lh-gauge--pwa__invisible {
|
||||
display: none
|
||||
}
|
||||
.lh-gauge--pwa__visible {
|
||||
display: inline
|
||||
}
|
||||
.guage-invisible {
|
||||
display: none
|
||||
}
|
||||
.lh-gauge--pwa__logo--primary-color {
|
||||
fill: #304ffe
|
||||
}
|
||||
.theme--agnostic .lh-gauge--pwa__logo--secondary-color {
|
||||
fill: #787878
|
||||
}
|
||||
.theme--light .lh-gauge--pwa__logo--secondary-color {
|
||||
fill: #3d3d3d
|
||||
}
|
||||
.theme--dark .lh-gauge--pwa__logo--secondary-color {
|
||||
fill: #d8b6b6
|
||||
}
|
||||
.theme--light #svg_2 {
|
||||
stroke: #00000022
|
||||
}
|
||||
.theme--agnostic #svg_2 {
|
||||
stroke: #616161
|
||||
}
|
||||
.theme--light #svg_2 {
|
||||
stroke: #00000022
|
||||
}
|
||||
.theme--dark #svg_2 {
|
||||
stroke: #f5f5f566
|
||||
}
|
||||
</style>
|
||||
<svg class="guage-div guage-perf guage-green" viewBox="0 0 200 200" width="200" height="200" x="0" y="0">
|
||||
<circle class="gauge-base" r="56" cx="100" cy="60" stroke-width="8"></circle>
|
||||
<circle class="gauge-arc guage-arc-1" r="56" cx="100" cy="60" stroke-width="8" style="stroke-dasharray: 316.67220000000003, 351.858;"></circle>
|
||||
<text class="guage-text" x="100px" y="60px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">90</text>
|
||||
<text class="guage-title" x="100px" y="160px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">Performance</text>
|
||||
</svg>
|
||||
<svg class="guage-div guage-acc guage-orange" viewBox="0 0 200 200" width="200" height="200" x="200" y="0">
|
||||
<circle class="gauge-base" r="56" cx="100" cy="60" stroke-width="8"></circle>
|
||||
<circle class="gauge-arc guage-arc-2" r="56" cx="100" cy="60" stroke-width="8" style="stroke-dasharray: 295.56072, 351.858;"></circle>
|
||||
<text class="guage-text" x="100px" y="60px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">84</text>
|
||||
<text class="guage-title" x="100px" y="160px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">Accessibility</text>
|
||||
</svg>
|
||||
<svg class="guage-div guage-best guage-green" viewBox="0 0 200 200" width="200" height="200" x="400" y="0">
|
||||
<circle class="gauge-base" r="56" cx="100" cy="60" stroke-width="8"></circle>
|
||||
<circle class="gauge-arc guage-arc-3" r="56" cx="100" cy="60" stroke-width="8" style="stroke-dasharray: 351.858, 351.858;"></circle>
|
||||
<text class="guage-text" x="100px" y="60px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">100</text>
|
||||
<text class="guage-title" x="100px" y="160px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">Best Practices</text>
|
||||
</svg>
|
||||
<svg class="guage-div guage-seo guage-orange" viewBox="0 0 200 200" width="200" height="200" x="600" y="0">
|
||||
<circle class="gauge-base" r="56" cx="100" cy="60" stroke-width="8"></circle>
|
||||
<circle class="gauge-arc guage-arc-4" r="56" cx="100" cy="60" stroke-width="8" style="stroke-dasharray: 288.52356, 351.858;"></circle>
|
||||
<text class="guage-text" x="100px" y="60px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">82</text>
|
||||
<text class="guage-title" x="100px" y="160px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">SEO</text>
|
||||
</svg>
|
||||
<svg class="guage-div guage-pwa " viewBox="0 0 200 200" width="200" height="200" x="800" y="0">
|
||||
<svg viewBox="0 0 60 60" width="112" height="112" x="44" y="4">
|
||||
<defs>
|
||||
<linearGradient id="lh-gauge--pwa__check-circle__gradient-0" x1="50%" y1="0%" x2="50%" y2="100%">
|
||||
<stop stop-color="#00C852" offset="0%"></stop>
|
||||
<stop stop-color="#009688" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient id="lh-gauge--pwa__installable__shadow-gradient-0" x1="76.056%" x2="24.111%" y1="82.995%" y2="24.735%">
|
||||
<stop stop-color="#A5D6A7" offset="0%"></stop>
|
||||
<stop stop-color="#80CBC4" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient id="lh-gauge--pwa__fast-reliable__shadow-gradient-0" x1="76.056%" y1="82.995%" x2="25.678%" y2="26.493%">
|
||||
<stop stop-color="#64B5F6" offset="0%"></stop>
|
||||
<stop stop-color="#2979FF" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
|
||||
<g id="lh-gauge--pwa__fast-reliable-badge-0">
|
||||
<circle fill="#FFFFFF" cx="10" cy="10" r="10"></circle>
|
||||
<path fill="#304FFE" d="M10 3.58l5.25 2.34v3.5c0 3.23-2.24 6.26-5.25 7-3.01-.74-5.25-3.77-5.25-7v-3.5L10 3.58zm-.47 10.74l2.76-4.83.03-.07c.04-.08 0-.24-.22-.24h-1.64l.47-3.26h-.47l-2.7 4.77c-.02.01.05-.1-.04.05-.09.16-.1.31.18.31h1.63l-.47 3.27h.47z"></path>
|
||||
</g>
|
||||
<g id="lh-gauge--pwa__installable-badge-0">
|
||||
<circle fill="#FFFFFF" cx="10" cy="10" r="10"></circle>
|
||||
<path fill="#009688" d="M10 4.167A5.835 5.835 0 0 0 4.167 10 5.835 5.835 0 0 0 10 15.833 5.835 5.835 0 0 0 15.833 10 5.835 5.835 0 0 0 10 4.167zm2.917 6.416h-2.334v2.334H9.417v-2.334H7.083V9.417h2.334V7.083h1.166v2.334h2.334v1.166z"></path>
|
||||
</g>
|
||||
</defs>
|
||||
<g stroke="none" fill-rule="nonzero">
|
||||
<!-- Background and PWA logo (color by default) -->
|
||||
<circle class="lh-gauge--pwa__disc" cx="30" cy="30" r="30"></circle>
|
||||
<g class="lh-gauge--pwa__logo">
|
||||
<path d="M35.66 19.39l.7-1.75h2L37.4 15 38.6 12l3.4 9h-2.51l-.58-1.61z"></path>
|
||||
<path d="M33.52 21l3.65-9h-2.42l-2.5 5.82L30.5 12h-1.86l-1.9 5.82-1.35-2.65-1.21 3.72L25.4 21h2.38l1.72-5.2 1.64 5.2z"></path>
|
||||
<path fill-rule="nonzero" d="M20.3 17.91h1.48c.45 0 .85-.05 1.2-.15l.39-1.18 1.07-3.3a2.64 2.64 0 0 0-.28-.37c-.55-.6-1.36-.91-2.42-.91H18v9h2.3V17.9zm1.96-3.84c.22.22.33.5.33.87 0 .36-.1.65-.29.87-.2.23-.59.35-1.15.35h-.86v-2.41h.87c.52 0 .89.1 1.1.32z"></path>
|
||||
</g>
|
||||
<!-- No badges. -->
|
||||
<rect class="lh-gauge--pwa__component lh-gauge--pwa__na-line lh-gauge--pwa__invisible" fill="#FFFFFF" x="20" y="32" width="20" height="4" rx="2"></rect>
|
||||
<!-- Just fast and reliable. -->
|
||||
<g class="lh-gauge--pwa__component lh-gauge--pwa__fast-reliable-badge lh-gauge--pwa__visible" transform="translate(20, 29)">
|
||||
<path fill="url(#lh-gauge--pwa__fast-reliable__shadow-gradient-0)" d="M33.63 19.49A30 30 0 0 1 16.2 30.36L3 17.14 17.14 3l16.49 16.49z"></path>
|
||||
<use href="#lh-gauge--pwa__fast-reliable-badge-0"></use>
|
||||
</g>
|
||||
<!-- Just installable. -->
|
||||
<g class="lh-gauge--pwa__component lh-gauge--pwa__installable-badge lh-gauge--pwa__invisible" transform="translate(20, 29)">
|
||||
<path fill="url(#lh-gauge--pwa__installable__shadow-gradient-0)" d="M33.629 19.487c-4.272 5.453-10.391 9.39-17.415 10.869L3 17.142 17.142 3 33.63 19.487z"></path>
|
||||
<use href="#lh-gauge--pwa__installable-badge-0"></use>
|
||||
</g>
|
||||
<!-- Fast and reliable and installable. -->
|
||||
<g class="lh-gauge--pwa__component lh-gauge--pwa__fast-reliable-installable-badges lh-gauge--pwa__invisible">
|
||||
<g transform="translate(8, 29)"> <!-- fast and reliable -->
|
||||
<path fill="url(#lh-gauge--pwa__fast-reliable__shadow-gradient-0)" d="M16.321 30.463L3 17.143 17.142 3l22.365 22.365A29.864 29.864 0 0 1 22 31c-1.942 0-3.84-.184-5.679-.537z"></path>
|
||||
<use href="#lh-gauge--pwa__fast-reliable-badge-0"></use>
|
||||
</g>
|
||||
<g transform="translate(32, 29)"> <!-- installable -->
|
||||
<path fill="url(#lh-gauge--pwa__installable__shadow-gradient-0)" d="M25.982 11.84a30.107 30.107 0 0 1-13.08 15.203L3 17.143 17.142 3l8.84 8.84z"></path>
|
||||
<use href="#lh-gauge--pwa__installable-badge-0"></use>
|
||||
</g>
|
||||
</g>
|
||||
<!-- Full PWA. -->
|
||||
<g class="lh-gauge--pwa__component lh-gauge--pwa__check-circle lh-gauge--pwa__invisible" transform="translate(18, 28)">
|
||||
<circle fill="#FFFFFF" cx="12" cy="12" r="12"></circle>
|
||||
<path fill="url(#lh-gauge--pwa__check-circle__gradient-0)" d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
<text class="guage-title" y="160px" alignment-baseline="central" dominant-baseline="central" text-anchor="middle">
|
||||
<tspan x="100px" dy="-6px">Progressive</tspan>
|
||||
<tspan x="100px" dy="30px">Web App</tspan>
|
||||
</text>
|
||||
</svg>
|
||||
<svg width="604" height="76" x="200" y="250">
|
||||
<g>
|
||||
<rect fill="none" id="canvas_background" height="80" width="604" y="-1" x="-1"/>
|
||||
<g display="none" overflow="visible" y="0" x="0" height="100%" width="100%" id="canvasGrid">
|
||||
<rect fill="url(#gridpattern)" stroke-width="0" y="0" x="0" height="100%" width="100%"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<rect fill-opacity="0" stroke-width="2" rx="40" id="svg_2" height="72" width="600" y="1" x="0" fill="#000000"/>
|
||||
<rect stroke="#000" rx="8" id="svg_3" height="14" width="48" y="30" x="35" stroke-opacity="null" stroke-width="0" fill="#ff4e42"/>
|
||||
<rect stroke="#000" rx="6" id="svg_4" height="14" width="48" y="30" x="220" stroke-opacity="null" stroke-width="0" fill="#ffa400"/>
|
||||
<rect stroke="#000" rx="6" id="svg_5" height="14" width="48" y="30" x="410" stroke-opacity="null" stroke-width="0" fill="#0cce6b"/>
|
||||
<text class="metric guage-title" xml:space="preserve" text-anchor="start" font-size="26" id="svg_6" y="45" x="100" stroke-opacity="null" stroke-width="0" stroke="#000">0-49</text>
|
||||
<text class="metric guage-title" xml:space="preserve" text-anchor="start" font-size="26" id="svg_7" y="45" x="280" stroke-opacity="null" stroke-width="0" stroke="#000">50-89</text>
|
||||
<text class="metric guage-title" xml:space="preserve" text-anchor="start" font-size="26" id="svg_8" y="45" x="470" stroke-opacity="null" stroke-width="0" stroke="#000">90-100</text>
|
||||
</g>
|
||||
</svg>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 950 KiB |
After Width: | Height: | Size: 2.2 MiB |
After Width: | Height: | Size: 842 KiB |
After Width: | Height: | Size: 211 KiB |