Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111607890
page.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, May 3, 18:16
Size
5 KB
Mime Type
text/html
Expires
Mon, May 5, 18:16 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25959100
Attached To
R3600 invenio-infoscience
page.html
View Options
{#
## This file is part of Invenio.
## Copyright (C) 2012 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## Invenio is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#}
{% set guest = current_user.is_guest() %}
{% set usealerts = current_user['precached_usealerts'] %}
{% set usemessages = current_user['precached_usemessages'] %}
{% set usebaskets = current_user['precached_usebaskets'] %}
{% set useloans = current_user['precached_useloans'] %}
{% set usegroups = current_user['precached_usegroups'] %}
{% set viewsubmissions = current_user['precached_viewsubmissions'] %}
{% set useapprove = current_user['precached_useapprove'] %}
{% set useadmin = current_user['precached_useadmin'] %}
{% set usestats = current_user['precached_usestats'] %}
{% set viewclaimlink = current_user['precached_viewclaimlink'] %}
{% set usepaperclaim = current_user['precached_usepaperclaim'] %}
{% set usepaperattribution = current_user['precached_usepaperattribution'] %}
<!DOCTYPE html>
<html lang="{{ ln|safe }}" {% if is_language_rtl %}dir="rtl"{% endif %}>
<head>
<meta charset="utf-8">
<title>{{ title+' - ' if title }}{{ config.CFG_SITE_NAME_INTL[g.ln] }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="{{ g.ln|safe }}" />
<meta name="description" content="{{ description }}" />
<meta name="keywords" content="{{ keywords }}" />
<meta name="author" content="">
<link rev="made" href="mailto:{{ config.CFG_SITE_SUPPORT_EMAIL }}" />
<link rel="alternate" type="application/rss+xml" title="{{ config.CFG_SITE_NAME }} RSS" href="{{ url_for('rss') }}" />
<link rel="search" type="application/opensearchdescription+xml" href="{{ url_for('opensearchdescription') }}" title="{{ config.CFG_SITE_NAME }}" />
<link rel="unapi-server" type="application/xml" title="unAPI" href="{{ url_for('unapi') }}" />
<!-- Le styles -->
{% css 'css/bootstrap.css' %}
{% css 'css/bootstrap-responsive.min.css' %}
{% css 'css/token-input.css' %}
{% css 'css/token-input-facebook.css' %}
{% js 'js/jquery/jquery.min.js' %}
{% js 'js/jquery/bootstrap.js' %}
{% js 'js/jquery/jquery.tokeninput.js' %}
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
{#
<link rel="shortcut icon" href="../assets/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
#}
{#
{% js 'js/jquery/jquery.min.js' %}
{% css 'css/invenio.css' %}
#}
{% block header %}
{{ metaheaderadd|safe }}
{% endblock header %}
{% assets get_css_bundle() %}
<link rel="stylesheet" type="text/css" href="{{ ASSET_URL }}"></link>
{% endassets %}
{% assets get_js_bundle() %}
<script type="text/javascript" src="{{ ASSET_URL }}"></script>
{% endassets %}
{% block javascript %}{% endblock javascript %}
{% block css %}{% endblock css %}
<style>
footer a, footer a:hover {
color: #666;
}
footer, footer p {
font-size: 11px;
color: #333;
}
</style>
</head>
<body {{ body_css_classes|safe }} lang="{{ g.ln|safe }}">
<header>
<!-- replaced page header -->
{% block headerbox %}
{% include 'header.html' %}
{% endblock headerbox %}
<!-- end replaced page header -->
{% block breadcrumb %}
{% if breadcrumbs|length > 1 %}
<div class="container">
<ul class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
{% if loop.last %}
<li class="active">
{{ breadcrumb[0] }}
</li>
{% else %}
<li>
{% set url_args = breadcrumb[2] or {} %}
<a href="{{ url_for(breadcrumb[1], **url_args) }}" class="navtrail">{{ breadcrumb[0] }}</a> <span class="divider">/</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
{% endblock breadcrumb %}
{% block pageheaderadd %}{{ pageheaderadd|safe }}{% endblock pageheaderadd %}
</header>
<div class="container">
{% block title %}
{% if title %}
<div class="page-header">
<h1>{{ title }}</h1>
</div>
{% endif %}
{% endblock title %}
{% block messages %}
{% for category, msg in get_flashed_messages(with_categories=true) %}
<div class="alert alert-{{ category }}">
<a class="close" data-dismiss="alert" href="#">×</a>
{{ msg }}
</div>
{% endfor %}
{% endblock messages %}
{% block body %}
{{ body }}
{% endblock body %}
<hr/>
</div>
<footer>
<div class="container">
{% block pagefooteradd %}{{ pagefooteradd|safe }}{% endblock pagefooteradd %}
</div>
<!-- replaced page footer -->
{% include 'footer.html' %}
</footer>
</body>
</html>
Event Timeline
Log In to Comment