Skip to content

Commit fc5a2c8

Browse files
committed
fixed embedding
1 parent a10473f commit fc5a2c8

File tree

2 files changed

+3
-26
lines changed

2 files changed

+3
-26
lines changed

templates/events/list.html

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,8 @@
1010
{% endif %}
1111
{{ year }}
1212
{% endblock %}
13-
{% block description %}
14-
Events for
15-
{% if term %}
16-
Term {{ term }}
17-
{% endif %}
18-
{% if week or week == 0 %}
19-
Week {{ week }}
20-
{% endif %}
21-
{{ year }}
22-
{% endblock %}
23-
{% block keywords %}
24-
Events, Talks, Academic
25-
{% if term %}
26-
, Term {{ term }}
27-
{% endif %}
28-
{% if week or week == 0 %}
29-
, Week {{ week }}
30-
{% endif %}
31-
, {{ year }}
32-
{% endblock %}
13+
{% block description %}Events for{% if term %} Term {{ term }}{% endif %}{% if week or week == 0 %} Week {{ week }}{% endif %} {{ year }}{% endblock %}
14+
{% block keywords %}Events, Talks, Academic{% if term %}, Term {{ term }}{% endif %}{% if week or week == 0 %}, Week {{ week }}{% endif %}, {{ year }}{% endblock %}
3315

3416
{% block content %}
3517
{% if not current_week %}

templates/events/tags.html

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22

33
{% block title %}Tags{% endblock %}
44
{% block description %}All tags for UWCS events{% endblock %}
5-
{% block keywords %}
6-
tags,
7-
{% for tag in tags %}
8-
{{ tag.name }}
9-
{% if not loop.last %}, {% endif %}
10-
{% endfor %}
5+
{% block keywords %}tags,{% for tag in tags %}{{ tag.name }}{% if not loop.last %}, {% endif %}{% endfor %}
116
{% endblock %}
127

138
{% block content %}

0 commit comments

Comments
 (0)