The repo tracks work progress for ura.design website redesign
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.

75 lines
4.2 KiB

3 years ago
{{ define "main" }}
2 years ago
<main class="post py-5">
<!-- <div class="container-fluid">
3 years ago
<div class="container">
<h1 class="post-title mb-5">{{ .Title }}</h1>
{{- if .Content }}
<div class="content">{{ .Content }}</div>
{{- end }}
<div class="row">
<div class="col-xl-8 col-lg-12 col-12 pb-lg-0 pb-4">
2 years ago
{{ range first 1 (where .Site.RegularPages "Type" "blog") }}
3 years ago
<article class="first">
<img class="grayscale mb-lg-3 mb-0" src="{{ .Site.BaseURL }}{{ .Params.image }}" alt="{{ .Title }}">
<div class="data">
2 years ago
<p class="info mb-0">{{ i18n "readingTime" .Page.ReadingTime }} read / <strong><time datetime="{{ .Date.Format .Site.Params.dateform }}">{{ .Date.Format .Site.Params.dateform }}</time></strong></p>
3 years ago
<a class="title mb-2" href="{{ .Permalink }}">{{ .Title }}</a>
<p class="description mb-0 mt-2">{{ .Summary | truncate 200 }}</p>
</div>
</article>
{{ end }}
</div>
<div class="col-xl-4 col-lg-12 col-12">
2 years ago
{{ range first 1 (after 1 (where .Site.RegularPages "Type" "blog")) }}
3 years ago
<article class="card">
<img class="grayscale mb-3" src="{{ .Site.BaseURL }}{{ .Params.image }}" alt="{{ .Title }}">
2 years ago
<p class="info mb-0">{{ i18n "readingTime" .Page.ReadingTime }} read / <strong><time datetime="{{ .Date.Format .Site.Params.dateform }}">{{ .Date.Format .Site.Params.dateform }}</time></strong></p>
3 years ago
<a class="title mb-2" href="{{ .Permalink }}">{{ .Title }}</a>
<p class="description mb-0">{{ .Summary | truncate 200 }}</p>
</article>
{{ end }}
</div>
</div>
<div class="row py-4">
2 years ago
{{- range first 3 (after 2 (where .Site.RegularPages "Type" "blog")) }}
3 years ago
<div class="col-xl-4 col-lg-12 col-12">
<article class="card">
<img class="grayscale mb-3" src="{{ .Site.BaseURL }}{{ .Params.image }}" alt="{{ .Title }}" loading="lazy">
2 years ago
<p class="info mb-0">{{ i18n "readingTime" .Page.ReadingTime }} read / <strong><time datetime="{{ .Date.Format .Site.Params.dateform }}">{{ .Date.Format .Site.Params.dateform }}</time></strong></p>
3 years ago
<a class="title mb-2" href="{{ .Permalink }}">{{ .Title }}</a>
<p class="description mb-0">{{ .Summary | truncate 200 }}</p>
</article>
</div>
{{- end }}
</div>
<div class="row mx-0 schedule justify-content-between align-items-center">
<div class="col-xl-8 col-lg-8 col-12 pb-lg-0 pb-4">
<h2>Need design support?</h2>
<p class="mb-0">Schedule a 30min chat with us to find out how we can help</p>
</div>
<div class="col-xl-4 col-lg-4 col-12 d-flex justify-content-center mt-lg-0 mt-2 mb-lg-0 mb-3">
2 years ago
<a href="https://cal.ura.design/uradotdesign" target="_blank" rel="noopener noreferrer">Schedule a Chat</a>
3 years ago
</div>
</div>
<div class="row py-4">
2 years ago
{{- range after 5 (where .Site.RegularPages "Type" "blog") }}
3 years ago
<div class="col-xl-4 col-lg-12 col-12 pb-4">
<article class="card">
2 years ago
<p class="info mb-0">{{ i18n "readingTime" .Page.ReadingTime }} read / <strong><time datetime="{{ .Date.Format .Site.Params.dateform }}">{{ .Date.Format .Site.Params.dateform }}</time></strong></p>
3 years ago
<a class="title mb-2" href="{{ .Permalink }}">{{ .Title }}</a>
<p class="description mb-0">{{ .Summary | truncate 200 }}</p>
</article>
</div>
2 years ago
{{- end }}
3 years ago
</div>
</div>
2 years ago
</div> -->
</main>
3 years ago
{{ end }}