Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 16 additions & 22 deletions _data/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ Niels Bantilan:
- label: "Website"
icon: "fas fa-fw fa-link"
url: "https://cosmicbboy.github.io/"
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/cosmicbboy"
Anita Graser:
name : "Anita Graser"
bio : "Data Scientist, Spatial Data Analyst, AIT Vienna"
Expand All @@ -43,9 +40,6 @@ Anita Graser:
- label: "Website"
icon: "fas fa-fw fa-link"
url: "https://anitagraser.com"
- label: "Twitter"
icon: "fab fa-fw fa-twitter-square"
url: "https://twitter.com/underdarkGIS"
Eric J. Ma:
name : "Eric J. Ma"
bio : "Senior Principal Data Scientist, Moderna"
Expand Down Expand Up @@ -83,29 +77,29 @@ Carlos Ramos Carreño:
icon: "fab fa-fw fa-linkedin"
url: "https://www.linkedin.com/in/carlos-ramos-carre%C3%B1o-3745932ab/"
Patrick J. Roddy:
name : Patrick J. Roddy
bio : Research Software Engineer, University College London
avatar : /images/people/patrick-j-roddy.jpg
name : "Patrick J. Roddy"
bio : "Research Software Engineer, University College London"
avatar : "/images/people/patrick-j-roddy.jpg"
links:
- label: GitHub
icon: fab fa-fw fa-github
url: https://github.com/paddyroddy
- label: LinkedIn
icon: fab fa-fw fa-linkedin
url: https://www.linkedin.com/in/patrickjamesroddy
- label: Website
icon: fas fa-fw fa-link
url: https://paddyroddy.github.io
- label: "GitHub"
icon: "fab fa-fw fa-github"
url: "https://github.com/paddyroddy"
- label: "LinkedIn"
icon: "fab fa-fw fa-linkedin"
url: "https://www.linkedin.com/in/patrickjamesroddy"
- label: "Website"
icon: "fas fa-fw fa-link"
url: "https://paddyroddy.github.io"
Eliot W. Robson:
name : Eliot W. Robson
name : "Eliot W. Robson"
bio : "PhD Student, University of Illinois Urbana-Champaign"
avatar : /images/people/eliot-w-robson.jpg
avatar : "/images/people/eliot-w-robson.jpg"
links:
- label: "Email"
icon: "fas fa-fw fa-envelope-square"
url: "mailto:[email protected]"
- label: GitHub
icon: fab fa-fw fa-github
- label: "GitHub"
icon: "fab fa-fw fa-github"
url: https://github.com/eliotwrobson
- label: LinkedIn
icon: fab fa-fw fa-linkedin
Expand Down
2 changes: 0 additions & 2 deletions _includes/social-share.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
<h4 class="page__share-title">{{ site.data.ui-text[site.locale].share_on_label | default: "Share on" }}</h4>
{% endif %}

<a href="https://twitter.com/intent/tweet?{% if site.twitter.username %}via={{ site.twitter.username | url_encode }}&{% endif %}text={{ page.title | url_encode }}%20{{ page.url | absolute_url | url_encode }}" class="btn btn--twitter" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Twitter"><i class="fab fa-fw fa-twitter" aria-hidden="true"></i><span> Twitter</span></a>

<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.url | absolute_url | url_encode }}" class="btn btn--facebook" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Facebook"><i class="fab fa-fw fa-facebook" aria-hidden="true"></i><span> Facebook</span></a>

<a href="https://www.linkedin.com/shareArticle?mini=true&url={{ page.url | absolute_url | url_encode }}" class="btn btn--linkedin" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} LinkedIn"><i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span> LinkedIn</span></a>
Expand Down
41 changes: 41 additions & 0 deletions _posts/2019-10-26-pyos-min-mistakes-theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,34 @@ The image below should extend outside of the parent container on right.
{: .highlight-quote }


### Fancy blockquote magenta & purple variants

```markdown
> This entire effort underscores the power of community when guided in
> the right direction, showcasing how collective effort can drive
> meaningful progress.
{: .highlight-quote .magenta }
```

> This entire effort underscores the power of community when guided in
> the right direction, showcasing how collective effort can drive
> meaningful progress.
{: .highlight-quote .magenta }


```markdown
> This entire effort underscores the power of community when guided in
> the right direction, showcasing how collective effort can drive
> meaningful progress.
{: .highlight-quote .purple }
```

> This entire effort underscores the power of community when guided in
> the right direction, showcasing how collective effort can drive
> meaningful progress.
{: .highlight-quote .purple }


### Quotes using include files

You can also create blockquotes using include files.
Expand Down Expand Up @@ -329,3 +357,16 @@ Using the Kramdown Markdown renderer with Jekyll allows you to add [block](http:

**Jekyll 3:** Kramdown is the default for `jekyll new` sites and those hosted on GitHub Pages. Not using Kramdown? That's OK. The following classes are still available when used with standard HTML.
{: .notice--warning}


## YouTube

You can use embeds to add a youtube video to a page. You can copy the id from the video url and add it to the include line below. The jekyll will do the rest for you!

```
{% raw %}
{% include video id="n9IZGT4DxDs" provider="youtube" %}
{% endraw %}
```

{% include video id="n9IZGT4DxDs" provider="youtube" %}
Loading