Misc minor non-content updates

This commit is contained in:
thephez 2017-10-25 08:52:17 -04:00
parent a981dfde8c
commit 4ca3408e41
3 changed files with 5 additions and 5 deletions

View file

@ -9,8 +9,8 @@ lang: en
<div class="subhead-links"><a href="/en/blog">Blog home</a> <div class="subhead-links"><a href="/en/blog">Blog home</a>
| <a type="application/atom+xml" href="/en/rss/blog.xml"><img src="/img/icons/header_rss.svg" alt="rss" class="rssicon"> Subscribe to RSS feed</a> | <a type="application/atom+xml" href="/en/rss/blog.xml"><img src="/img/icons/header_rss.svg" alt="rss" class="rssicon"> Subscribe to RSS feed</a>
| <a href="https://github.com/bitcoin-dot-org/bitcoin.org/commits/master/{{page.path|uri_escape}}">Post history</a> | <a href="https://github.com/thephez/dash.org/commits/master/{{page.path|uri_escape}}">Post history</a>
| <a href="https://github.com/bitcoin-dot-org/bitcoin.org/issues/new?body=Source%20File%3A%20{{page.path|uri_escape}}%0A%0A">Report issue</a></div> | <a href="https://github.com/thephez/dash.org/issues/new?body=Source%20File%3A%20{{page.path|uri_escape}}%0A%0A">Report issue</a></div>
<div class="post"> <div class="post">
<header class="post-header"> <header class="post-header">

View file

@ -30,7 +30,7 @@ id: events
{% for p in date_sorted_conferences %} {% for p in date_sorted_conferences %}
<div><div>{{ p.date | date:"%Y-%m-%d" }}</div><div><a href="{{ p.link | htmlescape }}">{{ p.title | htmlescape }}</a></div><div>{{ p.city | htmlescape }}, {{ p.country | htmlescape }}</div></div> <div><div>{{ p.date | date:"%Y-%m-%d" }}</div><div><a href="{{ p.link | htmlescape }}">{{ p.title | htmlescape }}</a></div><div>{{ p.city | htmlescape }}, {{ p.country | htmlescape }}</div></div>
{% endfor %} {% endfor %}
<span><a href="https://github.com/bitcoin-dot-org/bitcoin.org/issues/new?title=New%20event&amp;body=%20%20%20%20-%20date%3A%20YYYY-MM-DD%0A%20%20%20%20%20%20title%3A%20%22%22%0A%20%20%20%20%20%20venue%3A%20%22%22%0A%20%20%20%20%20%20address%3A%20%22%22%0A%20%20%20%20%20%20city%3A%20%22%22%0A%20%20%20%20%20%20country%3A%20%22%22%0A%20%20%20%20%20%20link%3A%20%22%22">{% translate eventsubmit %}</a></span> <span><a href="https://github.com/thephez/dash.org/issues/new?title=New%20event&amp;body=%20%20%20%20-%20date%3A%20YYYY-MM-DD%0A%20%20%20%20%20%20title%3A%20%22%22%0A%20%20%20%20%20%20venue%3A%20%22%22%0A%20%20%20%20%20%20address%3A%20%22%22%0A%20%20%20%20%20%20city%3A%20%22%22%0A%20%20%20%20%20%20country%3A%20%22%22%0A%20%20%20%20%20%20link%3A%20%22%22">{% translate eventsubmit %}</a></span>
</div> </div>
<p>{% translate meetupgroup %}</p> <p>{% translate meetupgroup %}</p>

View file

@ -311,7 +311,7 @@ function updateToc() {
function updateIssue(e) { function updateIssue(e) {
// Update GitHub issue link pre-filled with current page location. // Update GitHub issue link pre-filled with current page location.
var t = getEvent(e, 'target'); var t = getEvent(e, 'target');
t.href = 'https://github.com/bitcoin-dot-org/bitcoin.org/issues/new?body=' + encodeURIComponent('Location: ' + window.location.href.toString() + "\n\n"); t.href = 'https://github.com/thephez/dash.org/issues/new?body=' + encodeURIComponent('Location: ' + window.location.href.toString() + "\n\n");
} }
function updateSource(e) { function updateSource(e) {
@ -336,7 +336,7 @@ function updateSource(e) {
if (pageoffset < first[1]) closer = [first[0], first[1]]; if (pageoffset < first[1]) closer = [first[0], first[1]];
if (windowy + pageoffset >= getHeight(document.body)) closer = [last[0], last[1]]; if (windowy + pageoffset >= getHeight(document.body)) closer = [last[0], last[1]];
// Set updated url to source file. // Set updated url to source file.
t.href = 'https://github.com/bitcoin-dot-org/bitcoin.org/edit/master/' + closer[0].getAttribute('data-sourcefile'); t.href = 'https://github.com/thephez/dash.org/edit/master/' + closer[0].getAttribute('data-sourcefile');
} }
function disclaimerClose(e) { function disclaimerClose(e) {