2013-01-11 18:49:59 -05:00
|
|
|
<%#
|
|
|
|
# @file
|
|
|
|
# Located at /
|
|
|
|
# Shows 3 most recently created topics, synapses, and maps.
|
|
|
|
#%>
|
2013-07-09 12:32:13 -04:00
|
|
|
|
|
|
|
<% content_for :title, "Home | Metamaps" %>
|
|
|
|
|
2013-02-03 19:13:21 -05:00
|
|
|
<div class="home_bg">
|
2013-01-07 23:03:41 -05:00
|
|
|
|
2013-02-03 19:13:21 -05:00
|
|
|
<div class="home_content">
|
|
|
|
<div class="home_desc">
|
2014-02-23 23:22:40 -08:00
|
|
|
<div class="welcomeTo">Welcome to Metamaps</div>
|
|
|
|
<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>
|
2013-01-07 23:03:41 -05:00
|
|
|
</div>
|
|
|
|
<div class="clearfloat"></div>
|
2013-07-11 11:13:27 -04:00
|
|
|
|
2014-02-10 01:29:02 -05:00
|
|
|
<p class="contact">
|
|
|
|
<a href="/request" class="request button">Request Invite</a>
|
2014-02-23 23:22:40 -08:00
|
|
|
<a href="#" class="learnmore button openLightbox" data-open="about">Learn More</a>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
explore what experienced metamappers are creating
|
2014-02-10 01:29:02 -05:00
|
|
|
</p>
|
|
|
|
|
2013-01-07 23:03:41 -05:00
|
|
|
<div class="centeredProfile">
|
2014-02-10 01:29:02 -05:00
|
|
|
<div id="homeMap">
|
2014-02-23 23:22:40 -08:00
|
|
|
<figure id="homeFigure">
|
|
|
|
<% @maps.each_with_index do |map, index| %>
|
|
|
|
<% first = index == 0 ? true : false %>
|
|
|
|
<%= render :partial => 'maps/homemap', :locals => { :map => map, :first => first } %>
|
2014-02-10 01:29:02 -05:00
|
|
|
<% end %>
|
2014-02-23 23:22:40 -08:00
|
|
|
</figure>
|
2014-02-10 01:29:02 -05:00
|
|
|
</div>
|
2013-01-07 23:03:41 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-02-03 19:13:21 -05:00
|
|
|
<div class="clearfloat"></div>
|
2013-01-07 23:03:41 -05:00
|
|
|
|
2013-02-03 19:13:21 -05:00
|
|
|
</div>
|
2014-02-23 23:22:40 -08:00
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
$(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
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/*$("#homeMap").mCustomScrollbar({
|
|
|
|
horizontalScroll:true,
|
|
|
|
scrollButtons: { enable: true }
|
|
|
|
}).mCustomScrollbar('scrollTo',300);*/
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|