|
@@ -3,17 +3,34 @@
|
|
|
{% import "ChamiloThemeBundle:Macros:buttons.html.twig" as macro_buttons %}
|
|
|
{% import "ChamiloThemeBundle:Macros:image.html.twig" as macro_image %}
|
|
|
<!doctype html>
|
|
|
-<!--[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]-->
|
|
|
+<!--[if lt IE 7 ]>
|
|
|
+<html lang="{{ app.request.locale }}" class="no-js ie6"> <![endif]-->
|
|
|
+<!--[if IE 7 ]>
|
|
|
+<html lang="{{ app.request.locale }}" class="no-js ie7"> <![endif]-->
|
|
|
+<!--[if IE 8 ]>
|
|
|
+<html lang="{{ app.request.locale }}" class="no-js ie8"> <![endif]-->
|
|
|
+<!--[if IE 9 ]>
|
|
|
+<html lang="{{ app.request.locale }}" class="no-js ie9"> <![endif]-->
|
|
|
+<!--[if (gt IE 9)|!(IE)]><!-->
|
|
|
+<html lang="{{ app.request.locale }}" class="no-js"> <!--<![endif]-->
|
|
|
<head>
|
|
|
<meta charset="utf-8">
|
|
|
<meta name="author" content="">
|
|
|
<meta name="keywords" content="">
|
|
|
+
|
|
|
+ <link href="https://chamilo.org/chamilo-lms/" rel="help"/>
|
|
|
+ <link href="https://chamilo.org/the-association/" rel="author"/>
|
|
|
+ <link href="https://chamilo.org/the-association/" rel="copyright"/>
|
|
|
+ <link rel="apple-touch-icon" href="{{ asset('apple-touch-icon.png') }}"/>
|
|
|
+ <meta name="apple-mobile-web-app-capable" content="yes"/>
|
|
|
+ {#<meta name="Generator" content="{{ _s.software_name }} {{ _s.system_version|slice(0,1) }}" />#}
|
|
|
+
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
- <title>{% block title %}Chamilo{% endblock %}</title>
|
|
|
+ <title>
|
|
|
+ {% block title %}
|
|
|
+ {{ chamilo_settings_get('platform.institution') }} - {{ chamilo_settings_get('platform.site_name') }}
|
|
|
+ {% endblock %}
|
|
|
+ </title>
|
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
|
|
|
|
|
|
{%- stylesheets '@chamilo_css' -%}
|
|
@@ -21,13 +38,12 @@
|
|
|
{% endstylesheets %}
|
|
|
|
|
|
{# Chamilo base #}
|
|
|
- {#{% set theme = chamilo_settings_get('platform.theme') %}#}
|
|
|
- {% set theme = 'chamilo' %}
|
|
|
+ {% set theme = chamilo_settings_get('platform.theme') %}
|
|
|
{% set show_header = true %}
|
|
|
{% set bug_notification_link = '' %}
|
|
|
{% set help_content = '' %}
|
|
|
{% set header_extra_content = '' %}
|
|
|
- {% set logo = '' %}
|
|
|
+
|
|
|
{% set template = 'default' %}
|
|
|
{% set notification_menu = '' %}
|
|
|
{% set accessibility = '' %}
|
|
@@ -37,7 +53,6 @@
|
|
|
{% set message_url = '' %}
|
|
|
{% set profile_link = '' %}
|
|
|
{% set message_link = '' %}
|
|
|
- {% set logout_link = '' %}
|
|
|
|
|
|
<link rel="stylesheet" href="{{ asset('bundles/chamilocore/css/base.css') }}"/>
|
|
|
<link rel="stylesheet" media="print" href="{{ asset('bundles/chamilocore/css/print.css') }}"/>
|
|
@@ -88,8 +103,7 @@
|
|
|
<div class="row">
|
|
|
<div class="col-lg-3">
|
|
|
<div class="logo">
|
|
|
- Chamilo
|
|
|
-
|
|
|
+ <img src="{{ asset('bundles/chamilocore/css/themes/'~ theme ~'/images/header-logo.png') }}"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-lg-9">
|