|
| 1 | +<!doctype html> |
| 2 | +<html lang="{{ page.lang | default: site.lang | default: "en" }}"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 6 | + <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}" /> |
| 7 | + <title>{% if page.title %}{{ site.title }} | {{ page.title }}{% else %}{{ site.title }}{% endif %}</title> |
| 8 | + <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}" /> |
| 9 | + <link rel="stylesheet" href="{{ '/assets/css/pico.min.css' | relative_url }}" /> |
| 10 | + <link rel="stylesheet" href="{{ '/assets/css/pico.colors.min.css' | relative_url }}" /> |
| 11 | + <link rel="stylesheet" href="{{ '/assets/css/bpd.css' | relative_url }}" /> |
| 12 | + <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}" /> |
| 13 | + <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ '/feed.xml' | prepend: site.baseurl | prepend: site.url }}" /> |
| 14 | + <link rel="icon" href="https://fav.farm/%E2%9C%8A%F0%9F%8F%BE" type="image/svg" /> |
| 15 | + {% if page.lang and page.untranslated != true and site.data.locales.size > 1 %} |
| 16 | + {% assign locales = site.data.locales | sort %} |
| 17 | + {% for locale in locales %} |
| 18 | + {% assign lang = locale[0] %} |
| 19 | + {% assign page_lang_slash = page.lang | append: '/' | prepend: '/' %} |
| 20 | + {% assign default_url = page.url | replace: page_lang_slash, '/' %} |
| 21 | + {% if lang == "en" %} |
| 22 | + <link rel="alternate" hreflang="en" href="{{ site.url }}{{ default_url }}" /> |
| 23 | + <link rel="alternate" hreflang="x-default" href="{{ site.url }}{{ default_url }}" /> |
| 24 | + {% else %} |
| 25 | + <link rel="alternate" hreflang="{{ lang }}" href="{{ site.url }}/{{ lang }}{{ default_url }}" /> |
| 26 | + {% endif %} |
| 27 | + {% endfor %} |
| 28 | + {% endif %} |
| 29 | + <style> |
| 30 | + article > ul >li { |
| 31 | + margin-left: 2em; |
| 32 | + list-style: none !important; |
| 33 | + } |
| 34 | + </style> |
| 35 | + </head> |
| 36 | + <body> |
| 37 | + {%- include header.html -%} |
| 38 | + <main class="container" role="main" aria-label="Content"> |
| 39 | + <article> |
| 40 | + <h1>{{page.title}}</h1> |
| 41 | + <img src="{{page.event_banner}}" alt="event banner" /> |
| 42 | + {{ content }} |
| 43 | + <h2>Donate & Register</h2> |
| 44 | + <div class="grid"> |
| 45 | + <div> |
| 46 | + <h3>Register for the Event!</h3> |
| 47 | + <tito-widget event="{{ page.tito_event }}" |
| 48 | + prefill=" {"name": "Eve Moneypenny", "email": "[email protected]", "metadata":{"foo": "bar"}}" |
| 49 | + ></tito-widget> |
| 50 | + </div> |
| 51 | + <div> |
| 52 | + <h3>Donate to the Event</h3> |
| 53 | + <a data-amounts='25,50,100,250,500,1000' class='commitchange-donate' data-embedded='' data-campaign-id="{{page.commitchange_campaign_id}}" data-designation="{{commitchange_designation}}"></a> |
| 54 | + {{ page.registration_embed }} |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + <h2>Our Sponsors</h2> |
| 58 | + <h3>Gold Sponsors</h3> |
| 59 | + <div class="grid"> |
| 60 | + {%- for sponsor in page.sponsors_gold -%} |
| 61 | + <img src="{{sponsor}}"> |
| 62 | + {% endfor %} |
| 63 | + </div> |
| 64 | + |
| 65 | + <h3>Silver Sponsors</h3> |
| 66 | + <div class="grid"> |
| 67 | + {%- for sponsor in page.sponsors_silver -%} |
| 68 | + <img src="{{sponsor}}"> |
| 69 | + {% endfor %} |
| 70 | + </div> |
| 71 | + <h3>Bronze Sponsors</h3> |
| 72 | + <div class="grid"> |
| 73 | + {%- for sponsor in page.sponsors_bronze -%} |
| 74 | + <img src="{{sponsor}}"> |
| 75 | + {% endfor %} |
| 76 | + </div> |
| 77 | + <div class="grid"> |
| 78 | + <h3>Distinguished Individual Donors ($50 or More)</h3> |
| 79 | + <ul> |
| 80 | + {%- for sponsor in page.donors -%} |
| 81 | + <li>{{sponsor}}"</li> |
| 82 | + </ul> |
| 83 | + {% endfor %} |
| 84 | + </div> |
| 85 | + <p>For more information on sponsorship, check out <a href=" {{page.prospectus}}" >our prospectus </a> or email: <a href=" mailto:[email protected]" >[email protected]</a></p> |
| 86 | + </article> |
| 87 | + </main> |
| 88 | + {%- include footer.html -%} |
| 89 | + <script> |
| 90 | + (function() { |
| 91 | + if(document.getElementById('commitchange-script')) return; |
| 92 | + var npo = 6464; |
| 93 | + var script = document.createElement('script'); |
| 94 | + var first = document.getElementsByTagName('script')[0]; |
| 95 | + script.setAttribute('data-npo-id', npo); |
| 96 | + script.id = 'commitchange-script'; |
| 97 | + script.src = 'https://us.commitchange.com/js/donate-button.v2.js'; |
| 98 | + first.parentNode.insertBefore(script, first); |
| 99 | + })(); |
| 100 | + </script> |
| 101 | + <script src="https://js.tito.io/v2" async></script> |
| 102 | + <script src="{{ '/assets/js/index.js' | relative_url }}"></script> |
| 103 | + <script src="https://kit.fontawesome.com/1bbe56de49.js" crossorigin="anonymous"></script> |
| 104 | + </body> |
| 105 | +</html> |
0 commit comments