diff options
author | Raphael <mail@raphaelkabo.com> | 2024-05-26 19:12:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-26 19:12:37 +0100 |
commit | 43296cd88b9ab6f3ba1d5f4de5f76f44b68de82a (patch) | |
tree | 9738de17d2be368ffc95f90644dbf98220c2a136 /views/partials/instanceRules.handlebars | |
parent | 53288fa3df3f828e99eaba679d436e65def2deb4 (diff) | |
parent | 4ce9c7d32fd834ff1dc87b7dd90f7428ad0eb44d (diff) |
Merge pull request #138 from lowercasename/rk/style-overhaul
Style overhaul
Diffstat (limited to 'views/partials/instanceRules.handlebars')
-rw-r--r-- | views/partials/instanceRules.handlebars | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/views/partials/instanceRules.handlebars b/views/partials/instanceRules.handlebars new file mode 100644 index 0000000..c7fa9be --- /dev/null +++ b/views/partials/instanceRules.handlebars @@ -0,0 +1,11 @@ +<div class="card mb-4"> + <div class="card-header"> + <h6 class="mb-1">Instance settings</h6> + </div> + + <ul class="list-group list-group-flush"> + {{#each instanceRules}} + <li class="list-group-item"><i class="{{this.icon}} fa-fw mr-2"></i> {{this.text}}</li> + {{/each}} + </ul> +</div>
\ No newline at end of file |