the code for my website (https://www.annwan.me)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
672 B

10 months ago
  1. {{ with .Site.Params.about }}
  2. <div class="aside__about">
  3. {{ with .logo }}<span class="about__logo" role="img">{{ . }}</span>&nbsp;{{ end }}
  4. {{ with .logo_image }}<img class="about__logo" src="{{ . | absURL }}" alt="Logo">{{ end }}
  5. <h1 class="about__title">{{ .title }}</h1>
  6. {{ with .description }}<p class="about__description">{{ . | markdownify }}</p>{{ end }}
  7. </div>
  8. {{ end }}
  9. <ul class="aside__social-links">
  10. {{ range $item := .Site.Params.socialLinks }}
  11. <li>
  12. <a href="{{ $item.url }}" rel="me" aria-label="{{ $item.title }}" title="{{ $item.title }}"><i class="{{ $item.icon }}" aria-hidden="true"></i></a>&nbsp;
  13. </li>
  14. {{ end }}
  15. </ul>