github.com/wfusion/gofusion@v1.1.14/common/infra/watermill/docs/layouts/section/pubsubs.html (about)

     1  {{ define "title"}} {{ .Title}} {{end}}
     2  {{ define "header"}} {{ partial "header" .}} {{end}}
     3  {{ define "main"}}
     4  <div id="main">
     5    <div id="hero">
     6      <h1> {{ .Title}} </h1>
     7      <p class="hero-lead">
     8        {{ .Params.bref }}
     9      </p>
    10    </div>
    11    <div id="components">
    12      <div class="row gutters">
    13        {{ range .Data.Pages.ByWeight }}
    14        <div class="col col-4 item">
    15          <h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
    16          <p>{{ .Params.description }}</p>
    17        </div>
    18        {{ end }}
    19      </div>
    20    </div>
    21  
    22    <p>If you want to find out how to implement your own Pub/Sub adapter, check out
    23      <a href="/docs/pub-sub-implementing">Implementing custom Pub/Sub</a>.
    24    </p>
    25  </div>
    26  {{ end }}
    27  
    28  {{ define "footer"}} {{ partial "footer" .}} {{end}}