forked from bofh/fetsite
default theme -> blue1
This commit is contained in:
45
app/views/themes/white_1/layouts/application.html.erb
Executable file
45
app/views/themes/white_1/layouts/application.html.erb
Executable file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Fetsite</title>
|
||||
|
||||
<%= stylesheet_link_tag "themes/"+theme_name+"/application", :media => "all" unless theme_name.nil? %>
|
||||
<%= stylesheet_link_tag "application", :media=>"all" if theme_name.nil? %>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="css/bootstrap.css">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="stylesheet" href="css/bootstrap-responsive.css">
|
||||
<!--[if lt IE 7]><link rel="stylesheet" href="css/bootstrap-ie6.css"><![endif]-->
|
||||
<link rel="stylesheet" href="css/bootstrap-image-gallery.css">
|
||||
<%= javascript_include_tag "application" %>
|
||||
<%= csrf_meta_tags %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="maincontainer" class="container-fluid">
|
||||
<div class="row-fluid">
|
||||
<div class="header">
|
||||
<%= image_tag('/fetlogo.png',{:style=>"float:left"}) %>
|
||||
<h1 style="display:block">Fachschaft Elektrotechnik</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row-fluid">
|
||||
<div class="span2 earlymax">
|
||||
|
||||
|
||||
<div id="menudiv"><%= render :template => 'layouts/menu' %></div>
|
||||
<%= render 'layouts/login' %>
|
||||
</div>
|
||||
<div class="span10" id="contentdiv">
|
||||
|
||||
<%= yield %>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user