7 | {% include sidebar.html %}
8 |
9 |
10 |
{{ page.title }}
11 | {% include base_path %}
12 | {% for post in page.posts %}
13 | {% include archive-single.html %}
14 | {% endfor %}
15 |
16 |
--------------------------------------------------------------------------------
/_sass/vendor/susy/susy/language/susy/_validation.scss:
--------------------------------------------------------------------------------
1 | // Validation
2 | // ==========
3 |
4 |
5 | // Validate Column Math
6 | // --------------------
7 | @function valid-column-math(
8 | $math,
9 | $column-width
10 | ) {
11 | @if $math == static and not($column-width) {
12 | @error 'Static math requires a valid column-width setting.';
13 | }
14 |
15 | @return $column-width;
16 | }
17 |
--------------------------------------------------------------------------------
/talkmap/org-locations.js:
--------------------------------------------------------------------------------
1 | var addressPoints = [
2 | [
3 | "Berkeley CA, USA",
4 | 37.8708393,
5 | -122.2728638
6 | ],
7 | [
8 | "London, UK",
9 | 51.5073219,
10 | -0.1276473
11 | ],
12 | [
13 | "San Francisco, California",
14 | 37.7792808,
15 | -122.4192362
16 | ],
17 | [
18 | "Los Angeles, CA",
19 | 34.0543942,
20 | -118.2439408
21 | ]
22 | ];
--------------------------------------------------------------------------------
/_includes/analytics.html:
--------------------------------------------------------------------------------
1 | {% if site.analytics.provider and page.analytics != false %}
2 |
3 | {% case site.analytics.provider %}
4 | {% when "google" %}
5 | {% include /analytics-providers/google.html %}
6 | {% when "google-universal" %}
7 | {% include /analytics-providers/google-universal.html %}
8 | {% when "custom" %}
9 | {% include /analytics-providers/custom.html %}
10 | {% endcase %}
11 |
12 | {% endif %}
--------------------------------------------------------------------------------
/_sass/vendor/font-awesome/_animated.scss:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | animation: fa-spin 2s infinite linear;
6 | }
7 |
8 | .#{$fa-css-prefix}-pulse {
9 | animation: fa-spin 1s infinite steps(8);
10 | }
11 |
12 | @keyframes fa-spin {
13 | 0% {
14 | transform: rotate(0deg);
15 | }
16 |
17 | 100% {
18 | transform: rotate(360deg);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/_sass/vendor/susy/susy/language/_susyone.scss:
--------------------------------------------------------------------------------
1 | // ---------------------------------------------------------------------------
2 | // Partials
3 |
4 | $susy-version: 1.5;
5 |
6 | @import "susyone/settings";
7 | @import "susyone/functions";
8 | @import "susyone/grid";
9 | @import "susyone/isolation";
10 | @import "susyone/padding";
11 | @import "susyone/margin";
12 | @import "susyone/media";
13 | @import "susyone/background";
14 |
--------------------------------------------------------------------------------
/_talks/2012-03-01-talk-1.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Talk 1 on Relevant Topic in Your Field"
3 | collection: talks
4 | type: "Talk"
5 | permalink: /talks/2012-03-01-talk-1
6 | venue: "UC San Francisco, Department of Testing"
7 | date: 2012-03-01
8 | location: "San Francisco, California"
9 | ---
10 |
11 | This is a description of your talk, which is a markdown files that can be all markdown-ified like any other post. Yay markdown!
12 |
--------------------------------------------------------------------------------
/_sass/vendor/font-awesome/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | list-style-type: none;
6 | margin-left: $fa-li-width * 5/4;
7 | padding-left: 0;
8 |
9 | > li { position: relative; }
10 | }
11 |
12 | .#{$fa-css-prefix}-li {
13 | left: -$fa-li-width;
14 | position: absolute;
15 | text-align: center;
16 | width: $fa-li-width;
17 | line-height: inherit;
18 | }
19 |
--------------------------------------------------------------------------------
/_data/comments/markup-syntax-highlighting/comment-1470969665387.yml:
--------------------------------------------------------------------------------
1 | message: "Here's a test comment with a Markdown code block:\r\n\r\n```scss\r\nh1, h2, h3, h4, h5, h6 {\r\n margin: 2em 0 0.5em;\r\n line-height: 1.2;\r\n font-family: $header-font-family;\r\n font-weight: bold;\r\n}\r\n```"
2 | name: Michael Rose
3 | email: 1ce71bc10b86565464b612093d89707e
4 | url: 'https://mademistakes.com'
5 | hidden: ''
6 | date: '2016-08-12T02:41:04.706Z'
7 |
--------------------------------------------------------------------------------
/_sass/vendor/breakpoint/_no-query.scss:
--------------------------------------------------------------------------------
1 | @function breakpoint-no-query($query) {
2 | @if type-of($query) == 'list' {
3 | $keyword: nth($query, 1);
4 |
5 | @if type-of($keyword) == 'string' and ($keyword == 'no-query' or $keyword == 'no query' or $keyword == 'fallback') {
6 | @return nth($query, 2);
7 | }
8 | @else {
9 | @return false;
10 | }
11 | }
12 | @else {
13 | @return false;
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/_sass/_animations.scss:
--------------------------------------------------------------------------------
1 | /* ==========================================================================
2 | ANIMATIONS
3 | ========================================================================== */
4 |
5 | @-webkit-keyframes intro {
6 | 0% {
7 | opacity: 0;
8 | }
9 | 100% {
10 | opacity: 1;
11 | }
12 | }
13 |
14 | @keyframes intro {
15 | 0% {
16 | opacity: 0;
17 | }
18 | 100% {
19 | opacity: 1;
20 | }
21 | }
--------------------------------------------------------------------------------
/_sass/vendor/font-awesome/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix},
5 | .fas,
6 | .far,
7 | .fal,
8 | .fab {
9 | -moz-osx-font-smoothing: grayscale;
10 | -webkit-font-smoothing: antialiased;
11 | display: inline-block;
12 | font-style: normal;
13 | font-variant: normal;
14 | text-rendering: auto;
15 | line-height: 1;
16 | }
17 |
18 | %fa-icon {
19 | @include fa-icon;
20 | }
21 |
--------------------------------------------------------------------------------
/_talks/2014-02-01-talk-2.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Talk 2 on Relevant Topic in Your Field"
3 | collection: talks
4 | type: "Talk"
5 | permalink: /talks/2014-02-01-talk-2
6 | venue: "London School of Testing"
7 | date: 2014-02-01
8 | location: "London, UK"
9 | ---
10 |
11 | [More information here](http://example2.com)
12 |
13 | This is a description of your talk, which is a markdown files that can be all markdown-ified like any other post. Yay markdown!
14 |
--------------------------------------------------------------------------------
/_teaching/2015-spring-teaching-2.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Teaching experience 2"
3 | collection: teaching
4 | type: "Workshop"
5 | permalink: /teaching/2015-spring-teaching-1
6 | venue: "University 1, Department"
7 | date: 2015-01-01
8 | location: "City, Country"
9 | ---
10 |
11 | This is a description of a teaching experience. You can use markdown like any other post.
12 |
13 | Heading 1
14 | ======
15 |
16 | Heading 2
17 | ======
18 |
19 | Heading 3
20 | ======
21 |
--------------------------------------------------------------------------------
/_sass/vendor/susy/susy/output/support/_clearfix.scss:
--------------------------------------------------------------------------------
1 | // Susy Fallback Clearfix
2 | // ======================
3 |
4 |
5 | // Clearfix
6 | // --------
7 | // Check for an existing support mixin, or provide a simple fallback.
8 | @mixin susy-clearfix {
9 | @if susy-support(clearfix, (mixin: clearfix)) {
10 | @include clearfix;
11 | } @else {
12 | &:after {
13 | content: " ";
14 | display: block;
15 | clear: both;
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/_talks/2014-03-01-talk-3.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Conference Proceeding talk 3 on Relevant Topic in Your Field"
3 | collection: talks
4 | type: "Conference proceedings talk"
5 | permalink: /talks/2014-03-01-talk-3
6 | venue: "Testing Institute of America 2014 Annual Conference"
7 | date: 2014-03-01
8 | location: "Los Angeles, CA"
9 | ---
10 |
11 | This is a description of your conference proceedings talk, note the different field in type. You can put anything in this field.
12 |
--------------------------------------------------------------------------------
/_teaching/2014-spring-teaching-1.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Teaching experience 1"
3 | collection: teaching
4 | type: "Undergraduate course"
5 | permalink: /teaching/2014-spring-teaching-1
6 | venue: "University 1, Department"
7 | date: 2014-01-01
8 | location: "City, Country"
9 | ---
10 |
11 | This is a description of a teaching experience. You can use markdown like any other post.
12 |
13 | Heading 1
14 | ======
15 |
16 | Heading 2
17 | ======
18 |
19 | Heading 3
20 | ======
--------------------------------------------------------------------------------
/_pages/divcontent.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |