reconnect

This commit is contained in:
Nasir Anthony Montalvo
2026-01-26 02:25:43 -06:00
parent 6609527c97
commit 0a854da998
135 changed files with 8792 additions and 1 deletions

17
.github/_includes/feature/alert.html vendored Normal file
View File

@@ -0,0 +1,17 @@
{% comment %}
Bootstrap Alert, https://getbootstrap.com/docs/5.1/components/alerts/
E.G. --> {% include feature/alert.html text="example text" color="warning" align="center" %}
Options:
- "text" = text for alert, can use Markdown.
- "color" = a Bootstrap color (primary, secondary, success, danger, warning, info, light, dark)
- "align" = text alignment (center, right, left)
{%- endcomment -%}
<div class="narrow-content">
<div class="alert alert-{{ include.color | default: 'primary' }} feature-alert {% if include.align %}text-{{ include.align | default: 'center' }}{% endif %}" role="alert">
{{ include.text | markdownify }}
</div>
</div>