Archive Layout with Content

A variety of common markup showing how the theme styles them.

Header one

Header two

Header three

Header four

Header five
Header six

Blockquotes

Single line blockquote:

Quotes are cool.

Tables

EntryItem 
John Doe2016Description of the item in the list
Jane Doe2019Description of the item in the list
Doe Doe2022Description of the item in the list
Header1Header2Header3
cell1cell2cell3
cell4cell5cell6
cell1cell2cell3
cell4cell5cell6
Foot1Foot2Foot3

Definition Lists

Definition List Title
Definition list division.
Startup
A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
#dowork
Coined by Rob Dyrdek and his personal body guard Christopher “Big Black” Boykins, “Do Work” works as a self motivator, to motivating your friends.
Do It Live
I’ll let Bill O’Reilly explain this one.

Unordered Lists (Nested)

Ordered List (Nested)

  1. List item one
    1. List item one
      1. List item one
      2. List item two
      3. List item three
      4. List item four
    2. List item two
    3. List item three
    4. List item four
  2. List item two
  3. List item three
  4. List item four

Buttons

Make any link standout more when applying the .btn class.

Notices

Watch out! You can also add notices by appending {: .notice} to a paragraph.

HTML Tags

Address Tag

1 Infinite Loop
Cupertino, CA 95014
United States

This is an example of a link.

Abbreviation Tag

The abbreviation CSS stands for “Cascading Style Sheets”.

Cite Tag

“Code is poetry.” —Automattic

Code Tag

You will learn later on in these tests that word-wrap: break-word; will be your best friend.

Strike Tag

This tag will let you strikeout text.

Emphasize Tag

The emphasize tag should italicize text.

Insert Tag

This tag should denote inserted text.

Keyboard Tag

This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag.

Preformatted Tag

This tag styles large blocks of code.

.post-title {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.2;
  and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}

Quote Tag

Developers, developers, developers… –Steve Ballmer

Strong Tag

This tag shows bold text.

Subscript Tag

Getting our science styling on with H2O, which should push the “2” down.

Superscript Tag

Still sticking with science and Isaac Newton’s E = MC2, which should lift the 2 up.

Variable Tag

This allows you to denote variables.

Archive Layout with Content

A variety of common markup showing how the theme styles them.

Header one

Header two

Header three

Header four

Header five
Header six

Blockquotes

Single line blockquote:

Quotes are cool.

Tables

EntryItem 
John Doe2016Description of the item in the list
Jane Doe2019Description of the item in the list
Doe Doe2022Description of the item in the list
Header1Header2Header3
cell1cell2cell3
cell4cell5cell6
cell1cell2cell3
cell4cell5cell6
Foot1Foot2Foot3

Definition Lists

Definition List Title
Definition list division.
Startup
A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
#dowork
Coined by Rob Dyrdek and his personal body guard Christopher “Big Black” Boykins, “Do Work” works as a self motivator, to motivating your friends.
Do It Live
I’ll let Bill O’Reilly explain this one.

Unordered Lists (Nested)

  • List item one
    • List item one
      • List item one
      • List item two
      • List item three
      • List item four
    • List item two
    • List item three
    • List item four
  • List item two
  • List item three
  • List item four

Ordered List (Nested)

  1. List item one
    1. List item one
      1. List item one
      2. List item two
      3. List item three
      4. List item four
    2. List item two
    3. List item three
    4. List item four
  2. List item two
  3. List item three
  4. List item four

Buttons

Make any link standout more when applying the .btn class.

Notices

Watch out! You can also add notices by appending {: .notice} to a paragraph.

HTML Tags

Address Tag

1 Infinite Loop
Cupertino, CA 95014
United States

This is an example of a link.

Abbreviation Tag

The abbreviation CSS stands for “Cascading Style Sheets”.

Cite Tag

“Code is poetry.” —Automattic

Code Tag

You will learn later on in these tests that word-wrap: break-word; will be your best friend.

Strike Tag

This tag will let you strikeout text.

Emphasize Tag

The emphasize tag should italicize text.

Insert Tag

