We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02b058d commit 8a4a41aCopy full SHA for 8a4a41a
static/js/gistio.js
@@ -5,6 +5,7 @@ var Gisted = (function($, undefined) {
5
var description = data['description'];
6
if (description) {
7
$("#description").text(description);
8
+ $("title").html(description + ' · ' + $("title").html());
9
} else {
10
$("#description").text('');
11
}
templates/gist.html
@@ -1,6 +1,6 @@
1
{% extends "base.html" %}
2
3
-{% block title %}gist.io · #{{ gist_id }}{% endblock %}
+{% block title %}#{{ gist_id }} · gist.io{% endblock %}
4
{% block content %}
<!-- <h1>Loading Gist #{{ gist_id }}…</h1> -->
0 commit comments