diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:35:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:35:49 +0000 |
commit | d8bbc7858622b6d9c278469aab701ca0b609cddf (patch) | |
tree | eff41dc61d9f714852212739e6b3738b82a2af87 /mobile/android/android-components/docs/_includes | |
parent | Releasing progress-linux version 125.0.3-1~progress7.99u1. (diff) | |
download | firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.tar.xz firefox-d8bbc7858622b6d9c278469aab701ca0b609cddf.zip |
Merging upstream version 126.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mobile/android/android-components/docs/_includes')
4 files changed, 78 insertions, 0 deletions
diff --git a/mobile/android/android-components/docs/_includes/footer.html b/mobile/android/android-components/docs/_includes/footer.html new file mode 100644 index 0000000000..85fa5eb148 --- /dev/null +++ b/mobile/android/android-components/docs/_includes/footer.html @@ -0,0 +1,26 @@ +<footer class="site-footer h-card"> + <data class="u-url" href="{{ "/" | relative_url }}"></data> + + <div class="wrapper"> + + <h2 class="footer-heading">{{ site.title | escape }}</h2> + + <div class="footer-col-wrapper"> + + <div class="footer-col footer-col-1"> + <ul class="contact-list"> + <li class="p-name"> + + <a href="https://lists.mozilla.org/listinfo/android-components">Mailing list</a> + - + <a href="{{ "/feed.xml" | relative_url }}">RSS Feed</a> + - + <a href="https://github.com/mozilla-mobile/android-components">GitHub</a> + + </li> + </ul> + </div> + + </div> + </div> +</footer> diff --git a/mobile/android/android-components/docs/_includes/head.html b/mobile/android/android-components/docs/_includes/head.html new file mode 100644 index 0000000000..eee2267d24 --- /dev/null +++ b/mobile/android/android-components/docs/_includes/head.html @@ -0,0 +1,13 @@ +<head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + {%- seo -%} + <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}"> + {%- feed_meta -%} + {%- if jekyll.environment == 'production' and site.google_analytics -%} + {%- include google-analytics.html -%} + {%- endif -%} + <link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/images/favicon-32x32.png" | relative_url }}"> + <link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/images/favicon-16x16.png" | relative_url }}"> +</head> diff --git a/mobile/android/android-components/docs/_includes/header.html b/mobile/android/android-components/docs/_includes/header.html new file mode 100644 index 0000000000..7a989f7de9 --- /dev/null +++ b/mobile/android/android-components/docs/_includes/header.html @@ -0,0 +1,23 @@ +<header class="site-header" role="banner"> + <div class="wrapper"> + <a class="site-title" rel="author" href="/">Mozilla Android Components</a> + + <nav class="site-nav"> + <input type="checkbox" id="nav-trigger" class="nav-trigger" /> + <label for="nav-trigger"> + <span class="menu-icon"> + <svg viewBox="0 0 18 15" width="18px" height="15px"> + <path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/> + </svg> + </span> + </label> + + <div class="trigger"> + <a class="page-link" href="/components/">Components</a> + <a class="page-link" href="/changelog/">Changelog</a> + <a class="page-link" href="/blog/">Blog</a> + <a class="page-link" href="/contributing/">Contributing</a> + </div> + </nav> + </div> +</header> diff --git a/mobile/android/android-components/docs/_includes/post_detail.html b/mobile/android/android-components/docs/_includes/post_detail.html new file mode 100644 index 0000000000..bceb37d5bc --- /dev/null +++ b/mobile/android/android-components/docs/_includes/post_detail.html @@ -0,0 +1,16 @@ +<h1 class="entry-title"> + <!--<a href="{{ root_url }}{{ page.url }}">{{ page.title }}</a>--> +</h1> +<ul> + {% if post.title %} + <li> + {{ post.date | date: '%B %d, %Y' }} + <br/> + {% if post.external_url %} + <a href="{{ post.external_url }}">{{ post.title | escape }}</a> + {% else %} + <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a> + {% endif %} + </li> + {% endif %} +</ul> |