2014-08-10 19:35:18 -04:00
|
|
|
define(function(require, exports, module) {
|
|
|
|
|
|
|
|
var t = {};
|
|
|
|
|
|
|
|
t.logoContent = '<div class="logo">METAMAPS</div>';
|
|
|
|
t.logoContent += '<ul class="bottomLinks">';
|
|
|
|
t.logoContent += '<li class="openLightbox" data-open="about">About / </li>';
|
|
|
|
t.logoContent += '<li><a href="/maps/blank">Terms of Use / </a></li>';
|
|
|
|
t.logoContent += '<li class="openLightbox" data-open="colophon">Colophon / </li>';
|
|
|
|
t.logoContent += '<li class="openLightbox" data-open="getInvolved">Get Involved!</li>';
|
|
|
|
t.logoContent += '</ul>';
|
|
|
|
|
|
|
|
/* logged out explore maps bars */
|
2014-08-15 18:04:22 -04:00
|
|
|
t.activeContent = '<a href="/explore/active" class="active">Recently Active Maps</a>';
|
|
|
|
t.activeContent += '<a href="/explore/featured">Featured Maps</a>';
|
2014-08-10 19:35:18 -04:00
|
|
|
|
2014-08-15 18:04:22 -04:00
|
|
|
t.featuredContent = '<a href="/explore/active">Recently Active Maps</a>';
|
|
|
|
t.featuredContent += '<a href="/explore/featured" class="active">Featured Maps</a>';
|
2014-08-10 19:35:18 -04:00
|
|
|
|
|
|
|
/* logged in explore maps bars */
|
2014-08-12 18:14:04 -04:00
|
|
|
t.mineAuthContent = '<a href="/" class="active">My Maps</a>';
|
|
|
|
t.mineAuthContent += '<a href="/explore/active">Recently Active</a>';
|
|
|
|
t.mineAuthContent += '<a href="/explore/featured">Featured</a>';
|
|
|
|
|
|
|
|
t.activeAuthContent = '<a href="/">My Maps</a>';
|
|
|
|
t.activeAuthContent += '<a href="/explore/active" class="active">Recently Active</a>';
|
|
|
|
t.activeAuthContent += '<a href="/explore/featured">Featured</a>';
|
|
|
|
|
|
|
|
t.featuredAuthContent = '<a href="/">My Maps</a>';
|
|
|
|
t.featuredAuthContent += '<a href="/explore/active">Recently Active</a>';
|
|
|
|
t.featuredAuthContent += '<a href="/explore/featured" class="active">Featured</a>';
|
2014-08-10 19:35:18 -04:00
|
|
|
|
|
|
|
module.exports = t;
|
2014-08-11 09:21:58 -04:00
|
|
|
});
|