-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,24 @@ | ||
<section id="program-info" class="container content-section text-center"> | ||
<div class="container"> | ||
{% assign program_stage = site.program_stage %} | ||
{% assign t = site.t[page.lang].program_section %} | ||
{% assign program_stage = site.program.stage %} | ||
|
||
<h2>{{ t.title }}</h2> | ||
|
||
{% case program_stage %} | ||
{% when "pre-call-for-proposals" %} | ||
<h2>Coming Soon</h2> | ||
<p>Our call for proposals will open soon. Stay tuned for updates and start preparing your submissions!</p> | ||
{% when "call-for-proposals-will-open-soon" %} | ||
<p>{{ t.call_for_proposals_will_open_soon }}</p> | ||
|
||
{% when "call-for-proposals-open" %} | ||
<h2>Call for Proposals is Open!</h2> | ||
<p>We are now accepting submissions. Visit our submissions page to submit your proposal.</p> | ||
<a href="/submit" class="btn btn-primary">Submit Your Proposal</a> | ||
<p>{{ t.call_for_proposals_open }}</p> | ||
<a target="_blank" href="{{ site.program.url }}" class="btn btn-default">{{ t.submit_your_proposal }}</a> | ||
|
||
{% when "call-for-proposals-closed" %} | ||
<h2>Call for Proposals is Closed</h2> | ||
<p>Thank you for your submissions! The review process is now underway. Stay tuned for the draft program | ||
announcement. | ||
</p> | ||
|
||
{% when "program-draft" %} | ||
<h2>Program Draft</h2> | ||
<p>Check out the draft of our program. Final adjustments are being made, so check back soon for the final schedule. | ||
</p> | ||
<a href="/program/draft" class="btn btn-primary">View Draft Program</a> | ||
<p>{{ t.thank_you_submissions }}</p> | ||
|
||
{% when "program-final" %} | ||
<h2>Final Program</h2> | ||
<p>Our program is finalized! Take a look at the full schedule to plan your conference experience.</p> | ||
<a href="/program/final" class="btn btn-primary">View Final Program</a> | ||
{% when "program-is-ready" %} | ||
<p>{{ t.program_is_finalized }}</p> | ||
<a target="_blank" href="{{ site.program.url }}" class="btn btn-default">{{ t.view_program }}</a> | ||
{% endcase %} | ||
</div> | ||
</section> |