We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59fe0d4 commit 92ddaf2Copy full SHA for 92ddaf2
_includes/download/board.html
@@ -172,6 +172,13 @@ <h3>CircuitPython {{ version.version }}</h3>
172
</span>
173
</p>
174
{% endif %}
175
+ {% if page.features %}
176
+ <p>Features:
177
+ {% for feature in page.features %}
178
+ <span class="feature-span">{{feature}}</span>
179
+ {% endfor %}
180
+ </p>
181
+ {% endif %}
182
</div>
183
{% endfor %}
184
assets/sass/pages/_download.scss
@@ -178,6 +178,16 @@
}
+ .feature-span {
+ padding: 2px 4px 2px 4px;
+ margin-left: 3px;
+ margin-bottom: 3px;
185
+ display: inline-block;
186
+ background-color: $purple;
187
+ color: #fff;
188
+ border-radius: 5px;
189
+ font-size: 14px;
190
+ }
191
192
193
@media (max-width: $screen-lg) {
0 commit comments