front page nieuws container werkend
This commit is contained in:
parent
b13ff3c673
commit
cbbd84f4d6
|
@ -91,7 +91,6 @@
|
||||||
"from-body",
|
"from-body",
|
||||||
"g",
|
"g",
|
||||||
"grid-container",
|
"grid-container",
|
||||||
"grid-list",
|
|
||||||
"group",
|
"group",
|
||||||
"gx-5",
|
"gx-5",
|
||||||
"h-4",
|
"h-4",
|
||||||
|
@ -245,8 +244,6 @@
|
||||||
"text-xl",
|
"text-xl",
|
||||||
"theme-switcher",
|
"theme-switcher",
|
||||||
"time",
|
"time",
|
||||||
"time-wrapper",
|
|
||||||
"title",
|
|
||||||
"to-theme-light",
|
"to-theme-light",
|
||||||
"top-0",
|
"top-0",
|
||||||
"top-1/2",
|
"top-1/2",
|
||||||
|
|
|
@ -82,128 +82,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Features2 -->
|
|
||||||
{{ range $i, $e:= .Params.features2 }}
|
|
||||||
<section class="section-sm {{ if (modBool $i 2) }}bg-gradient{{ end }}">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row items-center justify-between">
|
|
||||||
<div
|
|
||||||
class="mb:md-0 {{ if not (modBool $i 2) }}
|
|
||||||
md:order-2
|
|
||||||
{{ end }} md:col-5 mb-6"
|
|
||||||
>
|
|
||||||
{{ partial "image" (dict "Src" .image "Alt" "feature image" "DisplayXL"
|
|
||||||
"520x" "DisplayLG" "425x" "DisplayMD" "360x") }}
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
class="{{ if not (modBool $i 2) }}
|
|
||||||
md:order-1
|
|
||||||
{{ end }} md:col-7 lg:col-6"
|
|
||||||
>
|
|
||||||
<h2 class="mb-4">{{ .title | markdownify }}</h2>
|
|
||||||
<p class="mb-8 text-lg">{{ .content | markdownify }}</p>
|
|
||||||
<ul>
|
|
||||||
{{ range .bulletpoints }}
|
|
||||||
<li class="relative mb-4 pl-6">
|
|
||||||
<i class="fa fa-check absolute left-0 top-1.5"></i>
|
|
||||||
{{ . | markdownify }}
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
{{ with .button }} {{ if .enable }}
|
|
||||||
<a class="btn btn-primary mt-6" href="{{ .link | absURL }}">
|
|
||||||
{{ .label }}
|
|
||||||
<i class="fa fa-arrow-right pl-2"></i>
|
|
||||||
</a>
|
|
||||||
{{ end }} {{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
{{ end }}
|
|
||||||
<!-- /Features2 -->
|
|
||||||
|
|
||||||
<!-- Features3 -->
|
|
||||||
|
|
||||||
{{ range $i, $e:= .Params.features2 }}
|
|
||||||
<section class="section-sm {{ if (modBool $i 2) }}bg-gradient{{ end }}">
|
|
||||||
<div class="container">
|
|
||||||
<div class="row items-center justify-between">
|
|
||||||
<div
|
|
||||||
class="mb:md-0 {{ if not (modBool $i 2) }}
|
|
||||||
md:order-2
|
|
||||||
{{ end }} md:col-5 mb-6"
|
|
||||||
>
|
|
||||||
{{ partial "image" (dict "Src" .image "Alt" "feature image" "DisplayXL"
|
|
||||||
"520x" "DisplayLG" "425x" "DisplayMD" "360x") }}
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
class="{{ if not (modBool $i 2) }}
|
|
||||||
md:order-1
|
|
||||||
{{ end }} md:col-7 lg:col-6"
|
|
||||||
>
|
|
||||||
<h2 class="mb-4">{{ .title | markdownify }}</h2>
|
|
||||||
<p class="mb-8 text-lg">{{ .content | markdownify }}</p>
|
|
||||||
<ul>
|
|
||||||
{{ range .bulletpoints }}
|
|
||||||
<li class="relative mb-4 pl-6">
|
|
||||||
<i class="fa fa-check absolute left-0 top-1.5"></i>
|
|
||||||
{{ . | markdownify }}
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
{{ with .button }} {{ if .enable }}
|
|
||||||
<a class="btn btn-primary mt-6" href="{{ .link | absURL }}">
|
|
||||||
{{ .label }}
|
|
||||||
<i class="fa fa-arrow-right pl-2"></i>
|
|
||||||
</a>
|
|
||||||
{{ end }} {{ end }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
{{ end }}
|
|
||||||
<!-- /Features3 -->
|
|
||||||
|
|
||||||
{{ if gt (len (where .Site.RegularPages "Section" "blog")) 0 }}
|
|
||||||
<section>
|
|
||||||
<h2>Laatste nieuws</h2>
|
|
||||||
<ul class="list">
|
|
||||||
{{ range (first 5 (where .Site.RegularPages "Section" "blog").ByDate.Reverse) }}
|
|
||||||
<li>
|
|
||||||
<a class="link" href="{{ .RelPermalink }}">{{ .Title }}
|
|
||||||
|
|
||||||
</a>
|
|
||||||
<time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
|
|
||||||
<hr class="hr-list">
|
|
||||||
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<!-- testing2-->
|
|
||||||
|
|
||||||
{{ if gt (len (where .Site.RegularPages "Section" "blog")) 0 }}
|
|
||||||
<section>
|
|
||||||
<h2>Laatste nieuws</h2>
|
|
||||||
<ul class="list">
|
|
||||||
{{ range (first 5 (where .Site.RegularPages "Section" "blog").ByDate.Reverse) }}
|
|
||||||
<li class="list-item">
|
|
||||||
<div class="content">
|
|
||||||
<a class="link" href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
||||||
</div>
|
|
||||||
<time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
|
|
||||||
<hr class="hr-list">
|
|
||||||
</li>
|
|
||||||
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
{{ end }}
|
|
||||||
|
|
||||||
<!-- testing -->
|
|
||||||
|
|
||||||
{{ if gt (len (where .Site.RegularPages "Section" "blog")) 0 }}
|
{{ if gt (len (where .Site.RegularPages "Section" "blog")) 0 }}
|
||||||
<section>
|
<section>
|
||||||
|
@ -216,15 +94,15 @@
|
||||||
<h2>Laatste nieuws</h2>
|
<h2>Laatste nieuws</h2>
|
||||||
<ul class="list">
|
<ul class="list">
|
||||||
{{ range (first 5 (where .Site.RegularPages "Section" "blog").ByDate.Reverse) }}
|
{{ range (first 5 (where .Site.RegularPages "Section" "blog").ByDate.Reverse) }}
|
||||||
<li>
|
<li class="list-item">
|
||||||
<a class="link" href="{{ .RelPermalink }}">{{ .Title }}
|
<div class="content">
|
||||||
<time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
|
<a class="link" href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||||
</a>
|
</div>
|
||||||
|
<time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
|
||||||
<hr class="hr-list">
|
<hr class="hr-list">
|
||||||
|
</li>
|
||||||
</li>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -237,15 +115,15 @@
|
||||||
<h2>Laatste nieuws</h2>
|
<h2>Laatste nieuws</h2>
|
||||||
<ul class="list">
|
<ul class="list">
|
||||||
{{ range (first 5 (where .Site.RegularPages "Section" "blog").ByDate.Reverse) }}
|
{{ range (first 5 (where .Site.RegularPages "Section" "blog").ByDate.Reverse) }}
|
||||||
<li>
|
<li class="list-item">
|
||||||
<a class="link" href="{{ .RelPermalink }}">{{ .Title }}
|
<div class="content">
|
||||||
<time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
|
<a class="link" href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||||
</a>
|
</div>
|
||||||
|
<time class="g time" datetime="{{ dateFormat "2006-01-02" .Date }}">{{ dateFormat "02-01-2006" .Date }}</time>
|
||||||
<hr class="hr-list">
|
<hr class="hr-list">
|
||||||
|
</li>
|
||||||
</li>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -1054,7 +1054,7 @@
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced"
|
alt="Fediversity Project publicly announced4"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1069,7 +1069,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch/"> Fediversity Project publicly announced </a>
|
<a href="/blog/project-launch-copy-2/"> Fediversity Project publicly announced4 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1090,8 +1090,8 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">4 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch/">
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-2/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1201,7 +1201,7 @@
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced1"
|
alt="Fediversity Project publicly announced3"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1216,7 +1216,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy/"> Fediversity Project publicly announced1 </a>
|
<a href="/blog/project-launch-copy-3/"> Fediversity Project publicly announced3 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1237,9 +1237,8 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">copy 1
|
<p class="mb-6">3 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-3/">
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy/">
|
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1497,7 +1496,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced3"
|
alt="Fediversity Project publicly announced1"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1512,7 +1511,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy-3/"> Fediversity Project publicly announced3 </a>
|
<a href="/blog/project-launch-copy/"> Fediversity Project publicly announced1 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1533,8 +1532,9 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">3 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">copy 1
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-3/">
|
Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1644,7 +1644,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced4"
|
alt="Fediversity Project publicly announced"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1659,7 +1659,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy-2/"> Fediversity Project publicly announced4 </a>
|
<a href="/blog/project-launch/"> Fediversity Project publicly announced </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1680,8 +1680,8 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">4 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-2/">
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -966,7 +966,7 @@
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced"
|
alt="Fediversity Project publicly announced4"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -981,7 +981,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch/"> Fediversity Project publicly announced </a>
|
<a href="/blog/project-launch-copy-2/"> Fediversity Project publicly announced4 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1002,8 +1002,8 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">4 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch/">
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-2/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1113,7 +1113,7 @@
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced1"
|
alt="Fediversity Project publicly announced3"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1128,7 +1128,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy/"> Fediversity Project publicly announced1 </a>
|
<a href="/blog/project-launch-copy-3/"> Fediversity Project publicly announced3 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1149,9 +1149,8 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">copy 1
|
<p class="mb-6">3 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-3/">
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy/">
|
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1409,7 +1408,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced3"
|
alt="Fediversity Project publicly announced1"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1424,7 +1423,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy-3/"> Fediversity Project publicly announced3 </a>
|
<a href="/blog/project-launch-copy/"> Fediversity Project publicly announced1 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1445,8 +1444,9 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">3 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">copy 1
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-3/">
|
Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1556,7 +1556,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced4"
|
alt="Fediversity Project publicly announced"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1571,7 +1571,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy-2/"> Fediversity Project publicly announced4 </a>
|
<a href="/blog/project-launch/"> Fediversity Project publicly announced </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1592,8 +1592,8 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">4 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-2/">
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -6,8 +6,36 @@
|
||||||
<description>Recent content in News on Fediversity</description>
|
<description>Recent content in News on Fediversity</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 01 Jan 2024 05:00:00 +0000</lastBuildDate>
|
<lastBuildDate>Fri, 05 Jan 2024 05:00:00 +0000</lastBuildDate>
|
||||||
<atom:link href="//localhost:1313/blog/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="//localhost:1313/blog/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced4</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy-2/</link>
|
||||||
|
<pubDate>Fri, 05 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy-2/</guid>
|
||||||
|
<description>4 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced3</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy-3/</link>
|
||||||
|
<pubDate>Thu, 04 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy-3/</guid>
|
||||||
|
<description>3 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced2</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy-4/</link>
|
||||||
|
<pubDate>Wed, 03 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy-4/</guid>
|
||||||
|
<description>2
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced1</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy/</link>
|
||||||
|
<pubDate>Tue, 02 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy/</guid>
|
||||||
|
<description>copy 1
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Fediversity Project publicly announced</title>
|
<title>Fediversity Project publicly announced</title>
|
||||||
<link>//localhost:1313/blog/project-launch/</link>
|
<link>//localhost:1313/blog/project-launch/</link>
|
||||||
|
@ -15,33 +43,5 @@
|
||||||
<guid>//localhost:1313/blog/project-launch/</guid>
|
<guid>//localhost:1313/blog/project-launch/</guid>
|
||||||
<description>Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
<description>Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced1</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy/</guid>
|
|
||||||
<description>copy 1
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced2</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy-4/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy-4/</guid>
|
|
||||||
<description>2
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced3</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy-3/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy-3/</guid>
|
|
||||||
<description>3 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced4</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy-2/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy-2/</guid>
|
|
||||||
<description>4 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|
|
@ -6,12 +6,12 @@
|
||||||
<description>Recent content in Categories on Fediversity</description>
|
<description>Recent content in Categories on Fediversity</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 01 Jan 2024 05:00:00 +0000</lastBuildDate>
|
<lastBuildDate>Fri, 05 Jan 2024 05:00:00 +0000</lastBuildDate>
|
||||||
<atom:link href="//localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="//localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
<item>
|
<item>
|
||||||
<title>News</title>
|
<title>News</title>
|
||||||
<link>//localhost:1313/categories/news/</link>
|
<link>//localhost:1313/categories/news/</link>
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
<pubDate>Fri, 05 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
<guid>//localhost:1313/categories/news/</guid>
|
<guid>//localhost:1313/categories/news/</guid>
|
||||||
<description></description>
|
<description></description>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -969,7 +969,7 @@
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced"
|
alt="Fediversity Project publicly announced4"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -984,7 +984,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch/"> Fediversity Project publicly announced </a>
|
<a href="/blog/project-launch-copy-2/"> Fediversity Project publicly announced4 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1005,8 +1005,8 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">4 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch/">
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-2/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1116,7 +1116,7 @@
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced1"
|
alt="Fediversity Project publicly announced3"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1131,7 +1131,7 @@
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy/"> Fediversity Project publicly announced1 </a>
|
<a href="/blog/project-launch-copy-3/"> Fediversity Project publicly announced3 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1152,9 +1152,8 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">copy 1
|
<p class="mb-6">3 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-3/">
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy/">
|
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1412,7 +1411,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced3"
|
alt="Fediversity Project publicly announced1"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1427,7 +1426,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy-3/"> Fediversity Project publicly announced3 </a>
|
<a href="/blog/project-launch-copy/"> Fediversity Project publicly announced1 </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1448,8 +1447,9 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">3 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">copy 1
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-3/">
|
Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1559,7 +1559,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
loading="lazy" decoding="async"
|
loading="lazy" decoding="async"
|
||||||
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
src="/images/image-placeholder_huf5f2d24635a285cfc2259aa9741acb2a_4881_1110x0_resize_lanczos_3.png"
|
||||||
class=" mb-6 w-full rounded img"
|
class=" mb-6 w-full rounded img"
|
||||||
alt="Fediversity Project publicly announced4"
|
alt="Fediversity Project publicly announced"
|
||||||
width="1096"
|
width="1096"
|
||||||
height="480" />
|
height="480" />
|
||||||
</picture>
|
</picture>
|
||||||
|
@ -1574,7 +1574,7 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
|
|
||||||
|
|
||||||
<h4 class="mb-3">
|
<h4 class="mb-3">
|
||||||
<a href="/blog/project-launch-copy-2/"> Fediversity Project publicly announced4 </a>
|
<a href="/blog/project-launch/"> Fediversity Project publicly announced </a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
<ul class="mb-4">
|
<ul class="mb-4">
|
||||||
|
@ -1595,8 +1595,8 @@ Fediversity announces the start of the Fediversity project. More information wil
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mb-6">4 Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
<p class="mb-6">Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
|
||||||
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch-copy-2/">
|
<a class="btn btn-outline-primary btn-sm" href="/blog/project-launch/">
|
||||||
Read More
|
Read More
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -6,8 +6,36 @@
|
||||||
<description>Recent content in News on Fediversity</description>
|
<description>Recent content in News on Fediversity</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Mon, 01 Jan 2024 05:00:00 +0000</lastBuildDate>
|
<lastBuildDate>Fri, 05 Jan 2024 05:00:00 +0000</lastBuildDate>
|
||||||
<atom:link href="//localhost:1313/categories/news/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="//localhost:1313/categories/news/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced4</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy-2/</link>
|
||||||
|
<pubDate>Fri, 05 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy-2/</guid>
|
||||||
|
<description>4 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced3</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy-3/</link>
|
||||||
|
<pubDate>Thu, 04 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy-3/</guid>
|
||||||
|
<description>3 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced2</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy-4/</link>
|
||||||
|
<pubDate>Wed, 03 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy-4/</guid>
|
||||||
|
<description>2
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<title>Fediversity Project publicly announced1</title>
|
||||||
|
<link>//localhost:1313/blog/project-launch-copy/</link>
|
||||||
|
<pubDate>Tue, 02 Jan 2024 05:00:00 +0000</pubDate>
|
||||||
|
<guid>//localhost:1313/blog/project-launch-copy/</guid>
|
||||||
|
<description>copy 1
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>Fediversity Project publicly announced</title>
|
<title>Fediversity Project publicly announced</title>
|
||||||
<link>//localhost:1313/blog/project-launch/</link>
|
<link>//localhost:1313/blog/project-launch/</link>
|
||||||
|
@ -15,33 +43,5 @@
|
||||||
<guid>//localhost:1313/blog/project-launch/</guid>
|
<guid>//localhost:1313/blog/project-launch/</guid>
|
||||||
<description>Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
<description>Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced1</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy/</guid>
|
|
||||||
<description>copy 1
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced2</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy-4/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy-4/</guid>
|
|
||||||
<description>2
Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced3</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy-3/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy-3/</guid>
|
|
||||||
<description>3 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<title>Fediversity Project publicly announced4</title>
|
|
||||||
<link>//localhost:1313/blog/project-launch-copy-2/</link>
|
|
||||||
<pubDate>Mon, 01 Jan 2024 05:00:00 +0000</pubDate>
|
|
||||||
<guid>//localhost:1313/blog/project-launch-copy-2/</guid>
|
|
||||||
<description>4 Fediversity announces the start of the Fediversity project. More information will be available soon.</description>
|
|
||||||
</item>
|
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|
1022
public/index.html
1022
public/index.html
File diff suppressed because it is too large
Load diff
|
@ -9,27 +9,27 @@
|
||||||
<lastmod>2024-05-02T16:00:00+00:00</lastmod>
|
<lastmod>2024-05-02T16:00:00+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>//localhost:1313/categories/</loc>
|
<loc>//localhost:1313/categories/</loc>
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
<lastmod>2024-01-05T05:00:00+00:00</lastmod>
|
||||||
</url><url>
|
|
||||||
<loc>//localhost:1313/blog/project-launch/</loc>
|
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
|
||||||
</url><url>
|
|
||||||
<loc>//localhost:1313/blog/project-launch-copy/</loc>
|
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
|
||||||
</url><url>
|
|
||||||
<loc>//localhost:1313/blog/project-launch-copy-4/</loc>
|
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
|
||||||
</url><url>
|
|
||||||
<loc>//localhost:1313/blog/project-launch-copy-3/</loc>
|
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>//localhost:1313/blog/project-launch-copy-2/</loc>
|
<loc>//localhost:1313/blog/project-launch-copy-2/</loc>
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
<lastmod>2024-01-05T05:00:00+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>//localhost:1313/categories/news/</loc>
|
<loc>//localhost:1313/categories/news/</loc>
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
<lastmod>2024-01-05T05:00:00+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>//localhost:1313/blog/</loc>
|
<loc>//localhost:1313/blog/</loc>
|
||||||
|
<lastmod>2024-01-05T05:00:00+00:00</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>//localhost:1313/blog/project-launch-copy-3/</loc>
|
||||||
|
<lastmod>2024-01-04T05:00:00+00:00</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>//localhost:1313/blog/project-launch-copy-4/</loc>
|
||||||
|
<lastmod>2024-01-03T05:00:00+00:00</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>//localhost:1313/blog/project-launch-copy/</loc>
|
||||||
|
<lastmod>2024-01-02T05:00:00+00:00</lastmod>
|
||||||
|
</url><url>
|
||||||
|
<loc>//localhost:1313/blog/project-launch/</loc>
|
||||||
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
<lastmod>2024-01-01T05:00:00+00:00</lastmod>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>//localhost:1313/authors/</loc>
|
<loc>//localhost:1313/authors/</loc>
|
||||||
|
|
Reference in a new issue