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.
2 parents f26dc4c + 92ddaf2 commit ea47fdcCopy full SHA for ea47fdc
_includes/download/board.html
@@ -178,6 +178,13 @@ <h3>CircuitPython {{ version.version }}</h3>
178
</span>
179
</p>
180
{% endif %}
181
+ {% if page.features %}
182
+ <p>Features:
183
+ {% for feature in page.features %}
184
+ <span class="feature-span">{{feature}}</span>
185
+ {% endfor %}
186
+ </p>
187
+ {% endif %}
188
</div>
189
{% endfor %}
190
assets/sass/pages/_download.scss
@@ -184,6 +184,16 @@
}
+ .feature-span {
+ padding: 2px 4px 2px 4px;
+ margin-left: 3px;
+ margin-bottom: 3px;
191
+ display: inline-block;
192
+ background-color: $purple;
193
+ color: #fff;
194
+ border-radius: 5px;
195
+ font-size: 14px;
196
+ }
197
198
199
@media (max-width: $screen-lg) {
0 commit comments