10 lines
305 B
HTML
10 lines
305 B
HTML
## mako
|
|
<%namespace name='static' file='/static_content.html'/>
|
|
<%inherit file="/header/header.html"/>
|
|
<%page expression_filter="h"/>
|
|
|
|
## TODO: this will eventually be moved to the Sass
|
|
<%block name="navigation_logo">
|
|
<img src="${static.url('images/logo.png')}" height="50" alt="Home Page" />
|
|
</%block>
|