mirror of
https://github.com/google/pebble.git
synced 2025-05-27 21:43: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
26
devsite/source/_includes/guides/contents-group.md
Normal file
26
devsite/source/_includes/guides/contents-group.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
{% 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 %}
|
||||
|
||||
{% for sub_group in include.group.subgroups %}
|
||||
{% assign sub_grp = sub_group[1] %}
|
||||
* [**{{ sub_grp.title }}**]({{sub_grp.url}}) - {{ sub_grp.description }}
|
||||
{% endfor %}
|
||||
{% if include.group.guides.size > 0 %}
|
||||
{% assign guides = include.group.guides | sort: 'title' | where:'menu',true %}
|
||||
{% for guide in guides %}
|
||||
* [**{{ guide.title }}**]({{guide.url}}) - {{ guide.summary }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
32
devsite/source/_includes/guides/images/pebble-diagram1.svg
Normal file
32
devsite/source/_includes/guides/images/pebble-diagram1.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 18 KiB |
116
devsite/source/_includes/guides/images/pebble-diagram2.svg
Normal file
116
devsite/source/_includes/guides/images/pebble-diagram2.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 66 KiB |
125
devsite/source/_includes/guides/images/pebble-diagram3.svg
Normal file
125
devsite/source/_includes/guides/images/pebble-diagram3.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 52 KiB |
111
devsite/source/_includes/guides/images/pebble-diagram4.svg
Normal file
111
devsite/source/_includes/guides/images/pebble-diagram4.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 60 KiB |
99
devsite/source/_includes/guides/images/pebble-diagram5.svg
Normal file
99
devsite/source/_includes/guides/images/pebble-diagram5.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 50 KiB |
21
devsite/source/_includes/guides/owm-api-key-notice.html
Normal file
21
devsite/source/_includes/guides/owm-api-key-notice.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
{% 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="alert alert--bg-purple alert--fg-white">
|
||||
<b>API KEY REQUIRED</b>
|
||||
<p>As of October 2015, an API key is required to fetch OpenWeatherMap data.
|
||||
These can be freely obtained from <a href="http://openweathermap.org/appid">OpenWeatherMap.org</a>.</p>
|
||||
</div>
|
23
devsite/source/_includes/guides/sidebar_docs.html
Normal file
23
devsite/source/_includes/guides/sidebar_docs.html
Normal file
|
@ -0,0 +1,23 @@
|
|||
{% 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 %}
|
||||
|
||||
{% for doc in include.docs %}
|
||||
{% if doc.menu %}
|
||||
<li class="sidebar__item {% if page.url == doc.url %}active{% endif %}">
|
||||
<a href="{{ site.baseurl }}{{ doc.url }}">{{ doc.title }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
22
devsite/source/_includes/guides/timeline-notice.html
Normal file
22
devsite/source/_includes/guides/timeline-notice.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
{% 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="alert alert--bg-purple alert--fg-white alert--medium">
|
||||
<p><strong>NOTICE</strong></p>
|
||||
<p>
|
||||
The timeline APIs are currently only available on SDK 3.0 and above.
|
||||
</p>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue