Index: includes/browser-select.tmpl |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/includes/browser-select.tmpl |
@@ -0,0 +1,18 @@ |
+ |
+<label id="browser-select-label"> |
+ Your Browser: |
+</label> |
+ |
+<div id="browser-select" class="custom-select custom-select-dropdown"> |
+ <button class="custom-select-selected" aria-expanded="false" aria-haspopup="true"> |
+ </button> |
+ <ul class="custom-select-options" role="menu" tabindex="-1" aria-labelledby="browser-select-label"> |
+ {% for browser in browsers %} |
+ <li class="custom-select-option" role="button" tabindex="0" data-value="{{browser.id}}"> |
+ <img src="/img/png/logo-abp.png" srcset="/img/svg/logo-abp.svg 2x"> |
ire
2017/09/29 12:13:24
Also, forgot to mention I have been using the ABP
|
+ {{browser.name}} |
+ </li> |
+ {% endfor %} |
+ </ul> |
+</div> |
+ |