Skip to content

Commit

Permalink
enable comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vlandham committed Mar 26, 2019
1 parent cf9c3fe commit c7013d0
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 30 deletions.
15 changes: 6 additions & 9 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
source: .
source: .
destination: ./_site
includes: ./_includes
url: "http://vallandingham.me"
includes: ./_includes
url: "https://vallandingham.me"

permalink: /:title.html
permalink: /:title.html

#base_url: http://vlandham.com
#base_url: /
description: ""

encoding: utf-8


defaults:
-
scope:
- scope:
path: ""
values:
ogtype: "website"
-
scope:
- scope:
path: ""
type: "posts"
values:
Expand Down
12 changes: 6 additions & 6 deletions _data/collections.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[
{
"title":"Historical Seattle Maps",
"url":"http://vallandingham.me/seattle_maps/",
"title": "Historical Seattle Maps",
"url": "//vallandingham.me/seattle_maps/",
"description": "A collection of old Seattle Maps I've found that are digitized and downloadable."
},
{
"title":"Scrollytelling Examples",
"url":"http://vallandingham.me/scroll_talk/examples/",
"title": "Scrollytelling Examples",
"url": "//vallandingham.me/scroll_talk/examples/",
"description": "Collection of great scrollytelling examples from news outlets and other sources."
},
{
"title":"Visualization Experiments",
"url":"http://vallandingham.me/experiments/",
"title": "Visualization Experiments",
"url": "//vallandingham.me/experiments/",
"description": "Half-done, small, or experimental visualization."
}
]
38 changes: 23 additions & 15 deletions _includes/comments.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'vlandham'; // required: replace example with your forum shortname
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = "vlandham"; // required: replace example with your forum shortname

// The following are highly recommended additional parameters. Remove the slashes in front to use.
// var disqus_identifier = 'unique_dynamic_id_1234';
// var disqus_url = 'http://example.com/permalink-to-page.html';
// The following are highly recommended additional parameters. Remove the slashes in front to use.
// var disqus_identifier = 'unique_dynamic_id_1234';
// var disqus_url = 'http://example.com/permalink-to-page.html';

/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement("script");
dsq.type = "text/javascript";
dsq.async = true;
dsq.src = "//" + disqus_shortname + ".disqus.com/embed.js";
(
document.getElementsByTagName("head")[0] ||
document.getElementsByTagName("body")[0]
).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>


<noscript
>Please enable JavaScript to view the
<a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript
>
<a href="//disqus.com" class="dsq-brlink"
>blog comments powered by <span class="logo-disqus">Disqus</span></a
>

0 comments on commit c7013d0

Please sign in to comment.