Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f65146a authored by Ronak Patel's avatar Ronak Patel
Browse files

change signup url

parent 573e2b5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,5 +51,5 @@ plugins:
#   - vendor/gems/
#   - vendor/ruby/
languages: ["en", "es", "fr", "de", "it"]
exclude_from_localizations: ["css", "img", "langs", "captcha_check.php", "captcha_img.php", "catch_new_invites.php", "create.php", "delete_email_invite.php", "jquery-3.3.1.min.js", "meter.js", "process_apps.php", "register.php", "process_email_invite.php"]
exclude_from_localizations: ["css", "img", "langs", "captcha_check.php", "captcha_img.php", "catch_new_invites.php", "delete_email_invite.php", "jquery-3.3.1.min.js", "meter.js", "process_apps.php", "register.php", "process_email_invite.php"]
include: ["_i18n", ".htaccess"]

frontend/_layouts/default.html

deleted100644 → 0
+0 −38
Original line number Diff line number Diff line
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"
    />
    <link rel="stylesheet" href="/signup/css/bulma.min.css" type="text/css" />
    <link rel="stylesheet" href="/signup/css/global.css?{{ site.time | date: '%s%N' }}" type="text/css" />
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css" />
    <link rel="icon" type="image/x-icon" href="/signup/favicon.ico">
    <script src="/signup/js/jquery-3.5.1.min.js" type="text/javascript"></script>
    {% if page.custom_css %} 
      {% for stylesheet in page.custom_css %}
      <link
        rel="stylesheet"
        href="/signup/css/{{ stylesheet }}.css?{{ site.time | date: '%s%N' }}"
        media="screen"
        type="text/css"
      />
      {% endfor %} 
    {% endif %} 
    {% if page.custom_js %} 
      {% for js_file in page.custom_js %}
       
        <script src="/signup/js/{{ js_file }}.js?{{ site.time | date: '%s%N' }}" type="text/javascript"></script>
      
        {% endfor %} 
    {% endif %}
    
    <title>{{site.translations[site.lang][page.title_key]}}</title>
  </head>
  <body>
    <div class="container welcome-container">{{content}}</div>
  </body>
</html>
 No newline at end of file
Loading