Test Two

This second test page!

What does inline formatting look like? Does it look good? Let’s check.

Here is a filename.txt. And here is anotherOne.css. Here’s one that’s also-a-link.html

There we go, that’s better.

{{ range .Pages }}
  <div class="section__item">
    <div class="section__item-head">
      <h4><a href="{{ .RelPermalink }}">{{ .Title }}</a></h4>
      <p class="section__item-period">{{ .Date.Format "Jan 2, 2006" }}</p>
    </div>
    <div class="section__item-content">
      <div>
        <p class="section__item-description">{{ .Summary }}</p>
        <a href="{{ .RelPermalink }}" class="section__view-all">Read More →</a>
      </div>
    </div>
  </div>
{{ else }}
  <p>No posts found.</p>
{{ end }}