# HG changeset patch
# User Dan Drake <drake@kaist.edu>
# Date 1274269992 -32400
# Node ID f1215a3c86a946a2ab847ff08ba6a90674f41d61
# Parent bbe979a009a3c9d3064ea52cc8f375ab36ade48c
[mq]: trac_7441_link_rel.patch
diff --git a/sagenb/data/sage/html/base.html b/sagenb/data/sage/html/base.html
a
|
b
|
|
5 | 5 | <title>{{ render_title() }} -- Sage</title> |
6 | 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
7 | 7 | {% block more_meta %}{% endblock %} |
| 8 | {% block published_link_rel %}{% endblock %} |
8 | 9 | {% block pre_main_css %}{% endblock %} |
9 | 10 | <link type="text/css" rel="stylesheet" href="/css/{% block css %}main{% endblock %}.css" /> |
10 | 11 | {% block more_css %}{% endblock %} |
diff --git a/sagenb/data/sage/html/notebook/guest_worksheet_page.html b/sagenb/data/sage/html/notebook/guest_worksheet_page.html
a
|
b
|
|
22 | 22 | |
23 | 23 | {% set download_name = worksheet.download_name() %} |
24 | 24 | |
| 25 | {% block published_link_rel %} |
| 26 | <link rel="alternate" type="application/sage" title="{{ render_title() }}" href="download/{{ download_name }}.sws" /> |
| 27 | {% endblock %} |
| 28 | |
25 | 29 | {% block body %} |
26 | 30 | <ul class="controls"> |
27 | 31 | <li><a href="{{ url }}">{{ edit_text }}</a></li> |