mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
19 lines
471 B
HTML
19 lines
471 B
HTML
<article class="component">
|
|
<header class="component__header">
|
|
<h3 id="guide-{{ entry.title | slugify }}">{{ entry.title }}</h3>
|
|
{% if entry.usage %}<p><strong>Usage:</strong> {{ 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>
|