diff --git a/controller/Controller.class.php b/controller/Controller.class.php index 9974c84e..a2741afb 100644 --- a/controller/Controller.class.php +++ b/controller/Controller.class.php @@ -125,7 +125,6 @@ class Controller $router->any('/dmca', 'ReportActions::executeDmca'); - $router->any('/youtube/sub', 'AcquisitionActions::executeYouTubeSub'); $router->post('/youtube/edit', 'AcquisitionActions::executeYoutubeEdit'); $router->post('/youtube/token', 'AcquisitionActions::executeYoutubeToken'); $router->any('/youtube/status/{token}', 'AcquisitionActions::executeYoutubeStatus'); diff --git a/controller/Session.class.php b/controller/Session.class.php index a207141a..51ec4d65 100644 --- a/controller/Session.class.php +++ b/controller/Session.class.php @@ -2,12 +2,9 @@ class Session { - const KEY_DOWNLOAD_ACCESS_ERROR = 'download_error2', - KEY_DOWNLOAD_ALLOWED = 'beta_download_allowed2', - KEY_GITHUB_ACCESS_TOKEN = 'github_access_token', - KEY_LIST_SUB_ERROR = 'list_error', - KEY_USER_CULTURE = 'user_culture', - KEY_YOUTUBE_TEMPLATE = 'youtube_landing_template'; + const KEY_LIST_SUB_ERROR = 'list_error', + KEY_YOUTUBE_SYNC_ERROR = 'youtube_sync_error', + KEY_USER_CULTURE = 'user_culture'; const NAMESPACE_DEFAULT = 'default', NAMESPACE_FLASH = 'flash', diff --git a/controller/action/AcquisitionActions.class.php b/controller/action/AcquisitionActions.class.php index 9de0c9e4..36aaed86 100644 --- a/controller/action/AcquisitionActions.class.php +++ b/controller/action/AcquisitionActions.class.php @@ -2,55 +2,11 @@ class AcquisitionActions extends Actions { - public static function executeThanks() - { - return ['acquisition/thanks']; - } - - public static function executeYouTubeSub() - { - if (!Request::isPost()) { - return Controller::redirect('/youtube'); - } - - $email = Request::getPostParam('email'); - - if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { - Session::setFlash('error', 'Please enter a valid email.'); - return Controller::redirect('/youtube'); - } - - Salesforce::createContact($email, SalesForce::DEFAULT_LIST_ID, 'YouTube Campaign'); - Mailgun::sendYouTubeWarmLead(['email' => $email]); - - Session::setFlash('success', 'Thanks! We\'ll be in touch. The good kind of touch.'); - - return Controller::redirect(Request::getReferrer(), 303); - } - public static function executeYouTube(string $version = '') { - if (isset($_GET['error_message'])) { - $error_message = Request::encodeStringFromUser($_GET['error_message']); - } - - $baseTemplate = 'acquisition/youtube'; - $versionedTemplate = $baseTemplate . '-' . $version; - $template = $version && View::exists($versionedTemplate) ? $versionedTemplate : $baseTemplate; - - if ($version && View::exists($versionedTemplate)) { - Session::set(SESSION::KEY_YOUTUBE_TEMPLATE, $template); - } - - $template = Session::get(SESSION::KEY_YOUTUBE_TEMPLATE) ?? $template; - if (!View::exists($template)) { - Session::unsetKey(SESSION::KEY_YOUTUBE_TEMPLATE); - $template = $baseTemplate; - } - - return [$template, [ + return ['acquisition/youtube', [ 'reward' => LBRY::youtubeReward(), - 'error_message' => $error_message ?? '' + 'error_message' => Session::getFlash(Session::KEY_YOUTUBE_SYNC_ERROR) ]]; } @@ -66,39 +22,36 @@ class AcquisitionActions extends Actions public static function executeYoutubeToken() { - return ['acquisition/youtube_token', ['_no_layout' => true]]; + $channelName = Request::encodeStringFromUser($_POST['desired_lbry_channel_name']); + + if ($channelName && $channelName[0] !== "@") { + $channelName = '@' . $channelName; + } + + $token = LBRY::connectYoutube($channelName); + if ($token['success'] && $token['data']) { + Controller::redirect($token['data']); + } else { + Session::setFlash(Session::KEY_YOUTUBE_SYNC_ERROR, $token['error'] ?? "An unknown error occured."); + Controller::redirect('/youtube'); + } } public static function executeYoutubeStatus(string $token) { - if (isset($_GET['error_message'])) { - $error_message = Request::encodeStringFromUser($_GET['error_message']); + $data = LBRY::statusYoutube($token); + if (!$data['success']) { + Session::setFlash(Session::KEY_YOUTUBE_SYNC_ERROR, $data['error'] ?? "Error fetching your sync status."); + Controller::redirect('/youtube'); } - $data = LBRY::statusYoutube($token); - if ($data['success'] == false) { - Controller::redirect('/youtube?error=true&error_message=' . $data['error']); - } return ['acquisition/youtube_status', [ 'token' => $token, 'status_token' => $data, - 'error_message' => $error_message ?? '' + 'error_message' => Session::getFlash(Session::KEY_YOUTUBE_SYNC_ERROR) ]]; } - public static function actionYoutubeToken(string $desired_lbry_channel_name) - { - $desired_lbry_channel_name_is_valid = static::lbry_channel_verification($desired_lbry_channel_name); - - if ($desired_lbry_channel_name_is_valid) { - $token = LBRY::connectYoutube($desired_lbry_channel_name); - if ($token['success'] == false) { - Controller::redirect('/youtube?error=true&error_message=' . $token['error']); - } else { - Controller::redirect($token['data']); - } - } - } public static function actionYoutubeEdit($status_token, $channel_name, $email, $sync_consent) { $current_value = LBRY::statusYoutube($status_token); @@ -109,7 +62,8 @@ class AcquisitionActions extends Actions } if ($status['success'] == false) { - Controller::redirect("/youtube/status/". $status_token . "?error=true&error_message=" . $status['error']); + Session::setFlash(Session::KEY_YOUTUBE_SYNC_ERROR, $status['error']); + Controller::redirect("/youtube/status/". $status_token); } else { Controller::redirect("/youtube/status/" . $status_token); } @@ -123,31 +77,4 @@ class AcquisitionActions extends Actions { return ['acquisition/youtube_status_redirect']; } - - protected static function email_verification($email) - { - if (preg_match('/\S+@\S+\.\S+/', $email)) { - return true; - } else { - return false; - } - } - - protected static function youtube_channel_verification($youtube_channel_id) - { - if (preg_match('/^UC[A-Za-z0-9_-]{22}$/', $youtube_channel_id)) { - return true; - } else { - return false; - } - } - - protected static function lbry_channel_verification($lbry_channel) - { - if (preg_match('/[1-z]+/', $lbry_channel)) { - return true; - } else { - return false; - } - } } diff --git a/lib/thirdparty/Mailgun.class.php b/lib/thirdparty/Mailgun.class.php index ba107025..7860d729 100644 --- a/lib/thirdparty/Mailgun.class.php +++ b/lib/thirdparty/Mailgun.class.php @@ -23,20 +23,6 @@ class Mailgun return $status == 200; } - public static function sendYouTubeWarmLead($data) - { - list($status, $headers, $body) = static::post('/' . static::MAIL_DOMAIN . '/messages', [ - 'from' => 'LBRY ', - 'to' => 'reilly@lbry.com', - 'subject' => 'Interested YouTuber', - 'html' => '
' . var_export($data, true) . '
', - 'o:tracking-clicks' => 'no', - 'o:tracking-opens' => 'no' - ]); - - return $status == 200; - } - protected static function post($endpoint, $data) { return static::request(Curl::POST, $endpoint, $data); diff --git a/view/View.class.php b/view/View.class.php index 0fbe2cf3..63dddb24 100644 --- a/view/View.class.php +++ b/view/View.class.php @@ -131,9 +131,6 @@ class View $all_css = $scssCompiler->compile(file_get_contents(self::SCSS_DIR . '/all.scss')); file_put_contents(self::CSS_DIR . '/all.css', $all_css); - - $youtube_css = $scssCompiler->compile(file_get_contents(self::SCSS_DIR . '/youtube.scss')); - file_put_contents(self::CSS_DIR . '/youtube.css', $youtube_css); } public static function gzipAssets() diff --git a/view/template/acquisition/_youtube_header.php b/view/template/acquisition/_youtube_header.php deleted file mode 100644 index c23ee1df..00000000 --- a/view/template/acquisition/_youtube_header.php +++ /dev/null @@ -1,15 +0,0 @@ -
-
-
- - Get - Learn -
-
- - - - -
-
-
diff --git a/view/template/acquisition/auto-verify.php b/view/template/acquisition/auto-verify.php index 1d2a53ff..86e60baa 100644 --- a/view/template/acquisition/auto-verify.php +++ b/view/template/acquisition/auto-verify.php @@ -57,7 +57,7 @@
-
+

Almost Done!

diff --git a/view/template/acquisition/verify.php b/view/template/acquisition/verify.php index d8e4f674..4a946658 100644 --- a/view/template/acquisition/verify.php +++ b/view/template/acquisition/verify.php @@ -33,7 +33,7 @@
-
+

Almost Done!

diff --git a/view/template/acquisition/youtube-2.php b/view/template/acquisition/youtube-2.php deleted file mode 100644 index 6aeea781..00000000 --- a/view/template/acquisition/youtube-2.php +++ /dev/null @@ -1,195 +0,0 @@ - -
- -
-
- - - - - - - - - - -
-
-
-
-
-
-
-
-
-
-

Content Freedom.

-

Put your content on the blockchain and earn rewards.

-
Claim Your LBRY Channel
-
-
-
-
-
-
-

Sync & Earn Crypto

-

LBRY offers a single-click sync process
for existing YouTubers

-
-
-
-
- - -
-
-
-
-
- -
-
-
- - - - - -
- By syncing, you agree to mirror your content to the LBRY network for 1 year, and acknowledge these terms. -
-
- -
- -
-
-
-

LBRY is more fun with friends

-

Take your peers and your audience with you. Create without limits.

-
-
-
-
- -
- -
-

@3Blue1Brown

-
-
-
-
-
- -
- -
-

@CasuallyExplained

-
-
-
-
-
- -
-
-

@ColinsLastStand

-
-
-
-
-
-
-
-
-
-

Migrating to LBRY

-

We will automatically mirror your existing YouTube channel to the LBRY Network.

-
-
-
-
-
-
1
-

Sync your channel

-
-
-
2
-

Download the LBRY App

-
-
-
3
-

Receive your LBRY Credits

-
-
-
-
-
-
-
-
-

LBRY Credits and Your Channel

-

After you sync, receive LBRY Credits for one year based on your current subscriber count.

- The more you give to the network, the more it gives back.

-
-

Partner Programs

-

LBC

-
-
-
-

Subscribers

-

Yearly

-

Amount

-
-
-

1,000

-

-

-
-
-

10,000

-

-

-
-
-

100,000

-

-

-
-
-

1,000,000

-

-

-
-
-
-
-
-
-
-
-

Tell me more.

-

We have a guy that elaborates on things. Apply directly to the forehead.

-
-
-
-

Reilly Smith

-

Head of Content

- Contact -
-
-
-
-
-
to top
-
diff --git a/view/template/acquisition/youtube-3.php b/view/template/acquisition/youtube-3.php deleted file mode 100644 index e8518241..00000000 --- a/view/template/acquisition/youtube-3.php +++ /dev/null @@ -1,194 +0,0 @@ - -
- -
-
- - - - - - - - - - -
-
-
-
-
-
-
-
-
-
-

Content Freedom.

-

Put your content on the blockchain and earn rewards.

-
Claim Your LBRY Channel
-
-
-
-
- -
- " . "The following error occurred: ". $error_message . " For support please send an email to hello@lbry.com" . "
"; - endif;?> -
-

Create on a stable platform. For real this time.

- -
-
-
- - - -
- -
- -
-
- This will verify you are an active YouTuber, then instructions and your welcome credits will be emailed to you. - Learn more. -
-
-
-
-
-
-
-

LBRY is more fun with friends

-

Take your peers and your audience with you. Create without limits.

-
-
-
-
- -
- -
-

@3Blue1Brown

-
-
-
-
-
- -
- -
-

@CasuallyExplained

-
-
-
-
-
- -
-
-

@ColinsLastStand

-
-
-
-
-
-
-
-
-
-

Migrating to LBRY

-

We will automatically mirror your most recent 1,000 YouTube videos to your channel on the LBRY Network.

-
-
-
-
-
-
1
-

Sync your channel

-
-
-
2
-

Download the LBRY App

-
-
-
3
-

Receive your LBRY Credits

-
-
-
-
-
- -
-
-
-

LBRY Credits and Your Channel

-

After you sync, receive LBRY Credits for one year based on your current subscriber count.

- The more you give to the network, the more it gives back.

-
-

Partner Programs

-

LBC

-
-
-
-

Subscribers

-

Yearly

-

Amount

-
-
-

1,000

-

-

-
-
-

10,000

-

-

-
-
-

100,000

-

-

-
-
-

1,000,000

-

-

-
-
-
-
-
-
-
-
-

Tell me more.

-

We have a guy that elaborates on things. Apply directly to the forehead.

-
-
-
-

Reilly Smith

-

Head of Content

- Contact -
-
-
-
-
-
to top
-
diff --git a/view/template/acquisition/youtube.php b/view/template/acquisition/youtube.php index bcfd2866..2dfa5bfe 100644 --- a/view/template/acquisition/youtube.php +++ b/view/template/acquisition/youtube.php @@ -1,193 +1,243 @@ -
- -
-
- - - - - - - - - - -
-
-
-
-
-
-
-
-
-
-

Find New Fans

-

Get your YouTube videos in front of the LBRY audience.

-
Claim Your LBRY Channel Now
-
-
-
-
-
+
+
+
+ + + + + + + + + + + +
+
+
+ +
+
+
+
+
+
+ +
+

LBRY × YouTube Sync

+

Get your YouTube videos in front of the LBRY audience

+ +
+
+ +
+
" . "The following error occurred: ". $error_message . " For support please send an email to hello@lbry.com" . "
"; + if ($error_message): echo "
" . "The following error occurred: ". $error_message . " For support please send an email to hello@lbry.com" . "
"; endif;?> -
-

Connect with your fans while earning money and rewards.

- +

Connect with your fans while earning money and rewards

+
-
-
- - - -
+ + + + + + + + + -
- -
-
+ + This will verify you are an active YouTuber. Instructions about how to claim credits, and technical details about your channel, will be emailed to you after you are verified. - Learn more. + Learn more + +
+
+ +
+
+

Join the best creators already on LBRY

+

Audiences range from 1,000+ to 10,000,000+ people. The videos below are from creators who have synced their content to LBRY.

+ +
+
+ + +
@3Blue1Brown
+
+ +
+ + +
@CasuallyExplained
+
+ +
+ + +
@ColinsLastStand
+
-
-
-
-
-
-

Join The Best Creators Already On LBRY

-

With audiences ranging from 1,000+ to 10,000,000+

-
-
-
-
- -
+
-
-

@3Blue1Brown

-
- -
-
-
- -
+
+
+

Getting credits for your channel

+

Depending on the number of subscribers you have on YouTube when you claim your channel, you will qualify for different lump sums of LBC.

-
-

@CasuallyExplained

-
-
-
-
-
- -
-
-

@ColinsLastStand

-
-
-
+

+ Subscriber Levels + LBC +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Your Current YouTube SubscribersLBC TokensUSD Value
1,000 LBC
10,000 LBC
100,000 LBC
1,000,000 LBC
- - -
-
-
-

Getting On LBRY Is Easy

+
+ +
+
+

Getting on LBRY is easy

When you claim your channel your most recent 1,000 YouTube videos will be automatically copied to your LBRY channel.

+ +
    +
  1. Claim your channel
  2. +
  3. Authorize your content
  4. +
  5. Users watch your content on LBRY
  6. +
+
+
1

Claim your channel

+
2

Authorize your content

+
3

Users watch your content on LBRY

- -
-
-
-
-

Getting Credits For Your Channel

-

Depending on the number of subscribers you have on YouTube when you claim your channel, you will qualify for different lump sums of LBC.

-

-
-

Subscriber Levels

-

LBC

-
-
-
-

Your Current YouTube Subscribers

-

LBC Tokens

-

USD Value

+
+ +
+
+

Sync & Earn

+

LBRY offers a single-click sync process for existing YouTubers.

+ +
+ + + + + + + + +
+
-
-

1,000

-

-

-
-
-

10,000

-

-

-
-
-

100,000

-

-

-
-
-

1,000,000

-

-

-
-
+ - -
-
-
-
-

Let’s Connect

+
+ +
+
+

Let's connect

If you have any questions, reach out.

+
-
-
+
+ Rob Smith, Head of Product Growth +
+ +

Rob Smith

Head of Product Growth

Contact -
+
- -
-
to top
+
diff --git a/view/template/acquisition/youtube_edit.php b/view/template/acquisition/youtube_edit.php index 423d1e84..fc91a65c 100644 --- a/view/template/acquisition/youtube_edit.php +++ b/view/template/acquisition/youtube_edit.php @@ -6,7 +6,7 @@ $sync_consent = isset($_POST['sync_consent']); if ($channel_name !== "" && !preg_match("/@[A-Za-z0-9-]+$/", $channel_name)) { - $channel_name = "@" . $channel_name; + $channel_name = "@" . $channel_name; } AcquisitionActions::actionYoutubeEdit($status_token, $channel_name, $email, $sync_consent); diff --git a/view/template/acquisition/youtube_status.php b/view/template/acquisition/youtube_status.php index 8df46000..02a4f3e1 100644 --- a/view/template/acquisition/youtube_status.php +++ b/view/template/acquisition/youtube_status.php @@ -1,16 +1,17 @@ - + 0 ?> + - - if (!localStorage.getItem('status_token')) { + + if (!localStorage.getItem('status_token')) { ga('send', 'event', 'YT Sync', '', ''); fbq('track', 'Lead'); @@ -20,142 +21,169 @@ window.google_conversion_format = "3"; var opt = new Object(); - opt.onload_callback = function() { }; var conv_handler = window['google_trackConversion']; - if (typeof(conv_handler) == 'function') { - conv_handler(opt); - } - } - + + opt.onload_callback = function() { }; + + if (typeof(conv_handler) === 'function') + conv_handler(opt); + } + -
- -
-
-
- -
Your email address is set - as .
If this is not your email address, please change it below. -
- -
-

-
- -
+
+
+
+ +
+ Your email address is set as .
If this is not your email address, please change it below. +
+ -
-
-

Your Sync Status
- - - -

-
-
-

Subscribers
- -

-
-
-

Videos
- -

-
-
-

Expected Rewards
- -

-
-
-
-
-
-
-
-
-
-

Confirm your preferences

-
-
- -
- " . "The following error occurred: " . $error_message . " For support please send an email to hello@lbry.com" . "
"; - endif; ?> -
- - > - -
-
- - - - -
-

class="block full error">You need - to verify your email before continuing!

- -
- -
- -
+

+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + +
Your Sync StatusSubscribersVideosExpected Rewards
+ + + + + + + +
+ +
+ +
+
+
+
+
+ + " . "The following error occurred: " . $error_message . " For support please send an email to hello@lbry.com" . "
"; endif; ?> + +
+ Confirm your preferences + +

class="error-block"> + You need to verify your email +

+ + + + + + /> + + + + + + + + + + + + + + > + + /> + + + + + +
+ +
+
+ + +
diff --git a/view/template/acquisition/youtube_status_redirect.php b/view/template/acquisition/youtube_status_redirect.php index ba55b475..544ae0df 100644 --- a/view/template/acquisition/youtube_status_redirect.php +++ b/view/template/acquisition/youtube_status_redirect.php @@ -1,11 +1,9 @@ -if (localStorage.getItem('status_token')) { - var status_token = localStorage.getItem('status_token'); - url = '/youtube/status/' + status_token; - $(location).attr('href', url); -} - -else { - $(location).attr('href', '/youtube'); -} + if (localStorage.getItem("status_token")) { + const status_token = localStorage.getItem("status_token"); + url = "/youtube/status/" + status_token; + $(location).attr("href", url); + } else { + $(location).attr("href", "/youtube"); + } diff --git a/view/template/acquisition/youtube_token.php b/view/template/acquisition/youtube_token.php deleted file mode 100644 index a1da4d37..00000000 --- a/view/template/acquisition/youtube_token.php +++ /dev/null @@ -1,8 +0,0 @@ -
-
+

getTitle()) ?>

diff --git a/view/template/content/credit-reports.php b/view/template/content/credit-reports.php index 011b8256..440e04e6 100644 --- a/view/template/content/credit-reports.php +++ b/view/template/content/credit-reports.php @@ -2,7 +2,7 @@
-
+

Quarterly Credit Reports

diff --git a/view/template/content/faq-post.php b/view/template/content/faq-post.php index 20c4c5fa..b9e703e6 100644 --- a/view/template/content/faq-post.php +++ b/view/template/content/faq-post.php @@ -4,7 +4,7 @@
-
+

Frequently Asked Questions

diff --git a/view/template/content/faq.php b/view/template/content/faq.php index 756c7820..30bf8e93 100644 --- a/view/template/content/faq.php +++ b/view/template/content/faq.php @@ -2,7 +2,7 @@
-
+

{{page.faq.header}}

diff --git a/view/template/content/news-post.php b/view/template/content/news-post.php index 8f21fb86..3a64c207 100644 --- a/view/template/content/news-post.php +++ b/view/template/content/news-post.php @@ -6,7 +6,7 @@
getCover() ? ' style="background-image: url(\'/img/blog-covers/' . $post->getCover() . '\')"' : ''?> > -
+

getTitle()) ?>

getAuthorName() ?> diff --git a/view/template/content/news.php b/view/template/content/news.php index 1cac9804..e0c10341 100644 --- a/view/template/content/news.php +++ b/view/template/content/news.php @@ -2,7 +2,7 @@
-
+

{{news.desk}}

{{news.musings}}

@@ -10,7 +10,7 @@
-
    +
    • diff --git a/view/template/content/roadmap.php b/view/template/content/roadmap.php index a8d33d5a..946c1c20 100644 --- a/view/template/content/roadmap.php +++ b/view/template/content/roadmap.php @@ -2,7 +2,7 @@
      -
      +

      {{roadmap.title}}

      Future plans for the journey into the land of dragons

      diff --git a/view/template/download/_list.php b/view/template/download/_list.php index 86dacb16..3d7039f8 100644 --- a/view/template/download/_list.php +++ b/view/template/download/_list.php @@ -15,7 +15,7 @@ -
        +
        • ", $bucketRow) ?>
        • diff --git a/view/template/download/get-no-os.php b/view/template/download/get-no-os.php index e1e93570..6c563451 100644 --- a/view/template/download/get-no-os.php +++ b/view/template/download/get-no-os.php @@ -4,7 +4,7 @@
          -
          +

          Use LBRY on your preferred platform

          diff --git a/view/template/download/get.php b/view/template/download/get.php index ac179a80..2eeba0c6 100644 --- a/view/template/download/get.php +++ b/view/template/download/get.php @@ -4,7 +4,7 @@
          -
          +

          OS::OS_DETAIL($os)[5]]) ?>

          diff --git a/view/template/layout/basic.php b/view/template/layout/basic.php index 2bf68a11..efed0b13 100644 --- a/view/template/layout/basic.php +++ b/view/template/layout/basic.php @@ -13,10 +13,7 @@ - - - diff --git a/view/template/mail/_settingsForm.php b/view/template/mail/_settingsForm.php index 6ee25916..5bb67f72 100644 --- a/view/template/mail/_settingsForm.php +++ b/view/template/mail/_settingsForm.php @@ -54,25 +54,6 @@ - - - document.querySelectorAll("checkbox-toggle").forEach(toggle => { - toggle.addEventListener("click", event => { - const siblings = event.target.parentElement.children; - - for (const sibling of siblings) { - switch(true) { - case sibling.tagName.toLowerCase() === "label": - sibling.click(); - break; - - default: - break; - } - } - }); - }); -
          diff --git a/view/template/mail/settings.php b/view/template/mail/settings.php index 03bfebf0..5e805883 100644 --- a/view/template/mail/settings.php +++ b/view/template/mail/settings.php @@ -4,7 +4,7 @@
          -
          +

          {{page.email_settings}}

          diff --git a/view/template/mail/unsubscribe.php b/view/template/mail/unsubscribe.php index e55ba28b..46294913 100644 --- a/view/template/mail/unsubscribe.php +++ b/view/template/mail/unsubscribe.php @@ -2,7 +2,7 @@
          -
          +

          {{page.unsubscribe}}

          diff --git a/view/template/page/3d-printing.php b/view/template/page/3d-printing.php index 0cec2bd4..9e9c933b 100644 --- a/view/template/page/3d-printing.php +++ b/view/template/page/3d-printing.php @@ -4,7 +4,7 @@
          -
          +

          Get paid to 3D print!

          diff --git a/view/template/page/400.php b/view/template/page/400.php index c05a4e4b..d711da76 100644 --- a/view/template/page/400.php +++ b/view/template/page/400.php @@ -1,6 +1,6 @@
          -
          +

          {{page.badrequest}}

          diff --git a/view/template/page/404.php b/view/template/page/404.php index 01e33f43..960f9605 100644 --- a/view/template/page/404.php +++ b/view/template/page/404.php @@ -1,6 +1,6 @@
          -
          +

          Page Not Found (404)

          diff --git a/view/template/page/405.php b/view/template/page/405.php index 2bea5dfe..cb810d7f 100644 --- a/view/template/page/405.php +++ b/view/template/page/405.php @@ -1,6 +1,6 @@
          -
          +

          {{page.badmethod}}

          diff --git a/view/template/page/aasi.php b/view/template/page/aasi.php index 8f7cd176..5375727f 100644 --- a/view/template/page/aasi.php +++ b/view/template/page/aasi.php @@ -3,7 +3,7 @@
          -
          +

          LBRY Welcomes You To The Blockchain Workshop

          We're excited to share LBRY with you!

          diff --git a/view/template/page/android-alpha.php b/view/template/page/android-alpha.php index f42988b2..3564fb6e 100644 --- a/view/template/page/android-alpha.php +++ b/view/template/page/android-alpha.php @@ -3,7 +3,7 @@
          -
          +

          Testing... Testing...

          LBRY needs alpha testers for our Android app!

          diff --git a/view/template/page/bangalore.php b/view/template/page/bangalore.php index 566948bd..b2298370 100644 --- a/view/template/page/bangalore.php +++ b/view/template/page/bangalore.php @@ -3,7 +3,7 @@
          -
          +

          LBRY Welcomes You To The Bangalore Blockchain Application Development Meetup

          We're excited to share about LBRY with you!

          diff --git a/view/template/page/canary.php b/view/template/page/canary.php index 21fc2708..154ccf20 100644 --- a/view/template/page/canary.php +++ b/view/template/page/canary.php @@ -2,7 +2,7 @@
          -
          +

          LBRY Warrant Canary

          diff --git a/view/template/page/college.php b/view/template/page/college.php index e3b68cd6..c9a21935 100644 --- a/view/template/page/college.php +++ b/view/template/page/college.php @@ -3,7 +3,7 @@
          -
          +

          Wanna Meet Up?

          LBRY is looking for ambassadors to spread the word to College campuses and Meetup groups worldwide!

          diff --git a/view/template/page/contact.php b/view/template/page/contact.php index 7c71acc3..422b6217 100644 --- a/view/template/page/contact.php +++ b/view/template/page/contact.php @@ -3,7 +3,7 @@
          -
          +

          Get in Touch

          diff --git a/view/template/page/cu.php b/view/template/page/cu.php index 4fba956c..32293f6a 100644 --- a/view/template/page/cu.php +++ b/view/template/page/cu.php @@ -3,7 +3,7 @@
          -
          +

          LBRY Welcomes Chandigarh University Students

          We're excited to share LBRY with you!

          diff --git a/view/template/page/forklist.php b/view/template/page/forklist.php index dfcf8eb7..4eff07e0 100644 --- a/view/template/page/forklist.php +++ b/view/template/page/forklist.php @@ -3,7 +3,7 @@
          -
          +

          Blockchain Fork Updates

          diff --git a/view/template/page/game.php b/view/template/page/game.php index 4db5fb22..0f1e8184 100644 --- a/view/template/page/game.php +++ b/view/template/page/game.php @@ -3,7 +3,7 @@
          -
          +

          Level UP with LBRY Network

          We're excited to share LBRY with you!

          diff --git a/view/template/page/join-us.php b/view/template/page/join-us.php index 3a5708e9..5796001d 100644 --- a/view/template/page/join-us.php +++ b/view/template/page/join-us.php @@ -3,7 +3,7 @@
          -
          +

          Join Team Content Freedom

          diff --git a/view/template/page/lbrypress.php b/view/template/page/lbrypress.php index 97c86950..bb9f9d3c 100644 --- a/view/template/page/lbrypress.php +++ b/view/template/page/lbrypress.php @@ -3,7 +3,7 @@
          -
          +

          Independent Hosting for Independent Media

          Don't leave your fate in the hands of Silicon Valley

          diff --git a/view/template/page/lpu.php b/view/template/page/lpu.php index 0c457619..73b0bbd7 100644 --- a/view/template/page/lpu.php +++ b/view/template/page/lpu.php @@ -3,7 +3,7 @@
          -
          +

          LBRY Welcomes LPU Students

          We're excited to share about LBRY with you!

          diff --git a/view/template/page/meet.php b/view/template/page/meet.php index 5a1502dd..77295cbe 100644 --- a/view/template/page/meet.php +++ b/view/template/page/meet.php @@ -3,7 +3,7 @@
          -
          +

          Wanna Meet Up?

          LBRY is looking for ambassadors to spread the word to College campuses and Meetup groups worldwide!

          diff --git a/view/template/page/newslist.php b/view/template/page/newslist.php index e4f4a32b..475a425d 100644 --- a/view/template/page/newslist.php +++ b/view/template/page/newslist.php @@ -3,7 +3,7 @@
          -
          +

          Join Our List for LBRY Updates

          diff --git a/view/template/page/press-kit.php b/view/template/page/press-kit.php index b979b018..c64684d8 100644 --- a/view/template/page/press-kit.php +++ b/view/template/page/press-kit.php @@ -5,7 +5,7 @@
          -
          +

          {{press.title}}

          diff --git a/view/template/page/privacypolicy.php b/view/template/page/privacypolicy.php index 07cd473d..de82bfe9 100644 --- a/view/template/page/privacypolicy.php +++ b/view/template/page/privacypolicy.php @@ -3,7 +3,7 @@
          -
          +

          LBRY Inc. Privacy Policy