Bradley M. Kuhn
09a4b021c1
During the recent improvements made on the website, the menus and submenu highlighting for selected menus fell into disarray. Correction requires changes to the CSS and templates both, because Django doesn't really have a convenient way to set variables in templates to use to solve this. There are still a few submenu items highlighting not working even after this commit. More work needs to be done.
7 lines
192 B
HTML
7 lines
192 B
HTML
{% extends "base_standard.html" %}
|
|
|
|
{% block category %}News{% endblock %}
|
|
|
|
{% block head %}
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/news/" />
|
|
{% endblock %}
|