metamaps--metamaps/app/views/main/home.html.erb

104 lines
2.6 KiB
Plaintext
Raw Normal View History

<%#
# @file
# Located at /
# Shows 3 most recently created topics, synapses, and maps.
2014-08-10 17:06:58 +00:00
#%>
2014-08-02 02:50:23 +00:00
<% if !authenticated? %>
2014-08-10 17:06:58 +00:00
<% content_for :title, "Home | Metamaps" %>
2014-02-24 19:35:48 +00:00
<div id="preloaded-images">
<img src="/assets/metacodes75ms300x300.gif" width="128 height="128" alt="Image 01" />
</div>
<div class="home_bg">
<div class="home_content">
<div class="home_desc">
2014-03-03 08:25:47 +00:00
<div class="welcomeTo">
Welcome to Metamaps
2014-02-24 07:22:40 +00:00
</div>
2014-03-03 08:25:47 +00:00
<img id="homeMapImage" src="/assets/metamap128x128.png" width="128" height="128" />
<div class="metamapsIs">
a home on the web for <span class="swapWord">
<ul class="texts">
<li>building shared knowledge</li>
<li>learning</li>
<li>visioning</li>
<li>conversing</li>
<li>collaborating</li>
<li>sensemaking</li>
<li>innovating</li>
<li>designing</li>
<li>playing</li>
<li>exploring</li>
</ul>
</span>
</div>
</div>
<div class="clearfloat"></div>
2014-02-10 06:29:02 +00:00
<p class="contact">
2014-08-10 17:06:58 +00:00
<a href="/request" class="request button" data-bypass="true">Request Invite</a>
<a href="/explore/featured" class="learnmore button">Explore Featured</a>
2014-03-03 08:25:47 +00:00
<div class="featuredMaps">
explore featured maps from our community
</div>
2014-02-10 06:29:02 +00:00
</p>
<div class="centeredProfile">
2014-02-10 06:29:02 +00:00
<div id="homeMap">
2014-02-24 07:22:40 +00:00
<figure id="homeFigure">
<% @maps.each_with_index do |map, index| %>
<% first = index == 0 ? true : false %>
<%= render :partial => 'main/homemap', :locals => { :map => map, :first => first } %>
2014-02-10 06:29:02 +00:00
<% end %>
2014-02-24 07:22:40 +00:00
</figure>
2014-02-10 06:29:02 +00:00
</div>
</div>
</div>
<div class="clearfloat"></div>
</div>
2014-08-02 02:50:23 +00:00
2014-02-24 07:22:40 +00:00
<script>
2014-08-10 17:06:58 +00:00
Metamaps.currentSection = "";
Metamaps.currentPage = "";
2014-02-24 07:22:40 +00:00
$(document).ready(function() {
// flip through these words on the homepage
$('.swapWord').textillate({
in: { effect: 'fadeIn', delay: 20 },
out: { effect: 'fadeOut', sync: true },
loop: true,
minDisplayTime: 2000
});
2014-02-24 19:35:48 +00:00
$('#homeMapImage').hover(function() {
$(this).attr('src','/assets/metacodes75ms300x300.gif');
}, function() {
$(this).attr('src','/assets/metamap128x128.png');
});
2014-06-11 14:25:33 +00:00
2014-06-12 02:38:48 +00:00
$('#homeMap .desc').each(function() {
$(this).height($(this).height()).mCustomScrollbar({
mouseWheelPixels: 200
});
2014-06-11 14:25:33 +00:00
});
2014-02-24 19:35:48 +00:00
2014-02-24 07:22:40 +00:00
});
2014-08-02 02:50:23 +00:00
</script>
<% elsif authenticated? %>
2014-08-10 17:06:58 +00:00
<% content_for :title, "My Maps | Metamaps" %>
2014-08-02 02:50:23 +00:00
2014-08-10 17:06:58 +00:00
<script>
Metamaps.Maps.Mine = <%= @maps.to_json.html_safe %>;
Metamaps.currentSection = "";
Metamaps.currentPage = "";
Metamaps.GlobalUI.Search.isOpen = true;
Metamaps.GlobalUI.Search.lock();
</script>
<% end %>