2014-08-10 23:35:18 +00:00
|
|
|
define(function(require, exports, module) {
|
|
|
|
|
|
|
|
var t = {};
|
|
|
|
|
|
|
|
t.logoContent = '<div class="logo">METAMAPS</div>';
|
|
|
|
t.logoContent += '<ul class="bottomLinks">';
|
2014-08-27 02:51:50 +00:00
|
|
|
t.logoContent += '<li onclick="Metamaps.GlobalUI.openLightbox(\'about\')">About / </li>';
|
|
|
|
t.logoContent += '<li onclick="Metamaps.GlobalUI.openLightbox(\'colophon\')">Colophon / </li>';
|
2014-11-08 20:00:12 +00:00
|
|
|
t.logoContent += '<li onclick="Metamaps.GlobalUI.openLightbox(\'donate\')">Donate! / </li>';
|
2014-08-27 02:51:50 +00:00
|
|
|
t.logoContent += '<li onclick="Metamaps.GlobalUI.openLightbox(\'getInvolved\')">Get Involved!</li>';
|
2014-08-10 23:35:18 +00:00
|
|
|
t.logoContent += '</ul>';
|
|
|
|
|
|
|
|
/* logged out explore maps bars */
|
2014-08-27 02:51:50 +00:00
|
|
|
t.activeContent = '<a href="/explore/active" class="active activeMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Recently Active Maps</a>';
|
|
|
|
t.activeContent += '<a href="/explore/featured" class="featuredMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Featured Maps</a>';
|
2014-08-10 23:35:18 +00:00
|
|
|
|
2014-08-27 02:51:50 +00:00
|
|
|
t.featuredContent = '<a href="/explore/active" class="activeMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Recently Active Maps</a>';
|
|
|
|
t.featuredContent += '<a href="/explore/featured" class="active featuredMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Featured Maps</a>';
|
2014-08-10 23:35:18 +00:00
|
|
|
|
|
|
|
/* logged in explore maps bars */
|
2014-11-29 06:37:06 +00:00
|
|
|
t.mineAuthContent = '<a href="/explore/mine" class="active myMaps exploreMapsButton"><div class="exploreMapsIcon"></div>My Maps</a>';
|
|
|
|
t.mineAuthContent += '<a href="/" class="activeMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Recently Active</a>';
|
2014-08-27 02:51:50 +00:00
|
|
|
t.mineAuthContent += '<a href="/explore/featured" class="featuredMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Featured</a>';
|
2014-08-12 22:14:04 +00:00
|
|
|
|
2014-11-29 06:37:06 +00:00
|
|
|
t.activeAuthContent = '<a href="/explore/mine" class="myMaps exploreMapsButton"><div class="exploreMapsIcon"></div>My Maps</a>';
|
|
|
|
t.activeAuthContent += '<a href="/" class="active activeMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Recently Active</a>';
|
2014-08-27 02:51:50 +00:00
|
|
|
t.activeAuthContent += '<a href="/explore/featured" class="featuredMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Featured</a>';
|
2014-08-12 22:14:04 +00:00
|
|
|
|
2014-11-29 06:37:06 +00:00
|
|
|
t.featuredAuthContent = '<a href="/explore/mine" class="myMaps exploreMapsButton"><div class="exploreMapsIcon"></div>My Maps</a>';
|
|
|
|
t.featuredAuthContent += '<a href="/" class="activeMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Recently Active</a>';
|
2014-08-27 02:51:50 +00:00
|
|
|
t.featuredAuthContent += '<a href="/explore/featured" class="active featuredMaps exploreMapsButton"><div class="exploreMapsIcon"></div>Featured</a>';
|
2014-08-10 23:35:18 +00:00
|
|
|
|
|
|
|
module.exports = t;
|
2014-08-11 13:21:58 +00:00
|
|
|
});
|