<!DOCTYPE html>
<!-- Server: {{g.server_name}} -->
{% import 'allura:templates/jinja_master/lib.html' as lib with context %}
{% if g.theme.jinja_macros %}
{% import g.theme.jinja_macros as theme_macros with context %}
{% endif %}
{% do g.register_forge_js('js/jquery-base.js', location='head_js') %}
{% do g.register_forge_js('js/jquery.notify.js', location='head_js') %}
{% do g.register_forge_js('js/sylvester.js') %}
{% do g.register_forge_js('js/pb.transformie.min.js') %}
{% do g.register_forge_js('js/allura-base.js') %}
{% do g.register_forge_css('css/forge/hilite.css') %}
{% do g.theme.require() %}
{% do g.resource_manager.register_widgets(c) %}
{# paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ #}
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]>--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
<title>{% block title %}opensourceprojects.eu{% endblock %}</title>
{{theme_macros.extra_header(g.theme_href(''))}}
<script type="text/javascript">
/*jslint onevar: false, nomen: false, evil: true, css: true, plusplus: false, white: false, forin: true, on: true, immed: false */
/*global confirm, alert, unescape, window, jQuery, $, net, COMSCORE */
</script>
{% for blob in g.resource_manager.emit('head_css') %}
{{ blob }}
{% endfor %}
{% for blob in g.resource_manager.emit('head_js') %}
{{ blob }}
{% endfor %}
<link href='http://fonts.googleapis.com/css?family=Sintony:400,700' rel='stylesheet' type='text/css'>
{% if c.project and c.project.neighborhood.css %}
<style type="text/css">
{{c.project.neighborhood.get_custom_css()|safe}}
</style>
{% elif neighborhood and neighborhood.css %}
<style type="text/css">
{{neighborhood.get_custom_css()}}
</style>
{% endif %}
{% block extra_css %}{% endblock %}
<style>.{{ g.antispam.honey_class }} { display:none }</style>
{% block head %}
{% endblock %}
{{g.analytics.display()}}
</head>
<body{% block body_attrs %}{% endblock %} id="forge">
{% for blob in g.resource_manager.emit('body_top_js') %}
{{ blob }}
{% endfor %}
{{theme_macros.header(g.login_url, '/auth/logout')}}
{% set flash = tg.flash_obj.render('flash', use_js=False) %}
<section id="page-body" class="{{g.document_class(neighborhood)}}">
<div id="content_base" class="{% if c and c.app %}{{ c.app.config.tool_name }}{% endif %}">
{% block before_content %}{% endblock %}
{% block content %}
<div class="upcontent">
{#
<div class="warning">
<h2>Scheduled downtime</h2>
<p>In a couple of days there will a scheduled maintenace downtime in our servers. Starting at <b>14h (GMT+1) on Monday the 22nd of July, with an expected duration of 4h</b>.</p>
</div>
#}
<div class="tagnsign">
<div class="tagline">
<div class="taglinebig">A common location for EU-ICT projects</div>
<div class="taglinemini">Open Source Community and Management Tools</div>
</div>
{% if c.user and c.user != c.user.anonymous() %}
{% else %}
<div class="signform">
{{form.display()}}
</div>
{% endif %}
</div>
</div>
<div class="middlecontent">
<div class="highlightnrecent">
<div class="highlightproj">
<div class="projicon"></div>
</div>
<div class="recentproj"> </div>
</div>
</div>
<div class="downcontent">
<div class="featurenexplain">
<div class="featureosp">
<div class="titleosp">Manage</div>
<div class="explainosp">
Create, costumise and monitor projects:
<p>Admin tools</p></div>
<div class="featureadmin">
<img src="{{g.theme_href('images/feature-admin.png')}}">
</div>
</div>
<div class="featureosp">
<div class="titleosp">Develop</div>
<div class="explainosp">
Support multiple tools for the same project:
<p>Git and SVN</p></div>
<div class="featuregit">
<img src="{{g.theme_href('images/feature-git.png')}}">
</div>
</div>
<div class="featureosp">
<div class="titleosp">Communicate</div>
<div class="explainosp">Engagement between users and projects:<p>Wiki, Forum and Blog</p> </div>
<div class="featureforum">
<img src="{{g.theme_href('images/feature-forum.png')}}">
</div>
</div>
<div class="featureosp" id="lastfeature">
<div class="titleosp">Track</div>
<div class="explainosp">What needs to be completed, bugs, requests or tasks:<p>Tickets</p> </div>
<div class="featuretickets">
<img src="{{g.theme_href('images/feature-tickets.png')}}">
</div>
</div>
</div>
</div>
{% endblock %}
{% block after_content %}{% endblock %}
</div>
</section>
{{theme_macros.footer(g.year(), g.theme_href(''))}}
<div id="messages">
{% for n in h.pop_user_notifications() %}
<section class="message {{ n.subject or 'info' }}">
<header>Notification:</header>
<div class="content">{{ n.text }}</div>
</section>
{% 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 %}
{{theme_macros.custom_js()}}
{% if flash %}
<script type="text/javascript">{{flash | safe}}</script>
{% endif %}
</body>
</html>