This tag should denote inserted text.

Keyboard Tag

This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag.

Preformatted Tag

This tag styles large blocks of code.

.post-title {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.2;
  and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}

Quote Tag

Developers, developers, developers… –Steve Ballmer

Strong Tag

This tag shows bold text.

Subscript Tag

Getting our science styling on with H2O, which should push the “2” down.

Superscript Tag

Still sticking with science and Isaac Newton’s E = MC2, which should lift the 2 up.

Variable Tag

This allows you to denote variables.

{% include base_path %} {% for post in site.pages %} {% include archive-single.html %} {% endfor %}

Posts by Category

{% include base_path %} {% include group-by-array collection=site.posts field=”categories” %}

{% for category in group_names %} {% assign posts = group_items[forloop.index0] %}

{{ category }}

{% for post in posts %} {% include archive-single.html %} {% endfor %} {% endfor %}

Posts by Collection

{% include base_path %} {% capture written_label %}’None’{% endcapture %}

{% for collection in site.collections %} {% unless collection.output == false or collection.label == “posts” %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %} <h2 id="{{ label | slugify }}" class="archive__subtitle">{{ label }}</h2> {% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} {% for post in collection.docs %} {% unless collection.output == false or collection.label == “posts” %} {% include archive-single.html %} {% endunless %} {% endfor %} {% endfor %}

CV

{% include base_path %} {% capture written_label %}’None’{% endcapture %}

Download the latest version of my CV here.

/*

  • Minimal Mistakes Jekyll Theme *
    • Michael Rose
    • mademistakes.com
    • https://twitter.com/mmistakes * */

@import “vendor/breakpoint/breakpoint”; // media query mixins @import “variables”; @import “mixins”; @import “vendor/susy/susy”;

@import “reset”; @import “base”;

@import “utilities”; @import “animations”; @import “tables”; @import “buttons”; @import “notices”; @import “masthead”; @import “navigation”; @import “footer”; @import “syntax”;

@import “forms”;

@import “page”; @import “archive”; @import “sidebar”;

@import “vendor/font-awesome/fontawesome”; @import “vendor/font-awesome/solid”; @import “vendor/font-awesome/brands”; @import “vendor/magnific-popup/magnific-popup”; @import “print”;

Markdown

Locations of key files/directories

  • Basic config options: _config.yml
  • Top navigation bar config: _data/navigation.yml
  • Single pages: _pages/
  • Collections of pages are .md or .html files in:
    • _publications/
    • _portfolio/
    • _posts/
    • _teaching/
    • _talks/
  • Footer: _includes/footer.html
  • Static files (like PDFs): /files/
  • Profile image (can set in _config.yml): images/profile.png

Tips and hints

  • Name a file “.md” to have it render in markdown, name it “.html” to render in HTML.
  • Go to the commit list (on your repo) to find the last version Github built with Jekyll.
    • Green check: successful build
    • Orange circle: building
    • Red X: error
    • No icon: not built

Resources

Markdown guide

Header three

Header four

Header five
Header six

Blockquotes

Single line blockquote:

Quotes are cool.

Tables

Table 1

EntryItem 
John Doe2016Description of the item in the list
Jane Doe2019Description of the item in the list
Doe Doe2022Description of the item in the list

Table 2

Header1Header2Header3
cell1cell2cell3
cell4cell5cell6
cell1cell2cell3
cell4cell5cell6
Foot1Foot2Foot3

Definition Lists

Definition List Title
Definition list division.
Startup
A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
#dowork
Coined by Rob Dyrdek and his personal body guard Christopher “Big Black” Boykins, “Do Work” works as a self motivator, to motivating your friends.
Do It Live
I’ll let Bill O’Reilly explain this one.

Unordered Lists (Nested)

  • List item one
    • List item one
      • List item one
      • List item two
      • List item three
      • List item four
    • List item two
    • List item three
    • List item four
  • List item two
  • List item three
  • List item four

Ordered List (Nested)

  1. List item one
    1. List item one
      1. List item one
      2. List item two
      3. List item three
      4. List item four
    2. List item two
    3. List item three
    4. List item four
  2. List item two
  3. List item three
  4. List item four

