forked from bofh/fetsite
71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<%= stylesheet_link_tag "themes/"+theme_name+"/application", :media => "all" unless theme_name.empty? %>
|
|
<%= stylesheet_link_tag "application", :media=>"all" if theme_name.empty? %>
|
|
|
|
<%= javascript_include_tag "application" %>
|
|
<%= javascript_include_tag "jmpress" %>
|
|
|
|
</head>
|
|
<body>
|
|
<div id ="jmpress">
|
|
<% i=1 %>
|
|
<% @neuigkeiten.each do |n| %>
|
|
|
|
<div class="step contentbox" id="step-<%=i%>" data-x="<%= i *2000 %>" data-y="<%= Random.rand(0..5)*200 %>" data-rotate="<%= Random.rand(0..18)*10 %>" style="width:1024px; height:500px; padding: 50px; display:block" data-duration="10000"><% @toolbar_elements=[];@questions=[] %>
|
|
<div class="media">
|
|
<% unless n.picture_robust.big_thumb.to_s.empty? %>
|
|
<div class="pull-left" href="#">
|
|
<p><br><%= link_to image_tag(n.picture_robust.big_thumb),n.picture_robust.try(:url) %>
|
|
</p>
|
|
</div>
|
|
<% end %>
|
|
<div class="media-body">
|
|
<h1 itemprop="name">
|
|
<%= raw(n.title) %> <%#= link_to fa_icon("edit"), edit_rubrik_neuigkeit_path(n.rubrik, n), remote: true if can? :edit, n %>
|
|
</h1>
|
|
<div itemprop="articleBody" style="font-size:large">
|
|
<%= raw(n.text) %>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<h1>
|
|
<% if n.has_calentries? %>
|
|
<div href="#">
|
|
<%= fa_icon("calendar 2x") %>
|
|
<%= n.relevant_calentry.text %>
|
|
</div>
|
|
<% elsif n.has_meeting? %>
|
|
<div href="#">
|
|
<%= fa_icon("calendar 2x") %>
|
|
<%= n.meeting.calentry.text unless n.meeting.calentry.nil? %>
|
|
</div>
|
|
|
|
<% end %>
|
|
</h1>
|
|
|
|
</div>
|
|
<% i = i+1 %>
|
|
<% end %>
|
|
|
|
</div>
|
|
<div class="ui-progressbar ui-widget ui-widget-content ui-corner-all" style="height:10px; z-index: 2000; left: 5px; right: 5px; bottom: 5px; height: 10px; position:absolute">
|
|
<div id="my-progress-bar" class="ui-progressbar-value ui-widget-header ui-corner-left" style="width:0;height:100%"></div>
|
|
</div>
|
|
|
|
<script>
|
|
$(function () {
|
|
$('#jmpress').jmpress({
|
|
duration: {
|
|
barPropertyStart: '0',
|
|
barSelector: '#my-progress-bar'
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|