Update everything.
parent
4559c1d7af
commit
229d1a5414
@ -1,2 +1,3 @@
|
|||||||
_site
|
_site
|
||||||
_includes/pubs.html
|
_includes/pubs.html
|
||||||
|
/test-deploy.sh
|
||||||
|
@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
{% assign item = include.item %}
|
||||||
|
{% if item.icon %}
|
||||||
|
{% assign icon = item.icon %}
|
||||||
|
{% assign class = "shortnews" %}
|
||||||
|
{% else %}
|
||||||
|
{% assign icon = "newspaper-o" %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<li class="{{ class }}">
|
||||||
|
<span class="fa fa-fw fa-{{ icon }}"></span>
|
||||||
|
<span class="date">{{ post.date | date: '%B %d, %Y' }}</span>
|
||||||
|
<div>
|
||||||
|
{% if post.shortnews %}
|
||||||
|
{{ post.content | remove: '<p>' | remove: '</p>' }}
|
||||||
|
{% else %}
|
||||||
|
<h4> <a href="{{ site.base }}{{ post.url }}"> {{ post.title }}</a> </h4>
|
||||||
|
{{ post.excerpt | remove: '<p>' | remove: '</p>' }}
|
||||||
|
<br>
|
||||||
|
<a href="{{ site.base }}{{ post.url }}"> Read more »</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</li>
|
@ -0,0 +1,38 @@
|
|||||||
|
|
||||||
|
{% assign person = include.person %}
|
||||||
|
|
||||||
|
{% comment %}
|
||||||
|
|
||||||
|
Usage: {% include person-image.html person=person %}
|
||||||
|
|
||||||
|
Sizing of the SVG is done in a viewBox, and it's resized later in CSS.
|
||||||
|
|
||||||
|
text-decoration hack is for Safari. We don't SVGs to be underlined.
|
||||||
|
|
||||||
|
{% endcomment %}
|
||||||
|
|
||||||
|
{% if person.image %}
|
||||||
|
{% capture image %}
|
||||||
|
<img class="rounded-circle profile" src="{{ site.base }}{{ person.image }}" />
|
||||||
|
{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% capture image %}
|
||||||
|
<svg class="profile noprofile" viewBox="0 0 100 100">
|
||||||
|
<circle r="50" cx="50" cy="50" />
|
||||||
|
<text x="50" y="50"
|
||||||
|
font-size="70"
|
||||||
|
text-anchor="middle" dominant-baseline="central" >
|
||||||
|
{{ person.display_name | slice: 0 }}
|
||||||
|
</text>
|
||||||
|
</svg>
|
||||||
|
{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if person.webpage %}
|
||||||
|
<a href="{{ person.webpage | escape }}"
|
||||||
|
style="text-decoration: none">
|
||||||
|
{{ image }}
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
{{ image }}
|
||||||
|
{% endif %}
|
@ -0,0 +1,49 @@
|
|||||||
|
|
||||||
|
{% assign person = include.person %}
|
||||||
|
|
||||||
|
{% comment %}
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
|
||||||
|
{% for item in site.data.people %}
|
||||||
|
{% assign person = item[1] %}
|
||||||
|
{% if person.role == role.key %}
|
||||||
|
{% include person.html person=person image=true %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
Use the image parameter to include or not include an image.
|
||||||
|
|
||||||
|
Note that pl-0 just removes the left padding from the name part that is put
|
||||||
|
there by default by Bootstrap columns.
|
||||||
|
|
||||||
|
{% endcomment %}
|
||||||
|
|
||||||
|
{% if person.webpage %}
|
||||||
|
{% capture name %}
|
||||||
|
<a href="{{ person.webpage | escape }}"> {{ person.display_name }} </a>
|
||||||
|
{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% assign name = person.display_name %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if include.image %}
|
||||||
|
<div class="person person-with-image row align-items-center">
|
||||||
|
<div class="col-auto">
|
||||||
|
{% include person-image.html person=person %}
|
||||||
|
</div>
|
||||||
|
<div class="col pl-0">
|
||||||
|
<h4> {{ name }} </h4>
|
||||||
|
{% if person.bio %}
|
||||||
|
<div class="bio">{{person.bio}}</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="person person-without-image">
|
||||||
|
{{ name }}
|
||||||
|
{% if person.bio %}
|
||||||
|
<span class="bio">{{person.bio}}</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
@ -0,0 +1,49 @@
|
|||||||
|
|
||||||
|
{% assign project = include.project %}
|
||||||
|
|
||||||
|
{% capture card-content %}
|
||||||
|
<div class="card-body">
|
||||||
|
{% if project.image %}
|
||||||
|
{% assign imgurl = project.image %}
|
||||||
|
{% capture init %}{{ project.image | slice: 0,1 }}{% endcapture %}
|
||||||
|
{% if init == "/" %}
|
||||||
|
{% capture imgurl %}{{site.base}}{{project.image}}{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
<img class="img-fluid mb-3" src="{{imgurl}}" alt="{{project.title}}"/>
|
||||||
|
{% endif %}
|
||||||
|
{% if project.notitle != true %}
|
||||||
|
<h3 class="card-title">{{project.title}}</h3>
|
||||||
|
{% endif %}
|
||||||
|
<div class="card-text">
|
||||||
|
{{ project.description | markdownify }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% if project.people %}
|
||||||
|
<div class="card-footer d-flex flex-row flex-wrap justify-content-center">
|
||||||
|
{% for uname in project.people %}
|
||||||
|
<div>
|
||||||
|
{% assign person = site.data.people[uname] %}
|
||||||
|
{% include person-image.html person=person %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endcapture %}
|
||||||
|
|
||||||
|
{% if project.link %}
|
||||||
|
{% assign proj-url = project.link %}
|
||||||
|
{% else %}
|
||||||
|
{% capture proj-url %}{{site.base}}{{project.url}}.html{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if proj-url %}
|
||||||
|
<div class="card link">
|
||||||
|
<a href="{{proj-url}}">
|
||||||
|
{{ card-content }}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<div class="card">
|
||||||
|
{{ card-content }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
{% assign role-key = include.role %}
|
||||||
|
|
||||||
|
{% for role in site.roles %}
|
||||||
|
{% if role.key == role-key %}
|
||||||
|
<h3 class="pt-3"> {{ role.name }} </h3>
|
||||||
|
<div class="role {{ role.key }}">
|
||||||
|
{% for item in site.data.people %}
|
||||||
|
{% assign person = item[1] %}
|
||||||
|
{% if person.role == role.key %}
|
||||||
|
{% include person.html person=person image=include.image %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
|
||||||
|
{{ content }}
|
||||||
|
|
||||||
|
<h2> People </h2>
|
||||||
|
<section class="people project-people">
|
||||||
|
{% for uname in page.people %}
|
||||||
|
{% assign person = site.data.people[uname] %}
|
||||||
|
{% include person.html person=person image=true%}
|
||||||
|
{% endfor %}
|
||||||
|
</section>
|
@ -1,5 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
shortnews: true
|
shortnews: true
|
||||||
|
icon: newspaper-o
|
||||||
---
|
---
|
||||||
|
|
||||||
This is a short notice of something that happened recently. Just a news update blurb in no great detail.
|
This is a short notice of something that happened recently. Just a news update blurb in no great detail.
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
title: "A Full Blog Post"
|
title: "A Full Blog Post"
|
||||||
|
icon: star-o
|
||||||
---
|
---
|
||||||
|
|
||||||
Unlike a short news post, a blog post has its own page and lots of text. Text text text.
|
Unlike a short news post, a blog post has its own page and lots of text. Text text text.
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
||||||
|
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: A Project
|
||||||
|
|
||||||
|
description: |
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut hendrerit blandit
|
||||||
|
varius. Pellentesque habitant morbi tristique senectus et netus et malesuada
|
||||||
|
fames ac turpis egestas.
|
||||||
|
|
||||||
|
people:
|
||||||
|
- storm
|
||||||
|
- profx
|
||||||
|
- grad-b
|
||||||
|
- scott
|
||||||
|
- wolverine
|
||||||
|
|
||||||
|
layout: project
|
||||||
|
---
|
||||||
|
|
||||||
|
Proin massa augue, eleifend non ultricies eget, feugiat ut nisl. Fusce at
|
||||||
|
aliquet justo, id elementum lacus. Praesent eleifend tempus molestie. Nunc
|
||||||
|
vulputate sed tortor a ultrices. Nullam blandit hendrerit nisi, at suscipit
|
||||||
|
augue ultricies quis. Nulla tincidunt rhoncus nisl sed consectetur. Phasellus
|
||||||
|
dapibus, leo in varius tempus, nibh velit tincidunt lacus, ut porta eros ex et
|
||||||
|
eros. Ut diam purus, sagittis vitae cursus eu, molestie eget turpis. Sed
|
||||||
|
consectetur magna in posuere faucibus. Morbi nibh eros, blandit ut vehicula ac,
|
||||||
|
pellentesque ut urna.
|
||||||
|
|
||||||
|
Maecenas scelerisque ut enim non convallis. Mauris ut nisl vitae mi dictum
|
||||||
|
mollis. Pellentesque iaculis lacinia nisl viverra laoreet. Integer ac lacus quis
|
||||||
|
elit varius mollis et ultrices tortor. Aliquam id dolor cursus, sagittis arcu
|
||||||
|
tincidunt, scelerisque nisi. Morbi scelerisque feugiat mi in faucibus. Maecenas
|
||||||
|
suscipit aliquet est et efficitur. Nullam sed purus nec nulla placerat ultrices
|
||||||
|
ac at ipsum. Mauris a imperdiet eros.
|
||||||
|
|
||||||
|
Aenean malesuada tellus nulla, ut ultrices purus dictum et. Nunc non eleifend
|
||||||
|
nulla, ut luctus nulla. Nulla et accumsan odio. Fusce libero nisl, rutrum ac
|
||||||
|
risus sit amet, interdum feugiat eros. Morbi semper scelerisque magna vel
|
||||||
|
malesuada. Curabitur in blandit orci. Cras eu tincidunt odio. Sed consectetur
|
||||||
|
nunc purus, id pharetra felis fermentum vitae. Sed rhoncus lacus lacus. Aenean a
|
||||||
|
ante et quam viverra pharetra interdum id ligula. Vestibulum lobortis ipsum ac
|
||||||
|
risus sagittis, non dapibus metus finibus. Quisque efficitur felis sed felis
|
||||||
|
luctus, non egestas ex dapibus. Sed pharetra gravida augue, id posuere nunc
|
||||||
|
fringilla eget.
|
@ -0,0 +1,51 @@
|
|||||||
|
---
|
||||||
|
title: Big Project
|
||||||
|
|
||||||
|
description: |
|
||||||
|
This project has a lot of people working on it!!
|
||||||
|
It also has some `Mark` _down_
|
||||||
|
|
||||||
|
people:
|
||||||
|
- storm
|
||||||
|
- profx
|
||||||
|
- grad-a
|
||||||
|
- grad-b
|
||||||
|
- grad-c
|
||||||
|
- grad-d
|
||||||
|
- scott
|
||||||
|
- wolverine
|
||||||
|
- ugrad-a
|
||||||
|
- ugrad-b
|
||||||
|
- ugrad-c
|
||||||
|
- ugrad-d
|
||||||
|
|
||||||
|
layout: project
|
||||||
|
---
|
||||||
|
|
||||||
|
## A Header
|
||||||
|
|
||||||
|
Proin massa augue, eleifend non ultricies eget, feugiat ut nisl. Fusce at
|
||||||
|
aliquet justo, id elementum lacus. Praesent eleifend tempus molestie. Nunc
|
||||||
|
vulputate sed tortor a ultrices. Nullam blandit hendrerit nisi, at suscipit
|
||||||
|
augue ultricies quis. Nulla tincidunt rhoncus nisl sed consectetur. Phasellus
|
||||||
|
dapibus, `leo` in varius tempus, nibh velit tincidunt lacus, ut porta eros ex et
|
||||||
|
eros. Ut diam purus, sagittis vitae cursus eu, molestie eget turpis. Sed
|
||||||
|
consectetur magna in posuere faucibus. Morbi nibh eros, blandit ut vehicula ac,
|
||||||
|
pellentesque ut urna.
|
||||||
|
|
||||||
|
Maecenas _scelerisque ut enim non convallis_. Mauris ut nisl vitae mi dictum
|
||||||
|
mollis. Pellentesque iaculis lacinia nisl viverra laoreet. Integer ac lacus quis
|
||||||
|
elit varius mollis et ultrices tortor. Aliquam id dolor cursus, sagittis arcu
|
||||||
|
tincidunt, scelerisque nisi. Morbi scelerisque feugiat mi in faucibus. Maecenas
|
||||||
|
suscipit aliquet est et efficitur. Nullam sed purus nec nulla placerat ultrices
|
||||||
|
ac at ipsum. Mauris a imperdiet eros.
|
||||||
|
|
||||||
|
Aenean malesuada tellus nulla, ut ultrices purus dictum et. Nunc non eleifend
|
||||||
|
nulla, ut luctus nulla. Nulla et accumsan odio. Fusce libero nisl, rutrum ac
|
||||||
|
risus sit amet, interdum feugiat eros. Morbi semper scelerisque magna vel
|
||||||
|
malesuada. Curabitur in blandit orci. Cras eu tincidunt odio. Sed consectetur
|
||||||
|
nunc purus, id pharetra felis fermentum vitae. Sed rhoncus lacus lacus. Aenean a
|
||||||
|
ante et quam viverra pharetra interdum id ligula. Vestibulum lobortis ipsum ac
|
||||||
|
risus sagittis, non dapibus metus finibus. Quisque efficitur felis sed felis
|
||||||
|
luctus, non egestas ex dapibus. Sed pharetra gravida augue, id posuere nunc
|
||||||
|
fringilla eget.
|
@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: Logo Project
|
||||||
|
|
||||||
|
notitle: true
|
||||||
|
|
||||||
|
description: |
|
||||||
|
This project has a sweet logo!
|
||||||
|
|
||||||
|
people:
|
||||||
|
- storm
|
||||||
|
- grad-b
|
||||||
|
- ugrad-c
|
||||||
|
|
||||||
|
layout: project
|
||||||
|
image: "https://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Xmencomic-logo.svg/2000px-Xmencomic-logo.svg.png"
|
||||||
|
---
|
||||||
|
|
||||||
|
Some preliminary text.
|
||||||
|
|
||||||
|
## header
|
||||||
|
|
||||||
|
Maecenas _scelerisque ut enim non convallis_. Mauris ut nisl vitae mi dictum
|
||||||
|
mollis. Pellentesque iaculis lacinia nisl viverra laoreet. Integer ac lacus quis
|
||||||
|
elit varius mollis et ultrices tortor. Aliquam id dolor cursus, sagittis arcu
|
||||||
|
tincidunt, scelerisque nisi. Morbi scelerisque feugiat mi in faucibus. Maecenas
|
||||||
|
suscipit aliquet est et efficitur. Nullam sed purus nec nulla placerat ultrices
|
||||||
|
ac at ipsum. Mauris a imperdiet eros.
|
@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
title: Project with a Longer Title
|
||||||
|
|
||||||
|
description: |
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut hendrerit blandit
|
||||||
|
varius. Pellentesque habitant morbi tristique senectus et netus et malesuada
|
||||||
|
fames ac turpis egestas.
|
||||||
|
|
||||||
|
people:
|
||||||
|
- storm
|
||||||
|
- profx
|
||||||
|
- grad-b
|
||||||
|
- scott
|
||||||
|
- wolverine
|
||||||
|
|
||||||
|
layout: project
|
||||||
|
---
|
||||||
|
|
||||||
|
Proin massa augue, eleifend non ultricies eget, feugiat ut nisl. Fusce at
|
||||||
|
aliquet justo, id elementum lacus. Praesent eleifend tempus molestie. Nunc
|
||||||
|
vulputate sed tortor a ultrices. Nullam blandit hendrerit nisi, at suscipit
|
||||||
|
augue ultricies quis. Nulla tincidunt rhoncus nisl sed consectetur. Phasellus
|
||||||
|
dapibus, leo in varius tempus, nibh velit tincidunt lacus, ut porta eros ex et
|
||||||
|
eros. Ut diam purus, sagittis vitae cursus eu, molestie eget turpis. Sed
|
||||||
|
consectetur magna in posuere faucibus. Morbi nibh eros, blandit ut vehicula ac,
|
||||||
|
pellentesque ut urna.
|
||||||
|
|
||||||
|
Maecenas scelerisque ut enim non convallis. Mauris ut nisl vitae mi dictum
|
||||||
|
mollis. Pellentesque iaculis lacinia nisl viverra laoreet. Integer ac lacus quis
|
||||||
|
elit varius mollis et ultrices tortor. Aliquam id dolor cursus, sagittis arcu
|
||||||
|
tincidunt, scelerisque nisi. Morbi scelerisque feugiat mi in faucibus. Maecenas
|
||||||
|
suscipit aliquet est et efficitur. Nullam sed purus nec nulla placerat ultrices
|
||||||
|
ac at ipsum. Mauris a imperdiet eros.
|
||||||
|
|
||||||
|
Aenean malesuada tellus nulla, ut ultrices purus dictum et. Nunc non eleifend
|
||||||
|
nulla, ut luctus nulla. Nulla et accumsan odio. Fusce libero nisl, rutrum ac
|
||||||
|
risus sit amet, interdum feugiat eros. Morbi semper scelerisque magna vel
|
||||||
|
malesuada. Curabitur in blandit orci. Cras eu tincidunt odio. Sed consectetur
|
||||||
|
nunc purus, id pharetra felis fermentum vitae. Sed rhoncus lacus lacus. Aenean a
|
||||||
|
ante et quam viverra pharetra interdum id ligula. Vestibulum lobortis ipsum ac
|
||||||
|
risus sagittis, non dapibus metus finibus. Quisque efficitur felis sed felis
|
||||||
|
luctus, non egestas ex dapibus. Sed pharetra gravida augue, id posuere nunc
|
||||||
|
fringilla eget.
|
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: Short Inactive Project
|
||||||
|
status: inactive
|
||||||
|
|
||||||
|
description: |
|
||||||
|
This project is quite brief: it only has a description and an external link.
|
||||||
|
It's inactive so it should only appear on the "Research" page.
|
||||||
|
|
||||||
|
people:
|
||||||
|
- storm
|
||||||
|
- grad-e
|
||||||
|
- collab-a
|
||||||
|
|
||||||
|
layout: project
|
||||||
|
link: "https://en.wikipedia.org/wiki/X-Men"
|
||||||
|
---
|
@ -1,40 +0,0 @@
|
|||||||
#!/usr/bin/perl
|
|
||||||
#
|
|
||||||
# Check a .bib file for unretrievable URLs.
|
|
||||||
#
|
|
||||||
# Usage:
|
|
||||||
# bib-url-check.pl sampa-pubs.bib
|
|
||||||
# -or-
|
|
||||||
# < sampa-pubs.bib bib-url-check.pl > urlreport.txt
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
use strict;
|
|
||||||
use LWP::UserAgent;
|
|
||||||
|
|
||||||
# http://daringfireball.net/2010/07/improved_regex_for_matching_urls
|
|
||||||
my $urlrx = qr{(?i)\b((?:https?://|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))}o;
|
|
||||||
|
|
||||||
my $ua = LWP::UserAgent->new(
|
|
||||||
ssl_opts => { verify_hostname => 0 },
|
|
||||||
);
|
|
||||||
$ua->timeout(10);
|
|
||||||
$ua->env_proxy;
|
|
||||||
my $response;
|
|
||||||
|
|
||||||
my %done = {};
|
|
||||||
|
|
||||||
while (<>) {
|
|
||||||
if (m/$urlrx/g) {
|
|
||||||
next if $done{$1};
|
|
||||||
|
|
||||||
$response = $ua->get($1);
|
|
||||||
if ($response->is_success) {
|
|
||||||
print "OK (", $response->code, "): line $.: $1\n";
|
|
||||||
} else {
|
|
||||||
print "FAIL (", $response->code, "): line $.: $1\n";
|
|
||||||
}
|
|
||||||
$done{$1} = 1;
|
|
||||||
sleep 1;
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: Blog
|
||||||
|
---
|
||||||
|
|
||||||
|
<ul class="news list-unstyled">
|
||||||
|
{% for post in site.posts %}
|
||||||
|
{% include news-item.html item=post %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
@ -1,30 +0,0 @@
|
|||||||
---
|
|
||||||
layout: nil
|
|
||||||
---
|
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
||||||
|
|
||||||
<title type="text" xml:lang="en">{{ site.name }}</title>
|
|
||||||
<link type="application/atom+xml" href="{{ site.url }}{{ site.base }}/blog/blog.xml" rel="self"/>
|
|
||||||
<link href="{{ site.url }}{{ site.base }}/"/>
|
|
||||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
|
||||||
<id>{{ site.url }}{{ site.base }}/</id>
|
|
||||||
<author>
|
|
||||||
<name>the Sampa group</name>
|
|
||||||
</author>
|
|
||||||
|
|
||||||
{% for post in site.posts limit:20 %}
|
|
||||||
<entry>
|
|
||||||
{% if post.shortnews %}
|
|
||||||
<title>{{ post.date | date_to_long_string }}</title>
|
|
||||||
<link href="{{ site.url }}{{ site.base }}/blog/"/>
|
|
||||||
{% else %}
|
|
||||||
<title>{{ post.title }}</title>
|
|
||||||
<link href="{{ site.url }}{{ site.base }}{{ post.url }}"/>
|
|
||||||
{% endif %}
|
|
||||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
|
||||||
<id>{{ site.url }}{{ site.base }}{{ post.url }}</id>
|
|
||||||
<content type="html">{{ post.content | xml_escape }}</content>
|
|
||||||
</entry>
|
|
||||||
{% endfor %}
|
|
||||||
</feed>
|
|
@ -1,21 +0,0 @@
|
|||||||
---
|
|
||||||
layout: default
|
|
||||||
title: News and Blog
|
|
||||||
---
|
|
||||||
<ul class="news list-unstyled">
|
|
||||||
{% for post in site.posts %}
|
|
||||||
{% if post.shortnews %}
|
|
||||||
<li class="shortnews">
|
|
||||||
<span class="date">{{ post.date | date_to_long_string }}</span>
|
|
||||||
{{ post.content }}
|
|
||||||
</li>
|
|
||||||
{% else %}
|
|
||||||
<li class="bloglink">
|
|
||||||
<span class="date">{{ post.date | date_to_long_string }}</span>
|
|
||||||
<a href="{{ post.url }}">» {{ post.title }}</a>
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p><a href="{{ site.base }}/oldnews.html">See archived news posts.</a></p>
|
|
@ -1,126 +0,0 @@
|
|||||||
/* Space out content a bit */
|
|
||||||
body {
|
|
||||||
padding-top: 20px;
|
|
||||||
padding-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Everything but the jumbotron gets side spacing for mobile first views */
|
|
||||||
.header,
|
|
||||||
.footer {
|
|
||||||
padding-left: 15px;
|
|
||||||
padding-right: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Custom page header */
|
|
||||||
.header {
|
|
||||||
border-bottom: 1px solid #e5e5e5;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Custom page footer */
|
|
||||||
.footer {
|
|
||||||
padding-top: 19px;
|
|
||||||
color: #777;
|
|
||||||
border-top: 1px solid #e5e5e5;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 0.8em;
|
|
||||||
}
|
|
||||||
.footer p {
|
|
||||||
margin: 0.1em 0;
|
|
||||||
}
|
|
||||||
.footer a:link, .footer a:visited {
|
|
||||||
color: #777;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Customize container */
|
|
||||||
@media (min-width: 768px) {
|
|
||||||
.container {
|
|
||||||
max-width: 730px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.container-narrow > hr {
|
|
||||||
margin: 30px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Jumbotron */
|
|
||||||
.jumbotron {
|
|
||||||
text-align: center;
|
|
||||||
border-bottom: 1px solid #e5e5e5;
|
|
||||||
}
|
|
||||||
.jumbotron p {
|
|
||||||
font-size: 15px;
|
|
||||||
}
|
|
||||||
.jumbotron {
|
|
||||||
padding-top: 18px;
|
|
||||||
padding-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Group logo */
|
|
||||||
#logo {
|
|
||||||
width: 154px;
|
|
||||||
height: 35px;
|
|
||||||
margin: 2px 0 8px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Responsive: Portrait tablets and up */
|
|
||||||
@media screen and (min-width: 768px) {
|
|
||||||
/* Remove the padding we set earlier */
|
|
||||||
.header,
|
|
||||||
.footer {
|
|
||||||
padding-left: 0;
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
/* Space out the masthead */
|
|
||||||
.header {
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
/* Remove the bottom border on the jumbotron for visual effect */
|
|
||||||
.jumbotron {
|
|
||||||
border-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Slightly better-looking header on mobile. */
|
|
||||||
@media screen and (max-width: 767px) {
|
|
||||||
.nav-pills {
|
|
||||||
display: block;
|
|
||||||
margin: 0 auto 1em;
|
|
||||||
}
|
|
||||||
#logo {
|
|
||||||
display: block;
|
|
||||||
clear: both;
|
|
||||||
margin: 1em auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Photo */
|
|
||||||
.inset-image {
|
|
||||||
width: 60%;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* People list */
|
|
||||||
dl.people dd {
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Front page news. */
|
|
||||||
ul.news .date {
|
|
||||||
color: #999;
|
|
||||||
font-weight: bold;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
ul.news > li {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
ul.news .shortnews .date {
|
|
||||||
float: left;
|
|
||||||
margin-right: 1em;
|
|
||||||
}
|
|
||||||
ul.news .bloglink a {
|
|
||||||
font-size: 1.4em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.illustration {
|
|
||||||
float: right;
|
|
||||||
margin: 0 0 1em 1em;
|
|
||||||
}
|
|
@ -0,0 +1,151 @@
|
|||||||
|
---
|
||||||
|
---
|
||||||
|
|
||||||
|
$gray: #999;
|
||||||
|
$light-gray: #EEE;
|
||||||
|
|
||||||
|
/* Space out content a bit */
|
||||||
|
body {
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
border-bottom: 1px solid $light-gray;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
/* padding-top: 19px; */
|
||||||
|
color: $gray;
|
||||||
|
border-top: 1px solid $light-gray;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 0.8em;
|
||||||
|
|
||||||
|
a:link, a:visited {
|
||||||
|
color: $gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa {
|
||||||
|
color: $gray;
|
||||||
|
}
|
||||||
|
a > .fa {
|
||||||
|
// make sure that font-awesome icons are underlined in links
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* /\* Customize container *\/ */
|
||||||
|
/* @media (min-width: 768px) { */
|
||||||
|
/* .container { */
|
||||||
|
/* max-width: 730px; */
|
||||||
|
/* } */
|
||||||
|
/* } */
|
||||||
|
|
||||||
|
/* Jumbotron */
|
||||||
|
.jumbotron {
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 1.5em;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
font-size: 125%
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Group logo */
|
||||||
|
#logo {
|
||||||
|
width: 154px;
|
||||||
|
height: 35px;
|
||||||
|
margin: 2px 0 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Front page news. */
|
||||||
|
ul.news {
|
||||||
|
|
||||||
|
.date {
|
||||||
|
color: $gray;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
> li {
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 576px) {
|
||||||
|
.project-people { column-count: 2 }
|
||||||
|
.card-columns { column-count: 2 }
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.role.grad { column-count: 2 }
|
||||||
|
.project-people { column-count: 3 }
|
||||||
|
.card-columns { column-count: 3 }
|
||||||
|
}
|
||||||
|
|
||||||
|
.title img {
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
section {
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile {
|
||||||
|
object-fit: cover; // makes sure it's cropped
|
||||||
|
}
|
||||||
|
|
||||||
|
.noprofile {
|
||||||
|
circle {
|
||||||
|
fill: $light-gray;
|
||||||
|
}
|
||||||
|
text {
|
||||||
|
font-weight: 700;
|
||||||
|
fill: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
|
||||||
|
&.link:hover { border-color: $gray }
|
||||||
|
|
||||||
|
> a {
|
||||||
|
color: inherit;
|
||||||
|
&:hover { text-decoration: none }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.profile {
|
||||||
|
height: 40px;
|
||||||
|
width: 40px;
|
||||||
|
margin: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-footer { padding: 0.5em }
|
||||||
|
}
|
||||||
|
|
||||||
|
.person {
|
||||||
|
|
||||||
|
margin-bottom: 10px;
|
||||||
|
|
||||||
|
.profile {
|
||||||
|
height: 70px;
|
||||||
|
width: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bio {
|
||||||
|
color: $gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.person-without-image {
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
.bio {
|
||||||
|
margin-left: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
// make the alignment just like img from bootstrap's reboot.scss
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 90 KiB |
Binary file not shown.
After Width: | Height: | Size: 92 KiB |
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
@ -1,29 +1,32 @@
|
|||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
title: People
|
title: People
|
||||||
|
|
||||||
|
picture-role-groups:
|
||||||
|
- {roles: [faculty, postdoc, staff], width: 4}
|
||||||
|
- {roles: [grad], width: 8}
|
||||||
|
|
||||||
|
no-picture-role-groups:
|
||||||
|
- {roles: [collab, ugrad, ugrad-alum], width: 5}
|
||||||
|
- {roles: [alum], width: 7}
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for role in site.roles %}
|
<section class="people row justify-content-between">
|
||||||
<h3>{{ role.name }}</h3>
|
{% for role-group in page.picture-role-groups %}
|
||||||
<dl class="people">
|
<div class="col-md-{{ role-group.width }}">
|
||||||
{% for item in site.data.people %}
|
{% for role in role-group.roles %}
|
||||||
{% assign person = item[1] %}
|
{% include role-people.html role=role image=true %}
|
||||||
{% if person.role == role.key %}
|
{% endfor %}
|
||||||
<dt class="person">
|
</div>
|
||||||
{% if person.webpage %}
|
{% endfor %}
|
||||||
<a href="{{ person.webpage |escape }}">
|
</section>
|
||||||
{% endif %}
|
|
||||||
{{ person.display_name }}
|
<section class="people row justify-content-between">
|
||||||
{% if person.webpage %}
|
{% for role-group in page.no-picture-role-groups %}
|
||||||
</a>
|
<div class="col-md-{{ role-group.width }}">
|
||||||
{% endif %}
|
{% for role in role-group.roles %}
|
||||||
</dt>
|
{% include role-people.html role=role image=false %}
|
||||||
<dd>
|
|
||||||
{% if person.bio %}
|
|
||||||
{{ person.bio | markdownify }}
|
|
||||||
{% endif %}
|
|
||||||
</dd>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</dl>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
</section>
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: default
|
||||||
|
title: Research Projects
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="card-columns">
|
||||||
|
{% for p in site.projects %}
|
||||||
|
{% include project-card.html project=p %}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
layout: default
|
|
||||||
title: Research Projects
|
|
||||||
projects:
|
|
||||||
- link: project/
|
|
||||||
name: An Exciting project
|
|
||||||
summary: This will never work.
|
|
||||||
---
|
|
||||||
|
|
||||||
Our research is awesome.
|
|
||||||
|
|
||||||
### An Exciting project
|
|
||||||
Read about it [here][project].
|
|
||||||
|
|
||||||
[project]: project/index.html
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
layout: default
|
|
||||||
title: An Exciting Project
|
|
||||||
---
|
|
||||||
We've done some great work on this project!
|
|
Loading…
Reference in New Issue