Buttons

Make any link standout more when applying the .btn class.

Notices

Watch out! You can also add notices by appending {: .notice} to a paragraph.

HTML Tags

Address Tag

1 Infinite Loop
Cupertino, CA 95014
United States

This is an example of a link.

Abbreviation Tag

The abbreviation CSS stands for “Cascading Style Sheets”.

Cite Tag

“Code is poetry.” —Automattic

Code Tag

You will learn later on in these tests that word-wrap: break-word; will be your best friend.

Strike Tag

This tag will let you strikeout text.

Emphasize Tag

The emphasize tag should italicize text.

Insert Tag

This tag should denote inserted text.

Keyboard Tag

This scarcely known tag emulates keyboard text, which is usually styled like the <code> tag.

Preformatted Tag

This tag styles large blocks of code.

.post-title {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 38px;
  line-height: 1.2;
  and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
}

Quote Tag

Developers, developers, developers… –Steve Ballmer

Strong Tag

This tag shows bold text.

Subscript Tag

Getting our science styling on with H2O, which should push the “2” down.

Superscript Tag

Still sticking with science and Isaac Newton’s E = MC2, which should lift the 2 up.

Variable Tag

This allows you to denote variables.

Page Archive

{% include base_path %} {% for post in site.pages %} {% include archive-single.html %} {% endfor %}

Portfolio

{% include base_path %}

{% for post in site.portfolio %} {% include archive-single.html %} {% endfor %}

Publications

{% if site.author.googlescholar %} You can also find my articles on my Google Scholar profile. {% endif %}

{% include base_path %}

{% if site.publication_category %} {% for category in site.publication_category %} {% assign title_shown = false %} {% for post in site.publications reversed %} {% if post.category != category[0] %} {% continue %} {% endif %} {% unless title_shown %} <h2>{{ category[1].title }}</h2><hr /> {% assign title_shown = true %} {% endunless %} {% include archive-single.html %} {% endfor %} {% endfor %} {% else %} {% for post in site.publications reversed %} {% include archive-single.html %} {% endfor %} {% endif %}

Sitemap

{% include base_path %}

A list of all the posts and pages found on the site. For you robots out there is an XML version available for digesting as well.

Pages

{% for post in site.pages %} {% include archive-single.html %} {% endfor %}

Posts

{% for post in site.posts %} {% include archive-single.html %} {% endfor %}

{% capture written_label %}’None’{% endcapture %}

{% for collection in site.collections %} {% unless collection.output == false or collection.label == “posts” %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %}

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} {% for post in collection.docs %} {% unless collection.output == false or collection.label == “posts” %} {% include archive-single.html %} {% endunless %} {% endfor %} {% endfor %}

Posts by Tags

{% include base_path %} {% include group-by-array collection=site.posts field=”tags” %}

{% for tag in group_names %} {% assign posts = group_items[forloop.index0] %}

{{ tag }}

{% for post in posts %} {% include archive-single.html %} {% endfor %} {% endfor %}

Talk map

This map is generated from a Jupyter Notebook file in /_talks/talkmap.ipynb, which mines the location fields in the .md files in _talks/.

Teaching

{% include base_path %}

{% for post in site.teaching reversed %} {% include archive-single.html %} {% endfor %}

Terms and Privacy Policy

{% include base_path %} {% include toc %}

Privacy Policy

The privacy of my visitors is extremely important. This Privacy Policy outlines the types of personal information that is received and collected and how it is used.

First and foremost, I will never share your email address or any other personal information to anyone without your direct consent.

Log Files

Like many other websites, this site uses log files to help learn about when, from where, and how often traffic flows to this site. The information in these log files include:

  • Internet Protocol addresses (IP)
  • Types of browser
  • Internet Service Provider (ISP)
  • Date and time stamp
  • Referring and exit pages
  • Number of clicks

All of this information is not linked to anything that is personally identifiable.

Cookies and Web Beacons

