mirror of
https://github.com/google/pebble.git
synced 2025-06-04 01:03:12 +00:00
Import the pebble dev site into devsite/
This commit is contained in:
parent
3b92768480
commit
527858cf4c
1359 changed files with 265431 additions and 0 deletions
29
devsite/source/_includes/blog/buttons.html
Normal file
29
devsite/source/_includes/blog/buttons.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
{% comment %}
|
||||
Copyright 2025 Google LLC
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
{% endcomment %}
|
||||
|
||||
<div class="row" style="margin-bottom: 0.5em;">
|
||||
<div class="col-xs-6">
|
||||
<a href="/feed.xml" class="btn btn--blog btn--wide btn--small btn--square"><i class="fa fa-rss fa-lg"></i> Get Updates</a>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<a href="{{ site.links.twitter }}" class="btn btn--blog btn--wide btn--small btn--square"><i class="fa fa-twitter fa-lg"></i> Follow Us</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="margin-bottom: 0.5em;">
|
||||
<div class="col-l-12">
|
||||
<a href="javascript:void();" data-modal-target="#modal-newsletter" data-modal-fit-viewport="false" class="btn btn--small btn--blog--alt btn--wide btn--square"><i class="fa fa-envelope-o fa-lg"></i> Subscribe to the Newsletter</a>
|
||||
</div>
|
||||
</div>
|
37
devsite/source/_includes/blog/index-post.html
Normal file
37
devsite/source/_includes/blog/index-post.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
{% comment %}
|
||||
Copyright 2025 Google LLC
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
{% endcomment %}
|
||||
|
||||
<div class="blog-index__post clearfix">
|
||||
<div class="pull blog-index__meta visible-m visible-l">
|
||||
{% if include.post.image.size > 0 %}
|
||||
<img src="{{ include.post.image | assetify }}" width="80" height="80"/>
|
||||
{% else %}
|
||||
{% author_photo include.post.author 80 %}
|
||||
{% endif %}
|
||||
<p>{{ include.post.date | date: "%b %d, %Y" }}</p>
|
||||
</div>
|
||||
<div class="blog-index__body">
|
||||
<h3><a href="{{ include.post.url | prepend: site.baseurl }}">{{ include.post.title }}</a></h3>
|
||||
<p class="blog-index__tags">
|
||||
{% author_link include.post.author %} ·
|
||||
{% for tag in include.post.tags %}
|
||||
<a href="{{ site.baseurl }}/blog/tags/{{ tag | slugize }}/">{{ tag }}</a>{% if forloop.last %}{% else %}, {% endif %}
|
||||
{% endfor %}
|
||||
</p>
|
||||
<div>{{ include.post.excerpt }}</div>
|
||||
<div class="text-right"><a href="{{ include.post.url | prepend: site.baseurl }}">Read More →</a></div>
|
||||
</div>
|
||||
</div>
|
30
devsite/source/_includes/blog/meta.html
Normal file
30
devsite/source/_includes/blog/meta.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
{% comment %}
|
||||
Copyright 2025 Google LLC
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
{% endcomment %}
|
||||
|
||||
<div class="blog__meta">
|
||||
<ul class="inline-list inline-list--piped">
|
||||
<li>{{ include.post.date | date_to_long_string }}</li>
|
||||
<li>{% author_link include.post.author %}</li>
|
||||
{% if include.post.tags.size > 0 %}
|
||||
<li>
|
||||
{% for tag in include.post.tags %}
|
||||
<a href="{{ site.baseurl }}/blog/tags/{{ tag | slugize }}/">{{ tag }}</a>{% if forloop.last %}{% else %}, {% endif %}
|
||||
{% endfor %}
|
||||
</li>
|
||||
<li><a href="{{ site.baseurl }}{{ include.post.url }}#comments">Comments</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
32
devsite/source/_includes/blog/newsletter.html
Normal file
32
devsite/source/_includes/blog/newsletter.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
{% comment %}
|
||||
Copyright 2025 Google LLC
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
{% endcomment %}
|
||||
|
||||
<h3>Subscribe to the Pebble Developers Newsletter</h3>
|
||||
<form action="//getpebble.us2.list-manage.com/subscribe/post?u=dd6d54b0e22472d9f5004013a&id=9548e2c0aa" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
|
||||
<div id="mce-responses">
|
||||
<div class="alert alert--error" id="mce-error-response" style="display:none"></div>
|
||||
<div class="alert alert--success" id="mce-success-response" style="display:none"></div>
|
||||
</div>
|
||||
<div class="form__group">
|
||||
<label for="mce-EMAIL">Email Address </label>
|
||||
<input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
|
||||
</div>
|
||||
<div style="position: absolute; left: -5000px;">
|
||||
<input type="text" name="b_dd6d54b0e22472d9f5004013a_9548e2c0aa" tabindex="-1" value="">
|
||||
</div>
|
||||
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn--bg-lightblue btn--fg-white btn--wide btn--large">
|
||||
</form>
|
||||
<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[4]='MMERGE4';ftypes[4]='text';fnames[3]='MMERGE3';ftypes[3]='text';fnames[5]='MMERGE5';ftypes[5]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
|
Loading…
Add table
Add a link
Reference in a new issue