mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
* feat: style guide update * feat: style guide update * fix: make 'npm run font' use correct dest folder
19 lines
447 B
HTML
19 lines
447 B
HTML
<article class="component">
|
|
<header class="component__header">
|
|
<h3 id="guide-{{ entry.title | slugify }}">{{ entry.title }}</h3>
|
|
{% if entry.usage %}<p>{{ entry.usage }}</p>{% endif %}
|
|
</header>
|
|
|
|
<div class="component__content">
|
|
<div class="component__rendered">
|
|
{{ entry.content }}
|
|
</div>
|
|
<div class="component__code">
|
|
|
|
{% highlight html %}
|
|
{{ entry.content }}
|
|
{% endhighlight %}
|
|
|
|
</div>
|
|
</div>
|
|
</article>
|