When you visit this site “convenience” cookies are stored on your computer when you submit a comment to help you log in faster to Disqus the next time you leave a comment.

Third-party advertisers may also place and read cookies on your browser and/or use web beacons to collect information. This site has no access or control over these cookies. You should review the respective privacy policies on any and all third-party ad servers for more information regarding their practices and how to opt-out.

If you wish to disable cookies, you may do so through your web browser options. Instructions for doing so can be found on the specific web browsers’ websites.

Google Analytics

Google Analytics is a web analytics tool I use to help understand how visitors engage with this website. It reports website trends using cookies and web beacons without identifying individual visitors. You can read Google Analytics Privacy Policy.

Blog posts

{% include base_path %} {% capture written_year %}’None’{% endcapture %} {% for post in site.posts %} {% capture year %}{{ post.date | date: ‘%Y’ }}{% endcapture %} {% if year != written_year %} <h2 id="{{ year | slugify }}" class="archive__subtitle">{{ year }}</h2> {% capture written_year %}{{ year }}{% endcapture %} {% endif %} {% include archive-single.html %} {% endfor %}

@import “jekyll-theme-primer”;

{“/about/”:”https://eweisbrod.github.io/”,”/about.html”:”https://eweisbrod.github.io/”,”/wordpress/cv/”:”https://eweisbrod.github.io/cv/”,”/md/”:”https://eweisbrod.github.io/markdown/”,”/markdown.html”:”https://eweisbrod.github.io/markdown/”,”/nmp/”:”https://eweisbrod.github.io/non-menu-page/”,”/nmp.html”:”https://eweisbrod.github.io/non-menu-page/”,”/wordpress/blog-posts/”:”https://eweisbrod.github.io/year-archive/”}

Jupyter notebook markdown generator

Jupyter notebook markdown generator

These .ipynb files are Jupyter notebook files that convert a TSV containing structured data about talks (talks.tsv) or presentations (presentations.tsv) into individual markdown files that will be properly formatted for the academicpages template. The notebooks contain a lot of documentation about the process. The .py files are pure python that do the same things if they are executed in a terminal, they just don’t have pretty documentation.

<?xml version=”1.0” encoding=”UTF-8”?> {% if page.xsl %}<?xml-stylesheet type=”text/xsl” href=”{{ “/sitemap.xsl” | absolute_url }}”?> {% endif %} {% assign collections = site.collections | where_exp:'collection','collection.output != false' %}{% for collection in collections %}{% assign docs = collection.docs | where_exp:'doc','doc.sitemap != false' %}{% for doc in docs %}

{{ doc.url | replace:'/index.html','/' | absolute_url | xml_escape }}

{% if doc.last_modified_at or doc.date %}{{ doc.last_modified_at | default: doc.date | date_to_xmlschema }} {% endif %}</url> {% endfor %}{% endfor %}{% assign pages = site.html_pages | where_exp:’doc’,’doc.sitemap != false’ | where_exp:’doc’,’doc.url != “/404.html”’ %}{% for page in pages %}

{{ page.url | replace:'/index.html','/' | absolute_url | xml_escape }}

{% if page.last_modified_at %}{{ page.last_modified_at | date_to_xmlschema }} {% endif %}</url> {% endfor %}{% assign static_files = page.static_files | where_exp:’page’,’page.sitemap != false’ | where_exp:’page’,’page.name != “404.html”’ %}{% for file in static_files %}

{{ file.path | replace:'/index.html','/' | absolute_url | xml_escape }} {{ file.modified_time | date_to_xmlschema }}

</url> {% endfor %}</urlset>

Sitemap: {{ “sitemap.xml”absolute_url }}

<?xml version=”1.0” encoding=”utf-8”?>{% if page.xsl %}<?xml-stylesheet type=”text/xml” href=”{{ ‘/feed.xslt.xml’absolute_url }}”?>{% endif %}<feed xmlns=”http://www.w3.org/2005/Atom” {% if site.lang %}xml:lang=”{{ site.lang }}”{% endif %}>Jekyll<link href=”{{ page.urlabsolute_url }}” rel=”self” type=”application/atom+xml” /><link href=”{{ ‘/’absolute_url }}” rel=”alternate” type=”text/html” {% if site.lang %}hreflang=”{{ site.lang }}” {% endif %}/>{{ site.timedate_to_xmlschema }}</updated>{{ page.urlabsolute_urlxml_escape }}</id>{% assign title = site.titledefault: site.name %}{% if page.collection != “posts” %}{% assign collection = page.collectioncapitalize %}{% assign title = titleappend: “append: collection %}{% endif %}{% if page.category %}{% assign category = page.categorycapitalize %}{% assign title = titleappend: “append: category %}{% endif %}{% if title %}{{ titlesmartifyxml_escape }}</title>{% endif %}{% if site.description %}{{ site.descriptionxml_escape }}</subtitle>{% endif %}{% if site.author %}{{ site.author.namedefault: site.authorxml_escape }}</name>{% if site.author.email %}{{ site.author.emailxml_escape }}</email>{% endif %}{% if site.author.uri %}{{ site.author.urixml_escape }}</uri>{% endif %}</author>{% endif %}{% if page.tags %}{% assign posts = site.tags[page.tags] %}{% else %}{% assign posts = site[page.collection] %}{% endif %}{% if page.category %}{% assign posts = postswhere: “categories”, page.category %}{% endif %}{% unless site.show_drafts %}{% assign posts = postswhere_exp: “post”, “post.draft != true” %}{% endunless %}{% assign posts = postssort: “date”reverse %}{% assign posts_limit = site.feed.posts_limitdefault: 10 %}{% for post in posts limit: posts_limit %}<entry{% if post.lang %}{{“ “}}xml:lang=”{{ post.lang }}”{% endif %}>{% assign post_title = post.titlesmartifystrip_htmlnormalize_whitespacexml_escape %}{{ post_title }}<link href=”{{ post.urlabsolute_url }}” rel=”alternate” type=”text/html” title=”{{ post_title }}” />{{ post.datedate_to_xmlschema }}</published>{{ post.last_modified_atdefault: post.datedate_to_xmlschema }}</updated>{{ post.idabsolute_urlxml_escape }}</id>{% assign excerpt_only = post.feed.excerpt_onlydefault: site.feed.excerpt_only %}{% unless excerpt_only %}<content type=”html” xml:base=”{{ post.urlabsolute_urlxml_escape }}”><![CDATA[{{ post.contentstrip }}]]></content>{% endunless %}{% assign post_author = post.authordefault: post.authors[0]default: site.author %}{% assign post_author = site.data.authors[post_author]default: post_author %}{% assign post_author_email = post_author.emaildefault: nil %}{% assign post_author_uri = post_author.uridefault: nil %}{% assign post_author_name = post_author.namedefault: post_author %}{{ post_author_namedefault: “”xml_escape }}</name>{% if post_author_email %}{{ post_author_emailxml_escape }}</email>{% endif %}{% if post_author_uri %}{{ post_author_urixml_escape }}</uri>{% endif %}</author>{% if post.category %}<category term=”{{ post.categoryxml_escape }}” />{% elsif post.categories %}{% for category in post.categories %}<category term=”{{ categoryxml_escape }}” />{% endfor %}{% endif %}{% for tag in post.tags %}<category term=”{{ tagxml_escape }}” />{% endfor %}{% assign post_summary = post.descriptiondefault: post.excerpt %}{% if post_summary and post_summary != empty %}<summary type="html"><![CDATA[{{ post_summarystrip_htmlnormalize_whitespace }}]]></summary>{% endif %}{% assign post_image = post.image.pathdefault: post.image %}{% if post_image %}{% unless post_image contains “://” %}{% assign post_image = post_imageabsolute_url %}{% endunless %}<media:thumbnail xmlns:media=”http://search.yahoo.com/mrss/” url=”{{ post_imagexml_escape }}” /><media:content medium=”image” url=”{{ post_imagexml_escape }}” xmlns:media=”http://search.yahoo.com/mrss/” />{% endif %}</entry>{% endfor %}</feed>