-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from francep2p/feat/festival-2/init
feat: init festival #2
- Loading branch information
Showing
5 changed files
with
96 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{ partial "ldjson/event" (dict "ctx" . "id" .Params.id) }} | ||
|
||
{{.Scratch.Set "body-class" "page-festival-1"}} | ||
{{ partial "header" . }} | ||
|
||
{{ partial "navbar_festival" . }} | ||
{{ partial "masthead_festival_2" . }} | ||
{{ partial "section_numbers" . }} | ||
<!-- partial "section_donate" . --> | ||
<!-- partial "section_sponsors" . --> | ||
<!-- partial "section_schedule" . --> | ||
<section class="page-section section-about" id="about"> | ||
{{ partial "section_about" . }} | ||
{{ partial "section_goals" . }} | ||
</section> | ||
<!-- partial "section_speakers" . --> | ||
<!-- partial "section_info_1" . --> | ||
<!-- partial "section_plan" . --> | ||
<!-- partial "section_links" . --> | ||
{{ partial "footer" . }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<header class="masthead"> | ||
<div class="container"> | ||
<div class="row align-items-center justify-content-center text-center"> | ||
<div class="col-lg-10"> | ||
<div id="logo" class="logo-center"> | ||
<img src="/img/paris_p2p_white.svg"> | ||
</div> | ||
<h1 class="text-uppercase text-white font-weight-bold">{{ i18n "festival_content_intro_text" | markdownify }}</h1> | ||
</div><!-- /.col --> | ||
<div class="col-lg-10" > | ||
<h2 id="it-soon" class="text-uppercase text-white font-weight-bold" style="display: none;">{{ i18n "festival_content_it_soon" }}<br/><br/></h2> | ||
<!-- <h2 id="it-current" class="text-uppercase text-white font-weight-bold" style="display: none;">{{ i18n "festival_content_it_current" }}<br/><br/></h2> --> | ||
<!-- <h2 id="it-finish" class="text-uppercase text-white font-weight-bold" style="display: none;">{{ i18n "festival_content_it_finish" | markdownify }}</h2> --> | ||
</div> | ||
<div class="col-lg-10"> | ||
<div id="clockdiv" style="display: none;"> | ||
<div> | ||
<span class="days"></span> | ||
<div class="smalltext">{{ i18n "festival_clock_days" }}</div> | ||
</div> | ||
<div> | ||
<span class="hours"></span> | ||
<div class="smalltext">{{ i18n "festival_clock_hours" }}</div> | ||
</div> | ||
<div> | ||
<span class="minutes"></span> | ||
<div class="smalltext">{{ i18n "festival_clock_minutes" }}</div> | ||
</div> | ||
<div> | ||
<span class="seconds"></span> | ||
<div class="smalltext">{{ i18n "festival_clock_seconds" }}</div> | ||
</div> | ||
</div> | ||
</div><!-- /.col --> | ||
</div><!-- /.row --> | ||
<div class="row"> | ||
<div class="col-12"> | ||
<div class="text-center"> | ||
<div class="text-white font-weight-bold">{{ i18n "festival_announcement_part_1" }}</div> | ||
<br /> | ||
<div class="text-white font-weight-bold">{{ i18n "festival_announcement_part_2" }}</div> | ||
<br /> | ||
<a class="btn btn-purple btn-xl" href="https://airtable.com/appVBIJFBUheVWS0Q/shrQl65lAr3zl5pkW">{{ i18n "announcement_form_cta" }}</a> | ||
<a class="btn btn-purple btn-xl" href="https://airtable.com/appVBIJFBUheVWS0Q/shrTKKi28kNaOcoby">{{ i18n "announcement_form_sponsor_cta" }}</a> | ||
</div> | ||
</div> | ||
</div><!-- /.row --> | ||
</div><!-- /.container --> | ||
</header> |