Import the pebble dev site into devsite/

This commit is contained in:
Katharine Berry 2025-02-17 17:02:33 -08:00
parent 3b92768480
commit 527858cf4c
1359 changed files with 265431 additions and 0 deletions

View file

@ -0,0 +1,4 @@
<div class="highlight"><pre><span class="n">Window</span> <span class="o">*</span><span class="n">window</span> <span class="o">=</span> <span class="n">window_create</span><span class="p">();</span>
<span class="n">window_set_background_color</span><span class="p">(</span><span class="n">window</span><span class="p">,</span> <span class="k">{{ color_name }}</span><span class="p">);</span>
<span class="n">window_stack_push</span><span class="p">(</span><span class="n">window</span><span class="p">,</span> <span class="nb">true</span><span class="p">);</span>
</pre></div>

View file

@ -0,0 +1,5 @@
<div class="alert alert--fg-white alert--bg-green">
<p>There are currenly no events scheduled for {{ month }}.</p>
<p>Try changing the month using the calendar controls on the map above.</p>
<p>If you know about an event happening in {{ month }}, use <a href="javascript:void();" data-modal-target="#overlay-events-form">the submission form</a> to let us know!</p>
</div>

View file

@ -0,0 +1,7 @@
<div class="col-m-12">
<article class="event" data-event-number="{{ number }}">
<h3><a href="{{ website }}">{{ dateString }} - {{ location }}</a></h3>
<p class="event__meta">{{ title }} | <a href="javascript:void(0);" class="event__toggle">More</a></p>
<div class="event__description hidden" hidden>{{{ description }}}</div>
</article>
</div>

View file

@ -0,0 +1,5 @@
<div class="row">
<div class="col-l-12">
<p class="quicksearch__no-results">There were no search results.</p>
</div>
</div>

View file

@ -0,0 +1,10 @@
<h3>{{ title }}</h3>
<ul>
{{#each results}}
<li class="quicksearch__result">
<a href="{{ url }}">{{ title }}</a>
<p class="quicksearch__section">{{{ section }}}</p>
<p class="quicksearch__summary">{{{ summary }}}</p>
</li>
{{/each}}
</ul>