Files
Portainer/ghost/theme-overrides/headline/ops.hbs
T
2026-08-09 16:56:50 +00:00

32 lines
1.1 KiB
Handlebars

{{!< default}}
<main class="gh-main gh-outer">
<div class="gh-inner">
{{#get "posts" filter="tag:hash-private-ops" include="tags,authors" limit="20" as |ops_posts|}}
{{#foreach ops_posts limit="1"}}
{{#if access}}
<section class="gh-pagehead">
<h1 class="gh-pagehead-title">Private Ops</h1>
</section>
<div class="gh-topic gh-topic-grid">
<div class="gh-topic-content gh-feed">
{{#foreach ops_posts}}
{{> "loop-grid" has_large_post=false}}
{{/foreach}}
</div>
</div>
{{else}}
<section class="gh-pagehead">
<h1 class="gh-pagehead-title">No encontrado</h1>
</section>
{{/if}}
{{else}}
<section class="gh-pagehead">
<h1 class="gh-pagehead-title">No encontrado</h1>
</section>
{{/foreach}}
{{/get}}
</div>
</main>