96 lines
No EOL
4.6 KiB
Text
96 lines
No EOL
4.6 KiB
Text
<%#
|
|
# @file
|
|
# Located at /
|
|
# Shows 3 most recently created topics, synapses, and maps.
|
|
#%>
|
|
|
|
<% if !authenticated? %>
|
|
<% content_for :title, "Home | Metamaps" %>
|
|
<div id="yield">
|
|
<<<<<<< HEAD
|
|
<div class="homeWrapper">
|
|
<div class="homeTextWrapper">
|
|
<div class="homeLogo"></div>
|
|
<div class="homeText">
|
|
Welcome to the collaborative, realtime design and sensemaking playground
|
|
for members of The Value Web globally.
|
|
</div>
|
|
<div class="learnMore">LEARN MORE:</div>
|
|
<div class="homeLinks">
|
|
<a id="toMetamaps" href="http://metamaps.cc" data-bypass="true"></a>
|
|
<a id="toTheValueWeb" href="http://www.thevalueweb.org" data-bypass="true"></a>
|
|
</div>
|
|
</div>
|
|
|
|
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { class: "loginAnywhere" }) do |f| %>
|
|
<div class="accountInput accountEmail">
|
|
<%= f.email_field :email, :placeholder => "Email" %>
|
|
</div>
|
|
<div class="accountInput accountPassword">
|
|
<%= f.password_field :password, :placeholder => "Password" %>
|
|
</div>
|
|
<div class="accountSubmit"><%= f.submit "SIGN IN" %></div>
|
|
<% if devise_mapping.rememberable? -%>
|
|
<div class="accountRememberMe">
|
|
<%= f.label :remember_me, "Stay signed in" %>
|
|
<%= f.check_box :remember_me %>
|
|
<div class="clearfloat"></div>
|
|
</div>
|
|
<% end -%>
|
|
<div class="clearfloat"></div>
|
|
<div class="accountForgotPass">
|
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
|
|
<%= link_to "Forgot password?", new_password_path(resource_name),
|
|
:data => { :bypass => 'true'} %>
|
|
<% end -%>
|
|
</div>
|
|
<% end %>
|
|
<div class="clearfloat"></div>
|
|
</div>
|
|
</div><!-- end yield -->
|
|
=======
|
|
<div class="homeWrapper homeText">
|
|
<div class="homeTitle">Make Sense with Metamaps</div>
|
|
<div class="homeIntro">
|
|
<span class="green din-medium">METAMAPS.CC</span> is a free and open source platform that supports real-time sense-making, distributed collaboration, and the creative intelligence of individuals, organizations and communities. We are currently in an <span class="din-medium">invite-only beta.</span>
|
|
</div>
|
|
</div>
|
|
<div class="fullWidthWrapper withVideo">
|
|
<div class="homeWrapper">
|
|
<iframe class="homeVideo" src="//player.vimeo.com/video/113154814" width="560" height="315" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
|
|
<div class="callToAction">
|
|
<h3>Who finds it useful?</h3>
|
|
<p>Designers, inventors, artists, educators, strategists, consultants, facilitators, entrepreneurs, systems thinkers, changemakers, analysts, students, researchers... maybe you!</p>
|
|
<button type="button" class="button learnMoreCTA" onclick="Metamaps.GlobalUI.openLightbox('about');">LEARN MORE</button>
|
|
<a href="/explore/featured" class="exploreFeaturedCTA">EXPLORE FEATURED MAPS</a>
|
|
<a href="/request" class="requestInviteCTA" data-bypass="true">REQUEST INVITE</a>
|
|
</div>
|
|
<div class="clearfloat"></div>
|
|
</div>
|
|
</div>
|
|
<div class="fullWidthWrapper withPartners">
|
|
<div class="homeWrapper homePartners">
|
|
<% # our partners %>
|
|
</div>
|
|
</div>
|
|
</div><!-- end yield -->
|
|
<div class="github-fork-ribbon-wrapper right-bottom">
|
|
<div class="github-fork-ribbon">
|
|
<a href="https://github.com/metamaps/metamaps_gen002" target="_blank">Fork me on GitHub</a>
|
|
</div>
|
|
</div>
|
|
>>>>>>> develop
|
|
<script>
|
|
Metamaps.currentSection = "";
|
|
Metamaps.currentPage = "";
|
|
</script>
|
|
<% elsif authenticated? %>
|
|
<% content_for :title, "Explore Active Maps | Metamaps" %>
|
|
<script>
|
|
Metamaps.Maps.Active = <%= @maps.to_json.html_safe %>;
|
|
Metamaps.currentSection = "";
|
|
Metamaps.currentPage = "";
|
|
Metamaps.GlobalUI.Search.isOpen = true;
|
|
Metamaps.GlobalUI.Search.lock();
|
|
</script>
|
|
<% end %> |