A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.3 KiB
71 lines
2.3 KiB
!!! 5 |
|
/[if IE] |
|
%html(lang="#{I18n.locale}") |
|
%head |
|
%title=t '.title' |
|
|
|
%meta(http-equiv='Content-Type' content='text/html; charset=utf-8') |
|
|
|
%meta(name='description' content='Agende du Libre. Free Software Calendar') |
|
%meta(name='author' content='Emmanuel Charpentier') |
|
%meta(name='robots' content='index, follow') |
|
%meta(name='keywords' content='calendar, agenda, date') |
|
|
|
%meta(name='dcterms.title' content='Free Calendar' lang='en') |
|
%meta(name='dcterms.title' content='Agenda du Libre' lang='fr') |
|
%meta(name='dcterms.subject' content='agenda') |
|
|
|
%link(rel='shortcut icon' href='/favicon.ico') |
|
= auto_discovery_link_tag :atom, { format: :atom } |
|
|
|
= stylesheet_link_tag 'application', media: "all", "data-turbolinks-track" => true |
|
= javascript_include_tag 'application', "data-turbolinks-track" => true |
|
/[if lt IE 9] |
|
%script(src='http://html5shiv.googlecode.com/svn/trunk/html5.js') |
|
= csrf_meta_tags |
|
|
|
// = javascript_include_tag 'html5' |
|
// = javascript_include_tag 'PIE' |
|
// /https://github.com/aFarkas/iepp/wiki |
|
|
|
%body(class = "#{controller.controller_name}") |
|
= render 'layouts/flash', flash: flash if flash.present? |
|
|
|
%header.top |
|
%h1= link_to t('.title'), root_url |
|
%h2=t '.subtitle' |
|
|
|
%ul.countries |
|
%li |
|
= link_to '/fr' do |
|
= image_tag 'france.png' |
|
France |
|
%li |
|
= link_to 'http://www.agendadulibre.qc.ca' do |
|
= image_tag 'quebec.png' |
|
Québec |
|
%li |
|
= link_to '/be' do |
|
= image_tag 'belgique.png' |
|
Belgique |
|
%li |
|
= link_to '/sw' do |
|
= image_tag 'suisse.png' |
|
Suisse |
|
|
|
%main |
|
= yield |
|
|
|
%footer.bottom |
|
%nav |
|
= link_to t('.propose'), new_event_path |
|
-#= link_to t('.rss'), users_url |
|
-#= link_to t('.ical'), users_url |
|
-#= link_to t('.map'), users_url |
|
-#= link_to t('.tags'), users_url |
|
-#= link_to t('.infos'), users_url |
|
-#= link_to t('.stats'), users_url |
|
-#= link_to t('.contact'), users_url |
|
-#= link_to t('.moderation'), users_url |
|
-#= link_to t('.forge'), 'http://rubyforge.org/projects/parlement' |
|
-#= link_to t('.agpl'), 'http://www.gnu.org/licenses/agpl.html'
|
|
|