mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
169 lines
6.1 KiB
Text
169 lines
6.1 KiB
Text
extends ../layout
|
|
|
|
block content
|
|
.content.content-alt
|
|
.container.bonus
|
|
.row
|
|
.col-md-8.col-md-offset-2
|
|
.card
|
|
.container-fluid(ng-controller="BonusLinksController")
|
|
.row
|
|
.col-md-12
|
|
.page-header
|
|
h1 #{translate("help_us_spread_word")}.
|
|
|
|
|
|
.row
|
|
.col-md-10.col-md-offset-1
|
|
h2 #{translate("share_sl_to_get_rewards")}
|
|
|
|
.row
|
|
.col-md-8.col-md-offset-2.bonus-banner
|
|
.bonus-top
|
|
|
|
.row
|
|
.col-md-8.col-md-offset-2.bonus-banner
|
|
.title
|
|
a(href='https://twitter.com/share?text=is%20trying%20out%20the%20online%20LaTeX%20Editor%20ShareLaTeX&url='+encodeURIComponent(buildReferalUrl("t"))+'&counturl=https://www.sharelatex.com', target="_blank").twitter Tweet
|
|
|
|
.row
|
|
.col-md-8.col-md-offset-2.bonus-banner
|
|
.title
|
|
a(href='#', onclick='postToFeed(); return false;').facebook #{translate("post_on_facebook")}
|
|
|
|
.row
|
|
.col-md-8.col-md-offset-2.bonus-banner
|
|
.title
|
|
a(href="https://plus.google.com/share?url="+encodeURIComponent(buildReferalUrl('gp')), onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;").google-plus #{translate("share_us_on_googleplus")}
|
|
|
|
.row
|
|
.col-md-8.col-md-offset-2.bonus-banner
|
|
.title
|
|
a(href='mailto:?subject=Online LaTeX editor you may like &body=Hey, I have been using the online LaTeX editor ShareLaTeX recently and thought you might like to check it out. '+encodeURIComponent(buildReferalUrl("e")), title='Share by Email').email #{translate("email_us_to_your_friends")}
|
|
|
|
.row
|
|
.col-md-8.col-md-offset-2.bonus-banner
|
|
.title
|
|
a(href='#link-modal', data-toggle="modal", ng-click="openLinkToUsModal()").link #{translate("link_to_us")}
|
|
|
|
.row
|
|
.col-md-10.col-md-offset-1.bonus-banner
|
|
h2.direct-link #{translate("direct_link")}
|
|
pre.text-centered #{buildReferalUrl("d")}
|
|
|
|
.row.ab-bonus
|
|
.col-md-10.col-md-offset-1.bonus-banner
|
|
p.thanks !{translate("sl_gives_you_free_stuff_see_progress_below")}
|
|
.row.ab-bonus
|
|
.col-md-10.col-md-offset-1.bonus-banner(style="position: relative; height: 30px; margin-top: 20px;")
|
|
- for (var i = 0; i <= 10; i++) {
|
|
- if (refered_user_count == i)
|
|
.number(style="left: "+i+"0%").active #{i}
|
|
- else
|
|
.number(style="left: "+i+"0%") #{i}
|
|
- }
|
|
|
|
.row.ab-bonus
|
|
.col-md-10.col-md-offset-1.bonus-banner
|
|
.progress
|
|
- if (refered_user_count == 0)
|
|
div(style="text-align: center; padding: 4px;") #{translate("spread_the_word_and_fill_bar")}
|
|
.progress-bar.progress-bar-info(style="width: "+refered_user_count+"0%")
|
|
|
|
.row.ab-bonus
|
|
.col-md-10.col-md-offset-1.bonus-banner(style="position: relative; height: 70px;")
|
|
.perk(style="left: 10%;", class = refered_user_count >= 1 ? "active" : "") #{translate("one_free_collab")}
|
|
.perk(style="left: 30%;", class = refered_user_count >= 3 ? "active" : "") #{translate("three_free_collab")}
|
|
.perk(style="left: 60%;", class = refered_user_count >= 6 ? "active" : "") #{translate("free_dropbox_and_history")} + #{translate("three_free_collab")}
|
|
.perk(style="left: 90%;", class = refered_user_count >= 9 ? "active" : "") #{translate("free_dropbox_and_history")} + #{translate("unlimited_collabs")}
|
|
.row
|
|
|
|
.row.ab-bonus
|
|
.col-md-10.col-md-offset-1.bonus-banner
|
|
- if (refered_user_count == 0)
|
|
p.thanks !{translate("you_not_introed_anyone_to_sl")}
|
|
- else if (refered_user_count == 1)
|
|
p.thanks !{translate("you_introed_small_number", {numberOfPeople:"<strong>" + refered_user_count + "</strong>"})}
|
|
- else
|
|
p.thanks !{translate("you_introed_high_number", {numberOfPeople:"<strong>" + refered_user_count + "</strong>"})}
|
|
|
|
script(type="text/ng-template", id="BonusLinkToUsModal")
|
|
.modal-header
|
|
button.close(
|
|
type="button"
|
|
data-dismiss="modal"
|
|
ng-click="cancel()"
|
|
) ×
|
|
h3 #{translate("link_to_sl")}
|
|
.modal-body.modal-body-share.link-modal
|
|
|
|
p #{translate("can_link_to_sl_with_html")}
|
|
p
|
|
textarea.col-md-12(readonly=true)
|
|
<a href="#{buildReferalUrl("d")}">Online LaTeX Editor ShareLaTeX</a>
|
|
|
|
p #{translate("thanks")}!
|
|
|
|
|
|
.modal-footer()
|
|
button.btn.btn-default(
|
|
ng-click="cancel()",
|
|
)
|
|
span #{translate("close")}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
script(type='text/javascript', src='//platform.twitter.com/widgets.js')
|
|
script(src='https://connect.facebook.net/en_US/all.js')
|
|
script(type='text/javascript').
|
|
FB.init({appId: "148710621956179", status: true, cookie: true});
|
|
|
|
function postToFeed() {
|
|
|
|
// calling the API ...
|
|
var obj = {
|
|
method: 'feed',
|
|
redirect_uri: 'https://www.sharelatex.com',
|
|
link: '!{buildReferalUrl("fb")}',
|
|
picture: 'https://www.sharelatex.com/brand/logo/logosmall.png',
|
|
name: 'ShareLaTeX - Online LaTeX Editor',
|
|
caption: 'Free Unlimited Projects and Compiles',
|
|
description: 'ShareLaTeX is a free online LaTeX Editor. Real time collaboration like Google Docs, with Dropbox, history and auto-complete'
|
|
};
|
|
|
|
function callback(response) {
|
|
// document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
|
|
}
|
|
if (typeof FB !== "undefined" && FB !== null) {
|
|
FB.ui(obj, callback);
|
|
}
|
|
}
|
|
|
|
script(type="text/javascript").
|
|
$(function() {
|
|
$(".twitter").click(function() {
|
|
ga('send', 'event', 'referal-button', 'clicked', "twitter")
|
|
});
|
|
$(".email").click(function() {
|
|
ga('send', 'event', 'referal-button', 'clicked', "email")
|
|
});
|
|
$(".facebook").click(function() {
|
|
ga('send', 'event', 'referal-button', 'clicked', "facebook")
|
|
});
|
|
$(".google-plus").click(function() {
|
|
ga('send', 'event', 'referal-button', 'clicked', "google-plus")
|
|
});
|
|
$(".link").click(function() {
|
|
ga('send', 'event', 'referal-button', 'clicked', "direct-link")
|
|
});
|
|
});
|
|
|