Skip to content

Commit 2eb870a

Browse files
committed
actually let's just copy last years' site
1 parent 2de299d commit 2eb870a

File tree

149 files changed

+3583
-76908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+3583
-76908
lines changed

Gemfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
source 'https://rubygems.org'
2+
3+
# A simple Ruby Gem to bootstrap dependencies for setting up and
4+
# maintaining a local Jekyll environment in sync with GitHub Pages
5+
# https://github.com/github/pages-gem
6+
gem 'jekyll'
7+
gem 'jekyll-paginate'
8+
gem 'jekyll-sitemap'
9+
gem 'jekyll-feed'
10+
gem 'gemoji'
11+
gem 'json'
12+
gem 'github-pages'

LICENSE

-21
This file was deleted.

LICENSE.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2014-2015 John Otander
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
1-
# 2022
2-
KeystoneDH 2022
1+
# Digital Scholarship @ Swarthmore
2+
3+
---
4+
based on the excellent [pixyll.com](http://www.pixyll.com) by [John Otander](http://johnotander.com)
5+
see theme repo for full documentation
6+
---
7+
8+
## Thanks to the following
9+
10+
* [BASSCSS](http://basscss.com)
11+
* [Jekyll](http://jekyllrb.com)
12+
* [Refills](http://refills.bourbon.io/)
13+
* [Solarized](http://ethanschoonover.com/solarized)
14+
* [Animate.css](http://daneden.github.io/animate.css/)
15+
16+
## Post-receive hook
17+
18+
- added post-receive hook to aws remote repository (`.git/hooks/`)
19+
- added deploy remote `ds-aws`
20+
- must make the post-receive script executable `chmod +x post-receive`
21+
- (still necessary?) needed to manually install gem `io-console` in order for `bundler` to work correctly
22+
23+
:clap: :clap: :clap: :clap:

Rakefile

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
drafts_dir = '_drafts'
2+
posts_dir = '_posts'
3+
4+
# rake post['my new post']
5+
desc 'create a new post with "rake post[\'post title\']"'
6+
task :post, :title do |t, args|
7+
if args.title
8+
title = args.title
9+
else
10+
puts "Please try again. Remember to include the filename."
11+
end
12+
mkdir_p "#{posts_dir}"
13+
filename = "#{posts_dir}/#{Time.now.strftime('%Y-%m-%d')}-#{title.downcase.gsub(/[^\w]+/, '-')}.md"
14+
puts "Creating new post: #{filename}"
15+
File.open(filename, "w") do |f|
16+
f << <<-EOS.gsub(/^ /, '')
17+
---
18+
layout: post
19+
title: #{title}
20+
date: #{Time.new.strftime('%Y-%m-%d %H:%M')}
21+
categories:
22+
---
23+
24+
EOS
25+
end
26+
27+
# Uncomment the line below if you want the post to automatically open in your default text editor
28+
# system ("#{ENV['EDITOR']} #{filename}")
29+
end
30+
31+
# usage: rake draft['my new draft']
32+
desc 'create a new draft post with "rake draft[\'draft title\']"'
33+
task :draft, :title do |t, args|
34+
if args.title
35+
title = args.title
36+
else
37+
puts "Please try again. Remember to include the filename."
38+
end
39+
mkdir_p "#{drafts_dir}"
40+
filename = "#{drafts_dir}/#{title.downcase.gsub(/[^\w]+/, '-')}.md"
41+
puts "Creating new draft: #{filename}"
42+
File.open(filename, "w") do |f|
43+
f << <<-EOS.gsub(/^ /, '')
44+
---
45+
layout: post
46+
title: #{title}
47+
date: #{Time.new.strftime('%Y-%m-%d %H:%M')}
48+
categories:
49+
---
50+
51+
EOS
52+
end
53+
54+
# Uncomment the line below if you want the draft to automatically open in your default text editor
55+
# system ("#{ENV['EDITOR']} #{filename}")
56+
end
57+
58+
desc 'preview the site with drafts'
59+
task :preview do
60+
puts "## Generating site"
61+
puts "## Stop with ^C ( <CTRL>+C )"
62+
system "jekyll serve --watch --drafts"
63+
end
64+
65+
desc 'list tasks'
66+
task :list do
67+
puts "Tasks: #{(Rake::Task.tasks - [Rake::Task[:list]]).join(', ')}"
68+
puts "(type rake -T for more detail)\n\n"
69+
end

_config.yml

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Site settings
2+
title: Keystone DH 2021
3+
4+
description: "2021 Keystone Digital Humanities Conference will be held at Temple University, July 14-16, 2021."
5+
baseurl: ""
6+
url: "https://keystonedh.network"
7+
date_format: "%b %-d, %Y"
8+
9+
# Google services
10+
google_verification:
11+
# Use either direct GA implementation or set up GTM account
12+
# - using both will skew your data (leave blank to not use at all)
13+
google_analytics:
14+
google_tag_manager:
15+
# Bing services
16+
bing_verification:
17+
18+
# Optional features
19+
animated: false
20+
show_related_posts: false
21+
show_post_footers: false
22+
show_social_icons: true
23+
ajaxify_contact_form: false
24+
enable_mathjax: false
25+
extended_fonts: false
26+
enable_anchorjs: false
27+
28+
# Disqus post comments
29+
# (leave blank to disable Disqus)
30+
disqus_shortname:
31+
32+
# Facebook Comments plugin
33+
# (leave blank to disable Facebook Comments, otherwise set it to true)
34+
facebook_comments:
35+
facebook_appid:
36+
facebook_comments_number: 10
37+
38+
# Social icons
39+
github_username: keystonedh
40+
bitbucket_username:
41+
stackoverflow_id:
42+
twitter_username: keystonedh
43+
skype_username:
44+
steam_nickname:
45+
google_plus_id:
46+
linkedin_username:
47+
angellist_username:
48+
medium_id:
49+
bitcoin_url:
50+
paypal_url:
51+
flattr_button:
52+
53+
# Post sharing icons
54+
show_sharing_icons: true
55+
# Change to 'true' to enable individual icons
56+
share_facebook: false
57+
share_twitter: true
58+
share_googleplus: false
59+
share_linkedin: false
60+
share_digg: false
61+
share_tumblr: false
62+
share_reddit: false
63+
share_stumbleupon: false
64+
share_hackernews: false
65+
66+
text:
67+
pagination:
68+
newer: 'Newer'
69+
older: 'Older'
70+
share_buttons:
71+
text: 'Share this post!'
72+
facebook: 'Share on Facebook'
73+
twitter: 'Share on Twitter'
74+
linkedin: 'Share on LinkedIn'
75+
post:
76+
updated: 'Updated'
77+
minute_read: 'minute read'
78+
related_posts: 'Related Posts'
79+
index:
80+
coming_soon: 'Coming soon...'
81+
contact:
82+
email: 'Email Address'
83+
content: 'What would you like to say?'
84+
subject: 'New submission!'
85+
submit: 'Say Hello'
86+
ajax:
87+
sending: 'sending..'
88+
sent: 'Message sent!'
89+
error: 'Error!'
90+
thanks: 'Thanks for contacting us. We will reply as soon as possible.'
91+
og_locale: 'en_US'
92+
93+
# Build settings
94+
markdown: kramdown
95+
redcarpet:
96+
extensions: ['smart', 'tables', 'with_toc_data']
97+
permalink: pretty
98+
paginate: 10
99+
paginate_path: "blog/posts/:num"
100+
sass:
101+
compressed: true
102+
gems:
103+
- jekyll-paginate
104+
- jekyll-sitemap
105+
- gemoji
106+
# https://github.com/jekyll/jekyll/issues/2938
107+
exclude: [vendor, html-example, _pages/links.md]
108+
include:
109+
- _pages

_includes/ajaxify_content_form.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<script>
2+
var contactForm = document.querySelector('form'),
3+
inputEmail = contactForm.querySelector('[name="email"]'),
4+
textAreaMessage = contactForm.querySelector('[name="content"]'),
5+
sendButton = contactForm.querySelector('button');
6+
7+
sendButton.addEventListener('click', function(event){
8+
event.preventDefault();
9+
10+
sendButton.innerHTML = '{{ site.text.contact.ajax.sending }}';
11+
12+
var xhr = new XMLHttpRequest();
13+
xhr.open('POST', '//formspree.io/{{ site.email }}', true);
14+
xhr.setRequestHeader("Accept", "application/json")
15+
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
16+
17+
xhr.send(
18+
"email=" + inputEmail.value +
19+
"&message=" + textAreaMessage.value);
20+
21+
xhr.onloadend = function (res) {
22+
if (res.target.status === 200){
23+
sendButton.innerHTML = '{{ site.text.contact.ajax.sent }}';
24+
}
25+
else {
26+
sendButton.innerHTML = '{{ site.text.contact.ajax.error }}';
27+
}
28+
}
29+
});
30+
</script>

_includes/footer.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<footer class="center">
2+
<div class="measure">
3+
<small>
4+
<a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/80x15.png" /></a>
5+
</small>
6+
</div>
7+
</footer>
8+
{% if site.enable_anchorjs %}<!-- AnchorJS -->
9+
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.0.0/anchor.min.js"></script>
10+
<script>
11+
anchors.options.visible = 'always';
12+
anchors.add('article h2, article h3, article h4, article h5, article h6');
13+
</script>{% endif %}

_includes/head.html

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<title>{% if page.title %}{{ page.title | strip_html }} &#8211; {% endif %}{{ site.title | strip_html }}</title>
5+
<link rel="dns-prefetch" href="//maxcdn.bootstrapcdn.com">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="description" content="{% if page.meta_description %}{{ page.meta_description | xml_escape }}{% elsif page.summary %}{{ page.summary | xml_escape }}{% else %}{{ site.description | xml_escape }}{% endif %}">
8+
{% if page.meta_robots %}<meta name="robots" content="{{ page.meta_robots }}">
9+
{% else %}<meta name="robots" content="all">{% endif %}
10+
<meta name="author" content="{{ site.author }}">
11+
{% if page.categories %}<meta name="keywords" content="{{ page.categories | join: ', ' }}">{% endif %}
12+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.github.url }}">
13+
<link rel="alternate" type="application/rss+xml" title="RSS Feed for {{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl }}" />
14+
15+
<!-- Custom CSS -->
16+
<link rel="stylesheet" href="{{ "/css/pixyll.css" | prepend: site.github.url }}?{{ site.time | date: "%Y%m%d%H%M" }}" type="text/css">
17+
18+
{% if page.id == 'schedule' %}
19+
<link rel="stylesheet" href="{{ "/css/modal.css" | prepend: site.github.url }}" type="text/css" />
20+
{% endif %}
21+
22+
<!-- Fonts -->
23+
{% if site.show_social_icons or site.show_sharing_icons %}
24+
<link href="//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
25+
{% endif %}
26+
27+
<!-- Verifications -->
28+
{% if site.google_verification %}
29+
<meta name="google-site-verification" content="{{ site.google_verification }}" />
30+
{% endif %}
31+
{% if site.bing_verification %}
32+
<meta name="msvalidate.01" content="{{ site.bing_verification }}" />
33+
{% endif %}
34+
35+
<!-- Open Graph -->
36+
<!-- From: https://github.com/mmistakes/hpstr-jekyll-theme/blob/master/_includes/head.html -->
37+
<meta property="og:locale" content="{{ site.text.og_locale }}">
38+
<meta property="og:type" content="article">
39+
<meta property="og:title" content="{% if page.title %}{{ page.title | xml_escape }}{% else %}{{ site.title | xml_escape }}{% endif %}">
40+
<meta property="og:description" content="{% if page.description %}{{ page.description | xml_escape }}{% else %}{{ site.description | xml_escape }}{% endif %}">
41+
<meta property="og:url" content="{{ page.url | prepend: site.github.url }}">
42+
<meta property="og:site_name" content="{{ site.title | xml_escape }}">
43+
44+
<!-- Twitter Card -->
45+
<meta name="twitter:card" content="summary" />
46+
{% if site.twitter_username %}
47+
<meta name="twitter:site" content="@{{ site.twitter_username }}" />
48+
{% endif %}
49+
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}" />
50+
<meta name="twitter:description" content="{% if page.summary %}{{ page.summary }}{% else %}{{ site.description }}{% endif %}" />
51+
<meta name="twitter:url" content="{{ page.url | prepend: site.github.url }}" />
52+
53+
<!-- Icons -->
54+
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" sizes="32x32">
55+
56+
{% if site.google_analytics %}
57+
<script type="text/javascript">
58+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
59+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
60+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
61+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
62+
ga('create', '{{ site.google_analytics }}', 'auto');
63+
ga('send', 'pageview');
64+
</script>
65+
{% endif %}
66+
67+
</head>

_includes/header.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<header class="site-header px-responsive">
2+
<div class="mt2 wrap">
3+
<div class="measure">
4+
<a href="/" class="site-title animated">
5+
6+
<span id="{{ page.id }}">
7+
8+
<img src="{{ "/media/keystonedh-keystone.svg" | prepend: site.github.url }}" />
9+
<img src="{{ "/media/keystonedh-text.svg" | prepend: site.github.url }}" />
10+
11+
</span></a>
12+
13+
{% if site.show_social_icons %}
14+
{% include social_links.html %}
15+
{% endif %}
16+
17+
{% include navigation.html id = page.id %}
18+
</div>
19+
20+
</header>

0 commit comments

Comments
 (0)