Parent: [462c10] (diff)

Child: [d34184] (diff)

Download this file

master.html    119 lines (115 with data), 4.3 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
{% import 'jinja_master/lib.html' as lib with context %}
{# TODO: convert to lib.gravatar() and remove #}
{% from 'jinja_master/lib.html' import gravatar with context %}
{% do g.register_forge_js('js/jquery-base.js') %}
{% do g.register_forge_js('js/allura-base.js') %}
{% do g.register_forge_css('css/forge/hilite.css') %}
{% do g.resource_manager.register_widgets(c) %}
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{% block title %}Your title goes here{% endblock %}</title>
<meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
{% for blob in g.resource_manager.emit('head_css') %}
{{ blob }}
{% endfor %}
{% if c.project %}
{% for blob in g.resource_manager.emit('head_js') %}
{{ blob }}
{% endfor %}
{% endif %}
{% if c.project %}
<link rel="stylesheet" type="text/css" media="screen" href="{{h.site_style_link(c.project.neighborhood)}}" />
{% elif neighborhood %}
<link rel="stylesheet" type="text/css" media="screen" href="{{h.site_style_link(neighborhood)}}" />
{% else %}
<link rel="stylesheet" type="text/css" media="screen" href="{{h.site_style_link()}}" />
{% endif %}
{% block extra_css %}{% endblock %}
{% block head %}
{% endblock %}
<!--[if lt IE 9]>
<link rel="stylesheet" href="/nf/css/forge/ie.css" type="text/css" charset="utf-8">
<![endif]-->
<!--[if IE]>
<style type="text/css">
.sfdl p.hide, .sfdls p.hide {display: none !important;}
</style>
<![endif]-->
{% if g.production_mode %}{{g.analytics.display()}}{% endif %}
</head>
<body{% block body_attrs %}{% endblock %}>
{% for blob in g.resource_manager.emit('body_top_js') %}
{{ blob }}
{% endfor %}
{% include g.theme.main_menu %}
<div class="container{{g.document_class(neighborhood)}}">
<div id="header">
<div class="row">
{% block nav_menu %}
{% include g.theme.nav_menu %}
{% endblock %}
</div>
</div>
<div id="section">
{% block top_nav %}
{% include g.theme.top_nav %}
{% endblock %}
<div class="row base">
{% if not hide_left_bar %}
{% include g.theme.sidebar_menu %}
{% set outer_width = 10 %}
{% else %}
{% set outer_width = 12 %}
{% endif %}
{% if show_right_bar %}
{% set inner_width = outer_width - 2 %}
{% else %}
{% set inner_width = outer_width + 2 %}
{% endif %}
<div class="column grid_{{outer_width}} pad">
{% set flash = tg.flash_obj.render('flash', use_js=False) %}
{% if flash %}
<div>{{flash | safe}}</div>
{% endif %}
<h1 class="title">{% block header %}{% endblock %}</h1>
<div class="actions">{% block actions %}{% endblock %}</div>
{% block edit_box %}{% endblock %}
<div class="content">
<div class="row{% if show_right_bar %} dual{% endif %}">
<div class="column {% block inner_grid %}grid_{{inner_width}}{% endblock %}">
{% block content %}{% endblock %}
</div>
{% if show_right_bar %}
<div id="sidebar-right" class="column grid_4 fright">
{% block right_content %}{% endblock %}
</div>
{% endif %}
</div>
{% block after_content %}{% endblock %}
</div>
</div>
</div>
</div>
{% include g.theme.footer %}
</div>
<div id="notifications">
{% for n in h.pop_user_notifications() %}
<div class="notice">{{ n.text }}</div>
{% endfor %}
</div>
{% for blob in g.resource_manager.emit('body_js') %}
{{ blob }}
{% endfor %}
{% for blob in g.resource_manager.emit('body_js_tail') %}
{{ blob }}
{% endfor %}
{% block extra_js %}{% endblock %}
{% if neighborhood %}
{{ neighborhood.site_specific_html | safe }}
{% elif c.project.neighborhood %}
{{ c.project.neighborhood.site_specific_html | safe }}
{% endif %}
</body>
</html>