aboutsummaryrefslogtreecommitdiff
path: root/generators/openring/template.html
blob: 5e485aaf50a25b23ac326cc36e414aae4b924f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<ul>
  {{ range .Articles }}
    <li>
      <h3>
        <a
          href="{{ .Link }}"
          rel="noopener"
          title="{{ .Summary }}"
        >
          {{ .Title }}
        </a>
      </h3>
      <p>
        by <a href="{{ .SourceLink}} ">{{ .SourceTitle }}</a>
      </p>
      <time datetime="{{ .Date }}">{{ .Date | date }}</time>
    </li>
  {{ end }}
</ul>