31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
<div class='architecture-tree'>
|
|
<h3 class='post-list-heading'>System Architectures</h3>
|
|
|
|
<details open style='margin-bottom: 20px;'>
|
|
<summary style='cursor: pointer; list-style: none; font-family: monospace; font-size: 1.1em; outline: none;'>
|
|
<svg
|
|
style='width: 16px; height: 16px; vertical-align: middle; margin-right: 5px;'
|
|
viewBox='0 0 24 24'
|
|
fill='none'
|
|
stroke='currentColor'
|
|
stroke-width='2'
|
|
stroke-linecap='round'
|
|
stroke-linejoin='round'
|
|
>
|
|
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>
|
|
</svg>
|
|
<strong>Architectures/</strong>
|
|
</summary>
|
|
|
|
<ul style='list-style: none; padding-left: 12px; margin-top: 10px;'>
|
|
{% for doc in site.architectures %}
|
|
<li style='margin-bottom: 5px;'>
|
|
<a href='{{ doc.url | relative_url }}' style='text-decoration: none; color: #2a7ae2;'>
|
|
{{ doc.title | default: doc.name }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</details>
|
|
</div>
|