forked from bofh/fetsite
Die span10 mit dem Seiteninhalt wurden von zwei span1 davor und dahinter zentriert, diese verursachen aber Abstände in der mobilen Ansicht (sind dort ober und unter dem span10), offset ist denk ich sauberer
65 lines
1.8 KiB
Plaintext
Executable File
65 lines
1.8 KiB
Plaintext
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="logo2014_64.png">
|
|
<!--<link rel="shortcut icon" href="http://www.fet.at/favicon.ico">-->
|
|
<!---->
|
|
|
|
<%= stylesheet_link_tag "themes/"+theme_name+"/application", :media => "all" unless theme_name.empty? %>
|
|
<%= stylesheet_link_tag "application", :media=>"all" if theme_name.empty? %>
|
|
<% theme_stylesheet_link_tag "test", :media => "all" %>
|
|
<% theme_stylesheet_link_tag "mod", :media=>"all" %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= csrf_meta_tags %>
|
|
<% if content_for?(:header) %>
|
|
<%= yield :header %>
|
|
<% else %>
|
|
<title>Fetsite</title>
|
|
<% end %>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="maincontainer" class="container-fluid">
|
|
<div class="row-fluid">
|
|
<div class="span10 offset1 header_span">
|
|
<div class="header_wrap">
|
|
<div class="header">
|
|
|
|
<%= link_to home_index_path do %>
|
|
<!-- <span class="feticon-fet_logo fa-4x color-1"> </span>-->
|
|
<%= image_tag('/logo2014_64.png',{:style=>"float:left;height:50px",:height=>"50"}) %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div id="menudiv" style="margin-top:12px">
|
|
<%= render :template => 'layouts/menu' %>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row-fluid">
|
|
<div class="span10 offset1" id="contentdiv">
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
<div class="row-fluid">
|
|
<div class="span10 offset1" id="contentdiv">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$('.dropdown-toggle').click(function(e) {
|
|
e.preventDefault();
|
|
setTimeout($.proxy(function() {
|
|
if ('ontouchstart' in document.documentElement) {
|
|
$(this).siblings('.dropdown-backdrop').off().remove();
|
|
}
|
|
}, this), 0);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|