metamaps--metamaps/app/views/layouts/_lightboxes.html.erb

77 lines
3.3 KiB
Plaintext
Raw Normal View History

2014-02-05 05:03:44 +00:00
<%#
# @file
# The inner HTML of the account box that comes up in the bottom left
#%>
<div id="lightbox_overlay">
<div id="lightbox_main">
2014-02-06 17:40:44 +00:00
<a id="lightbox_close" onclick="cancelMapCreate('fork_map');cancelMapCreate('new_map');return false;" href="#"></a>
2014-02-05 05:03:44 +00:00
<div id="lightbox_content">
<div class="lightboxContent" id="about">
<h3>About Metamaps.cc</h3>
<p>
2014-02-06 17:40:44 +00:00
Metamaps is an online interface for communities to build and visualize their shared knowledge.
It is a tool to connect people, resources, and ideas in 'big picture' views without losing context or detail.
2014-02-05 17:37:21 +00:00
</p>
<p>
2014-02-06 17:40:44 +00:00
Metamaps provide a natural window into complex systems, sparking insights, creative opportunities, and social synergy.
The platform is evolving to meet a growing range of application scenarios.
2014-02-05 17:37:21 +00:00
</p>
<p>
2014-02-06 17:40:44 +00:00
The Metamaps project is a collaborative venture powered by a passionate network of peers,
dedicated to the wealth of knowledge we find in common.
2014-02-05 05:03:44 +00:00
</p>
<ul>
<li><a href="/paq">P(ossibly)AQ</a></li>
2014-02-05 05:03:44 +00:00
<li><a href="http://blog.metamaps.cc" target="_blank">blog</a></li>
<li><a href="https://plus.google.com/u/0/communities/115060009262157699234" target="_blank">community</a></li>
<li><a href="https://twitter.com/metamapps" target="_blank">@metamapps</a></li>
<li><a href="https://github.com/Connoropolous/metamaps_gen002" target="_blank">source code</a></li>
<li><a href="http://metamaps.cc/maps/331" target="_blank">terms</a></li>
</ul>
<div class="clearfloat"></div>
</div>
<div class="lightboxContent" id="tutorial">
<h3>Tutorial</h3>
<div>Coming soon...</div>
<!--<iframe width="510" height="383" src="//www.youtube.com/embed/0Bd8XxlNG3U?rel=0" frameborder="0" allowfullscreen></iframe>-->
2014-02-05 05:03:44 +00:00
</div>
<div class="lightboxContent" id="cheatsheet">
<%= render :partial => 'layouts/cheatsheet' %>
2014-02-05 05:03:44 +00:00
</div>
2014-02-05 17:37:21 +00:00
<% if authenticated? %>
2014-02-07 17:55:11 +00:00
<div class="lightboxContent" id="invite">
<h3>Send Invites</h3>
<p>You can invite others to the Metamaps platform. Send them this link</p>
2014-02-07 17:55:11 +00:00
<p class="green">http://metamaps.cc/users/sign_up</p>
<p>and give them the access code shown below.</p>
<% mapper = current_user %>
<p class="green"><%= mapper.code %></p>
<p>We invite you to be conscious as to who you invite to this platform, because much of the collaborative editing is based on trust. We want to cultivate a community here that is fun, wise, creative, and flourishing. Can you help us build a community like that?</p>
</div>
2014-02-05 17:37:21 +00:00
<% # this is the create new map form %>
<div class="lightboxContent" id="newmap">
<%= render :partial => 'maps/new' %>
</div>
<% if (controller_name == "maps" || controller_name == "topics" ) && action_name == "show" %>
<div class="lightboxContent" id="forkmap">
<%= render :partial => 'maps/fork' %>
</div>
<% end %>
<% end %>
2014-02-05 05:03:44 +00:00
</div>
</div>
2014-02-06 17:40:44 +00:00
<div id="lightbox_screen" onclick="cancelMapCreate('fork_map');cancelMapCreate('new_map');return false;" style="height: 100%;"></div>
2014-02-05 05:03:44 +00:00
</div>