Files
jekyll/docs/_includes/news_contents_mobile.html
Ashwin Maroli 68066ce268 Optimize rendering of the documentation site (#8020)
Merge pull request 8020
2020-02-24 18:44:11 -05:00

12 lines
402 B
HTML

<div class="docs-nav-mobile unit whole show-on-mobiles">
<select onchange="if (this.value) window.location.href=this.value">
<option value="">Navigate the blog…</option>
<option value="/news/">Home</option>
<optgroup label="posts">
{% for post in site.posts -%}
<option value="{{ post.url }}">{{ post.title }}</option>
{% endfor -%}
</optgroup>
</select>
</div>