mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
06.34.2022 3dc2ebc738a452c5e60609f7a052b4ec5348d17f
Merge remote-tracking branch 'origin/master' into feature/improve-portfolio-metadata-styling
8 files modified
15 ■■■■■ changed files
assets/scss/partials/components/_archive.scss 1 ●●●● patch | view | raw | blame | history
assets/scss/partials/components/_portfolio.scss 1 ●●●● patch | view | raw | blame | history
assets/scss/partials/components/_post.scss 3 ●●●●● patch | view | raw | blame | history
layouts/_default/baseof.html 2 ●●● patch | view | raw | blame | history
layouts/_default/single.html 2 ●●● patch | view | raw | blame | history
layouts/index.html 2 ●●● patch | view | raw | blame | history
layouts/partials/series.html 2 ●●● patch | view | raw | blame | history
layouts/portfolio/list.html 2 ●●● patch | view | raw | blame | history
assets/scss/partials/components/_archive.scss
@@ -32,6 +32,7 @@
    &-title {
      display: inline-block;
      flex: 0.96;
      text-transform: uppercase;
      @include themed() {
        color: t('primary');
assets/scss/partials/components/_portfolio.scss
@@ -27,7 +27,6 @@
  }
  &__title {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 2.6rem;
    line-height: 1;
assets/scss/partials/components/_post.scss
@@ -97,7 +97,6 @@
      $font-size-h1: 3.6rem;
      font-size: $font-size-h1;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1;
@@ -115,7 +114,6 @@
      font-size: $font-size-h2;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1;
@@ -133,7 +131,6 @@
      font-size: $font-size-h3;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1;
layouts/_default/baseof.html
@@ -7,7 +7,7 @@
>
  {{- partial "head.html" . -}}
  <body
    {{ if eq .Params.displayMode "dark" }}
    {{ if eq .Site.Params.displayMode "dark" }}
      class="body theme--dark"
    {{ else }}
layouts/_default/single.html
@@ -15,7 +15,7 @@
    {{ end }}
    <div class="post__content">
      <h1>{{ .Title }}</h1>
      <h1>{{ title .Title }}</h1>
      {{ if or (eq .Type "post") (eq .Type .Site.Params.postSectionName) }}
        <ul class="post__meta">
          <li class="post__meta-item">
layouts/index.html
@@ -57,7 +57,7 @@
      {{ end }}
      <div class="post__content">
        <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
        <h3><a href="{{ .RelPermalink }}">{{ upper .Title }}</a></h3>
        {{ if .Site.Params.fullPostContent }}
          {{ .Content }}
layouts/partials/series.html
@@ -4,7 +4,7 @@
<h3>Posts in this Series</h3>
<ul>
  {{ range $related }}
    <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>
    <li><a href="{{ .Page.RelPermalink }}">{{ title .Page.Title }}</a></li>
  {{ end }}
</ul>
layouts/portfolio/list.html
@@ -9,7 +9,7 @@
      {{ end }}"
    >
      <h2 class="portfolio__title">{{ .title }}</h2>
      <h2 class="portfolio__title">{{ title .title }}</h2>
      {{ range $i, $p := .portfolioitem }}
        <div class="portfolio">
          {{ if .image }}