|
| 1 | +{% comment %} |
| 2 | + Copyright (C) 2021 Gitcoin Core |
| 3 | + |
| 4 | + This program is free software: you can redistribute it and/or modify |
| 5 | + it under the terms of the GNU Affero General Public License as published |
| 6 | + by the Free Software Foundation, either version 3 of the License, or |
| 7 | + (at your option) any later version. |
| 8 | + |
| 9 | + This program is distributed in the hope that it will be useful, |
| 10 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | + GNU Affero General Public License for more details. |
| 13 | + |
| 14 | + You should have received a copy of the GNU Affero General Public License |
| 15 | + along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | + |
| 17 | +{% endcomment %} |
| 18 | +{% load i18n static email_obfuscator add_url_schema avatar_tags bundle %} |
| 19 | +<!DOCTYPE html> |
| 20 | +<html lang="en"> |
| 21 | + |
| 22 | + <head> |
| 23 | + {% include 'shared/head.html' with slim=1 %} |
| 24 | + {% include 'shared/cards.html' %} |
| 25 | + <script src="//cdn.quilljs.com/1.3.6/quill.core.js"></script> |
| 26 | + {% bundle css file new_grant %} |
| 27 | + <link rel="stylesheet" type="text/x-scss" href={% static "v2/scss/lib/quill.bubble.scss" %} /> |
| 28 | + <link rel="stylesheet" type="text/x-scss" href={% static "v2/scss/lib/quill.snow.scss" %} /> |
| 29 | + <link rel="stylesheet" type="text/x-scss" href={% static "v2/scss/grants/new.scss" %} /> |
| 30 | + <link rel="stylesheet" type="text/x-scss" href={% static "v2/scss/grants/form_wrapper.scss" %} /> |
| 31 | + <link rel="stylesheet" type="text/x-scss" href={% static "v2/scss/progress_bar.scss" %} /> |
| 32 | + <link rel="stylesheet" type="text/x-scss" href={% static "v2/scss/tabs.scss" %} /> |
| 33 | + {% endbundle %} |
| 34 | + </head> |
| 35 | + |
| 36 | + <body class="interior {{ active }} grant g-font-muli"> |
| 37 | + <div class="content__main min-vh-100 d-md-flex flex-column"> |
| 38 | + {% include 'shared/tag_manager_2.html' %} |
| 39 | + <div class="container-fluid header dash px-0"> |
| 40 | + {% include 'shared/top_nav.html' with class='d-md-flex' %} |
| 41 | + {% include 'grants/nav.html' %} |
| 42 | + </div> |
| 43 | + |
| 44 | + <div class="container-fluid pb-5 pt-5"> |
| 45 | + <div class="col-lg-9 mx-auto mb-5"> |
| 46 | + <div class="hubspot_form_wrap simple"> |
| 47 | + |
| 48 | + <div class="row"> |
| 49 | + <div class="col-12 col-sm-6"> |
| 50 | + <h1>We're buidling..</h1> |
| 51 | + <p> |
| 52 | + It looks like you’ve landed on a page where you used to create a grant, but as we’re in the exciting process of transitioning to our new decentralized platform. This old centralized version is now retired. |
| 53 | + </p> |
| 54 | + <p> |
| 55 | + <a href="https://support.gitcoin.co/gitcoin-knowledge-base/gitcoin-grants/how-is-the-gitcoin-grants-program-changing" title="How is the Gitcoin Grants program changing?" target="_blank">Learn more about our transition</a>. |
| 56 | + </p> |
| 57 | + <p> |
| 58 | + To be notified when you can start participating in grants on our new platform when it's live, please enter your email address below:<br /> |
| 59 | + <script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script> |
| 60 | + <script> |
| 61 | + hbspt.forms.create({ |
| 62 | + region: "na1", |
| 63 | + portalId: "21870089", |
| 64 | + formId: "fe7f94cb-3892-4f43-945f-5328c27705c6" |
| 65 | + }); |
| 66 | + </script> |
| 67 | + </p> |
| 68 | + </div> |
| 69 | + <div class="col-12 col-sm-6 pt-5"> |
| 70 | + <a href="https://go.gitcoin.co/blog/introduction-to-grants-protocol" title="More about Gitcoin Grants Protocol"></a> |
| 71 | + <img src="{{ STATIC_URL }}v2/images/grants/protocol/grants-protocol-banner.png" alt="Grants Protocol Banner" style="width: 100%;" /> |
| 72 | + </a> |
| 73 | + </div> |
| 74 | + |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + |
| 80 | + {% include 'shared/footer.html' %} |
| 81 | + {% include 'shared/current_profile.html' %} |
| 82 | + {% include 'grants/shared/shared_scripts.html' %} |
| 83 | + {% include 'shared/footer_scripts.html' with slim=1 ignore_inject_web3=1 %} |
| 84 | + {% include 'grants/components/form_wrapper.html' %} |
| 85 | + <script> |
| 86 | + document.grant_tags = {{grant_tags|safe}}; |
| 87 | + </script> |
| 88 | + <script src=" https://cdn.jsdelivr.net/npm/[email protected]" ></script> |
| 89 | + <script src=' https://cdn.jsdelivr.net/npm/[email protected]/dist/quill.min.js' ></script> |
| 90 | + <script src=' https://cdn.jsdelivr.net/npm/[email protected]/dist/vue-quill-editor.js' ></script> |
| 91 | + <script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/compressor.min.js" ></script> |
| 92 | + |
| 93 | + <script src="{% static "v2/js/grants/form_wrapper.js" %}"></script> |
| 94 | + <script src="{% static "v2/js/grants/progress_bar.js" %}"></script> |
| 95 | + <script src="{% static "v2/js/pages/tabs.js" %}"></script> |
| 96 | + <script src="{% static "v2/js/tokens.js" %}"></script> |
| 97 | + <script src="{% static "v2/js/user-search.js" %}"></script> |
| 98 | + <script src="{% static "v2/js/grants/shared.js" %}"></script> |
| 99 | + <script src="{% static "v2/js/grants/_new.js" %}"></script> |
| 100 | + </div> |
| 101 | + </body> |
| 102 | +<html> |
0 commit comments