news articles image to side

This commit is contained in:
Laurens 2024-04-16 17:18:15 +02:00
parent 80e51298d6
commit 806bc74fac
28 changed files with 233 additions and 911 deletions

View file

@ -10,3 +10,13 @@ draft: false
---
Fediversity announces the start of the Fediversity project. More information will be available soon.
Odit reprehenderit earum voluptas. Quo dolor iusto voluptatem. Dignissimos ea officiis minus reprehenderit. Eligendi enim temporibus nulla voluptatem a et velit nisi. Ea quibusdam voluptas qui quaerat. Voluptas aperiam cum mollitia architecto sapiente.
Molestiae libero consequatur nobis delectus quae qui earum. Mollitia magni est aspernatur. Quisquam earum et maiores.
Id sint quod consequatur animi repudiandae ex unde error. Quo sequi quae vel ut sit animi. Esse doloribus sed quidem magnam exercitationem ut. Exercitationem aut corporis dolores fugiat. Nam velit ea aut sapiente modi et. Nisi numquam officia consequuntur odit laborum voluptatem.
Deleniti voluptatem accusamus voluptas perferendis non laudantium incidunt. Suscipit voluptates ut quia. Qui vel libero distinctio voluptates quo.
Facilis eveniet voluptatem non dolor sed dicta quisquam. Fugit tempora deserunt cupiditate voluptates adipisci qui. Voluptas asperiores saepe fuga. Blanditiis nostrum ea expedita hic.

View file

@ -4,7 +4,6 @@
"a",
"article",
"base",
"blockquote",
"body",
"button",
"div",
@ -12,7 +11,6 @@
"form",
"h1",
"h2",
"h3",
"h4",
"h5",
"head",
@ -75,24 +73,19 @@
"fa-brands",
"fa-circle-user",
"fa-clock",
"fa-facebook",
"fa-folder",
"fa-github",
"fa-linkedin",
"fa-mastodon",
"fa-regular",
"fa-rss",
"fa-rss-square",
"fa-search",
"fa-solid",
"fa-twitter",
"fab",
"fill-current",
"fixed",
"flex",
"flex-wrap",
"font-bold",
"font-primary",
"font-semibold",
"form-input",
"form-label",
"from-body",
@ -102,7 +95,6 @@
"h-6",
"h2",
"h3",
"h5",
"header",
"hidden",
"hover:text-primary",
@ -139,12 +131,12 @@
"lg:text-h1",
"lg:text-left",
"lg:text-right",
"lg:w-1/2",
"lg:w-auto",
"logo-dark",
"logo-disqus",
"logo-light",
"m-3",
"mastodon.svg",
"mb-10",
"mb-12",
"mb-14",
@ -173,12 +165,10 @@
"mr-5",
"ms-1",
"mt-10",
"mt-11",
"mt-20",
"mt-4",
"mt-6",
"mt-8",
"mt-9",
"mx-auto",
"nav-dropdown",
"nav-dropdown-item",
@ -201,11 +191,11 @@
"pb-6",
"pl-2",
"pr-5",
"pr-8",
"pt-14",
"pt-7",
"px-2",
"px-4",
"px-7",
"px-8",
"py-10",
"py-14",
@ -215,8 +205,6 @@
"relative",
"rounded",
"rounded-2xl",
"rounded-full",
"rounded-lg",
"row",
"search-icon",
"search-modal",
@ -248,11 +236,6 @@
"space-y-4",
"sr-only",
"sticky",
"swiper",
"swiper-slide",
"swiper-wrapper",
"testimonial-slider",
"testimonial-slider-pagination",
"text-[12px]",
"text-[8rem]",
"text-black",
@ -274,7 +257,6 @@
"w-full",
"xl:bg-blue-200",
"xl:block",
"xl:col-6",
"xl:hidden",
"xl:space-x-8",
"z-10",

View file

@ -15,12 +15,7 @@
</div>
{{ partial "components/pagination.html" . }}
</div>
<!-- sidebar -->
<div class="lg:col-4">
<!-- widget -->
{{ $widget:= site.Params.widgets.sidebar }} {{ partialCached
"widgets/widget-wrapper" ( dict "Widgets" $widget "Scope" . ) }}
</div>
</div>
</div>
</section>

View file

@ -3,13 +3,13 @@
<div class="container">
<div class="row justify-center">
<article class="lg:col-10">
{{ $image:= .Params.image }} {{ if $image }}
<div class="mb-10">
{{ partial "image" (dict "Src" $image "Alt" .Title "Class" "w-full rounded") }}
</div>
{{ end }}
<div class="mb-10 flex flex-wrap"> <!-- Add flex-wrap class to allow wrapping -->
<div class="w-full lg:w-1/2 mb-4 lg:mb-0 pr-8"> <!-- Specify width for the text content and add margin to the right -->
<h1 class="h2 mb-4">{{ .Title }}</h1>
<ul class="mb-4">
<!-- List items for author, categories, and publish date -->
<li class="mr-4 inline-block">
<a
href="{{ `authors/` | relLangURL }}{{ .Params.Author | urlize }}/"
@ -17,25 +17,26 @@
<i class="fa-regular fa-circle-user mr-2"></i>{{ .Params.author }}
</a>
</li>
{{ $categories:= .Params.categories }} {{ if $categories }}
<li class="mr-4 inline-block">
<i class="fa-regular fa-folder mr-2"></i>
{{ range $i,$p:= $categories }}
<a
href="{{ `categories/` | relLangURL }}{{ . | urlize | lower }}/"
class=""
>{{ . | humanize }}{{ if ne $i (sub (len $categories) 1) }} {{ ","
}} {{ end }}
</a>
{{ end }}
</li>
{{ end }}
<li class="mr-4 inline-block">
<i class="fa-regular fa-clock mr-2"></i>
{{ time.Format ":date_long" .PublishDate }}
</li>
</ul>
<div class="content mb-10">{{ .Content }}</div>
<!-- Other content elements -->
</div>
<div class="w-full lg:w-1/2"> <!-- Specify width for the image content -->
<div>
{{ partial "image" (dict "Src" $image "Alt" .Title "Class" "w-full rounded") }}
</div>
</div>
</div>
{{ end }}
</ul>
<div class="row items-start justify-between">
{{ $tags:= .Params.tags }} {{ if $tags }}
<div class="lg:col-5 mb-10 flex items-center lg:mb-0">
@ -54,33 +55,14 @@
</ul>
</div>
{{ end }}
<div class="lg:col-4 flex items-center">
{{ partial "social-share" (dict "Context" . "Class" "share-icons"
"Title" (i18n "share") "Whatsapp" false "Telegram" false "Linkedin"
false "Pinterest" false "Tumblr" false "Vk" false) }}
</div>
</div>
<!-- comments -->
{{ if site.Config.Services.Disqus.Shortname }}
<div class="mt-20">{{ template "_internal/disqus.html" . }}</div>
{{ end }}
</article>
</div>
<!-- Related posts -->
{{ $related := (where site.RegularPages "Section" "in"
site.Params.mainSections) | intersect (where site.RegularPages ".Title" "!="
.Title) | union (site.RegularPages.Related . ) }} {{ $related = $related |
shuffle | first 3 }} {{ with $related }}
<div class="section pb-0">
<h2 class="h3 mb-12">{{ i18n "related_posts" }}</h2>
<div class="row">
{{ range . }}
<div class="lg:col-4">{{ partial "components/blog-card" . }}</div>
{{ end }}
</div>
</div>
{{ end }}
</div>
</section>
{{ end }}

View file

@ -987,44 +987,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1117,44 +1117,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1244,44 +1244,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1025,33 +1025,6 @@
</div>
<div class="lg:col-4">
<div class="mb-8">
<h5 class="mb-6">Categories</h5>
<div class="bg-theme-light rounded p-8">
<ul class="space-y-4">
<li>
<a
class="hover:text-primary flex justify-between"
href="/categories/news/"
>
News <span>( 1 )</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
@ -1198,44 +1171,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -835,7 +835,35 @@
<div class="row justify-center">
<article class="lg:col-10">
<div class="mb-10">
<div class="mb-10 flex flex-wrap">
<div class="w-full lg:w-1/2 mb-4 lg:mb-0 pr-8">
<h1 class="h2 mb-4">Fediversity Project publicly announced</h1>
<ul class="mb-4">
<li class="mr-4 inline-block">
<a
href="/authors/laurens-hof/"
>
<i class="fa-regular fa-circle-user mr-2"></i>Laurens Hof
</a>
</li>
<li class="mr-4 inline-block">
<i class="fa-regular fa-clock mr-2"></i>
January 1, 2024
</li>
</ul>
<div class="content mb-10"><p>Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
<p>Odit reprehenderit earum voluptas. Quo dolor iusto voluptatem. Dignissimos ea officiis minus reprehenderit. Eligendi enim temporibus nulla voluptatem a et velit nisi. Ea quibusdam voluptas qui quaerat. Voluptas aperiam cum mollitia architecto sapiente.</p>
<p>Molestiae libero consequatur nobis delectus quae qui earum. Mollitia magni est aspernatur. Quisquam earum et maiores.</p>
<p>Id sint quod consequatur animi repudiandae ex unde error. Quo sequi quae vel ut sit animi. Esse doloribus sed quidem magnam exercitationem ut. Exercitationem aut corporis dolores fugiat. Nam velit ea aut sapiente modi et. Nisi numquam officia consequuntur odit laborum voluptatem.</p>
<p>Deleniti voluptatem accusamus voluptas perferendis non laudantium incidunt. Suscipit voluptates ut quia. Qui vel libero distinctio voluptates quo.</p>
<p>Facilis eveniet voluptatem non dolor sed dicta quisquam. Fugit tempora deserunt cupiditate voluptates adipisci qui. Voluptas asperiores saepe fuga. Blanditiis nostrum ea expedita hic.</p>
</div>
</div>
<div class="w-full lg:w-1/2">
<div>
@ -952,186 +980,24 @@
</div>
<h1 class="h2 mb-4">Fediversity Project publicly announced</h1>
<ul class="mb-4">
<li class="mr-4 inline-block">
<a
href="/authors/laurens-hof/"
>
<i class="fa-regular fa-circle-user mr-2"></i>Laurens Hof
</a>
</li>
<li class="mr-4 inline-block">
<i class="fa-regular fa-folder mr-2"></i>
<a
href="/categories/news/"
class=""
>News
</a>
</li>
<li class="mr-4 inline-block">
<i class="fa-regular fa-clock mr-2"></i>
January 1, 2024
</li>
</ul>
<div class="content mb-10"><p>Fediversity announces the start of the Fediversity project. More information will be available soon.</p>
</div>
</div>
</ul>
<div class="row items-start justify-between">
<div class="lg:col-4 flex items-center">
<div class="share-icons">
<h5 class="share-title">Share :</h5>
<a
class="share-link share-facebook"
href="https://facebook.com/sharer/sharer.php?u=%2f%2flocalhost%3a1313%2fblog%2fproject-launch%2f"
target="_blank"
rel="noopener"
aria-label="share facebook">
<span class="share-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
d="M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z" />
</svg>
</span>
</a>
<a
class="share-link share-twitter"
href="https://twitter.com/intent/tweet/?text=Share&amp;url=%2f%2flocalhost%3a1313%2fblog%2fproject-launch%2f"
target="_blank"
rel="noopener"
aria-label="share twitter">
<span aria-hidden="true" class="share-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
d="M8 2H1l8.26 11.015L1.45 22H4.1l6.388-7.349L16 22h7l-8.608-11.478L21.8 2h-2.65l-5.986 6.886zm9 18L5 4h2l12 16z"/>
</svg>
</span>
</a>
<a
class="share-link share-email"
href="mailto:?subject=Share&amp;body=%2f%2flocalhost%3a1313%2fblog%2fproject-launch%2f"
target="_self"
rel="noopener"
aria-label="share email">
<span aria-hidden="true" class="share-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
d="M22 4H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.25 14.43l-3.5 2c-.08.05-.17.07-.25.07-.17 0-.34-.1-.43-.25-.14-.24-.06-.55.18-.68l3.5-2c.24-.14.55-.06.68.18.14.24.06.55-.18.68zm4.75.07c-.1 0-.2-.03-.27-.08l-8.5-5.5c-.23-.15-.3-.46-.15-.7.15-.22.46-.3.7-.14L12 13.4l8.23-5.32c.23-.15.54-.08.7.15.14.23.07.54-.16.7l-8.5 5.5c-.08.04-.17.07-.27.07zm8.93 1.75c-.1.16-.26.25-.43.25-.08 0-.17-.02-.25-.07l-3.5-2c-.24-.13-.32-.44-.18-.68s.44-.32.68-.18l3.5 2c.24.13.32.44.18.68z" />
</svg>
</span>
</a>
<a
class="share-link share-reddit"
href="https://reddit.com/submit/?url=%2f%2flocalhost%3a1313%2fblog%2fproject-launch%2f&amp;resubmit=true&amp;title=Share"
target="_blank"
rel="noopener"
aria-label="share reddit">
<span aria-hidden="true" class="share-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path
d="M24 11.5c0-1.65-1.35-3-3-3-.96 0-1.86.48-2.42 1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05 1.52-3.7.72-.4 1.73-.24 3 .5C17.2 6.3 18.46 7.5 20 7.5c1.65 0 3-1.35 3-3s-1.35-3-3-3c-1.38 0-2.54.94-2.88 2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95 3.47-2 4.55-2.33.08-4.45.7-6.1 1.72C4.86 8.98 3.96 8.5 3 8.5c-1.65 0-3 1.35-3 3 0 1.32.84 2.44 2.05 2.84-.03.22-.05.44-.05.66 0 3.86 4.5 7 10 7s10-3.14 10-7c0-.22-.02-.44-.05-.66 1.2-.4 2.05-1.54 2.05-2.84zM2.3 13.37C1.5 13.07 1 12.35 1 11.5c0-1.1.9-2 2-2 .64 0 1.22.32 1.6.82-1.1.85-1.92 1.9-2.3 3.05zm3.7.13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9.8 4.8c-1.08.63-2.42.96-3.8.96-1.4 0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18 1.83 1.06 4.76 1.06 6.6 0 .23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82 1.6-.82 1.1 0 2 .9 2 2 0 .84-.53 1.57-1.3 1.87z" />
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="mt-20"><div id="disqus_thread"></div>
<script>
window.disqus_config = function () {
};
(function() {
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
return;
}
var d = document, s = d.createElement('script'); s.async = true;
s.src = '//' + "themefisher-template" + '.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a></div>
</article>
</div>
</div>
</section>
</main>
@ -1292,7 +1158,7 @@
rel="nofollow noopener"
href="https://fediversity.eu/rss"
>
<i class="fab fa-rss-square"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1013,44 +1013,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1161,44 +1161,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1009,44 +1009,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1047,44 +1047,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1857,9 +1857,6 @@ input#nav-toggle:checked ~ #nav-menu {
.mt-10 {
margin-top: 2.5rem;
}
.mt-11 {
margin-top: 2.75rem;
}
.mt-20 {
margin-top: 5rem;
}
@ -1872,9 +1869,6 @@ input#nav-toggle:checked ~ #nav-menu {
.mt-8 {
margin-top: 2rem;
}
.mt-9 {
margin-top: 2.25rem;
}
.block {
display: block;
}
@ -1916,6 +1910,9 @@ input#nav-toggle:checked ~ #nav-menu {
.cursor-pointer {
cursor: pointer;
}
.flex-wrap {
flex-wrap: wrap;
}
.items-start {
align-items: flex-start;
}
@ -1944,12 +1941,6 @@ input#nav-toggle:checked ~ #nav-menu {
.rounded-2xl {
border-radius: 1rem;
}
.rounded-full {
border-radius: 9999px;
}
.rounded-lg {
border-radius: 0.5rem;
}
.border-b {
border-bottom-width: 1px;
}
@ -2000,10 +1991,6 @@ input#nav-toggle:checked ~ #nav-menu {
padding-left: 1rem;
padding-right: 1rem;
}
.px-7 {
padding-left: 1.75rem;
padding-right: 1.75rem;
}
.px-8 {
padding-left: 2rem;
padding-right: 2rem;
@ -2046,6 +2033,9 @@ input#nav-toggle:checked ~ #nav-menu {
.pr-5 {
padding-right: 1.25rem;
}
.pr-8 {
padding-right: 2rem;
}
.pt-14 {
padding-top: 3.5rem;
}
@ -2055,9 +2045,6 @@ input#nav-toggle:checked ~ #nav-menu {
.text-center {
text-align: center;
}
.font-primary {
font-family: Heebo, sans-serif;
}
.text-\[12px\] {
font-size: 12px;
}
@ -2078,9 +2065,6 @@ input#nav-toggle:checked ~ #nav-menu {
.font-bold {
font-weight: 700;
}
.font-semibold {
font-weight: 600;
}
.uppercase {
text-transform: uppercase;
}
@ -2125,9 +2109,6 @@ input#nav-toggle:checked ~ #nav-menu {
.rounded {
border-radius: 6px;
}
.rounded-lg {
border-radius: 12px;
}
.search-wrapper {
position: relative;
@ -3129,14 +3110,6 @@ input#nav-toggle:checked ~ #nav-menu {
}
}
@media (min-width: 1280px) {
.xl\:col-6 {
flex: 0 0 auto;
width: 50%;
}
}
.hover\:text-primary:hover {
--tw-text-opacity: 1;
color: rgb(255 110 0 / var(--tw-text-opacity));
@ -3216,6 +3189,10 @@ input#nav-toggle:checked ~ #nav-menu {
display: none;
}
.lg\:w-1\/2 {
width: 50%;
}
.lg\:w-auto {
width: auto;
}

View file

@ -1013,44 +1013,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1011,44 +1011,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1051,44 +1051,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1012,44 +1012,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1016,44 +1016,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1011,44 +1011,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1011,44 +1011,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1016,44 +1016,22 @@ In order to realise our vision, we need a healthy, functional and open internet.
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1068,44 +1068,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -9,4 +9,4 @@
"searchKeyword": "",
"categories": "News",
"tags": "",
"content":"Fediversity announces the start of the Fediversity project. More information will be available soon.\n"}]
"content":"Fediversity announces the start of the Fediversity project. More information will be available soon.\nOdit reprehenderit earum voluptas. Quo dolor iusto voluptatem. Dignissimos ea officiis minus reprehenderit. Eligendi enim temporibus nulla voluptatem a et velit nisi. Ea quibusdam voluptas qui quaerat. Voluptas aperiam cum mollitia architecto sapiente.\nMolestiae libero consequatur nobis delectus quae qui earum. Mollitia magni est aspernatur. Quisquam earum et maiores.\nId sint quod consequatur animi repudiandae ex unde error. Quo sequi quae vel ut sit animi. Esse doloribus sed quidem magnam exercitationem ut. Exercitationem aut corporis dolores fugiat. Nam velit ea aut sapiente modi et. Nisi numquam officia consequuntur odit laborum voluptatem.\nDeleniti voluptatem accusamus voluptas perferendis non laudantium incidunt. Suscipit voluptates ut quia. Qui vel libero distinctio voluptates quo.\nFacilis eveniet voluptatem non dolor sed dicta quisquam. Fugit tempora deserunt cupiditate voluptates adipisci qui. Voluptas asperiores saepe fuga. Blanditiis nostrum ea expedita hic.\n"}]

View file

@ -1014,44 +1014,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1002,44 +1002,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1010,44 +1010,22 @@
<li>
<a
target="_blank"
aria-label="facebook"
aria-label="mastodon"
rel="nofollow noopener"
href="https://www.facebook.com/"
href="https://mastodon.fediversity.eu/@fediversity"
>
<i class="fab fa-facebook"></i>
<i class="fab fa-mastodon"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="twitter"
aria-label="rss"
rel="nofollow noopener"
href="https://twitter.com/"
href="https://fediversity.eu/rss"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="github"
rel="nofollow noopener"
href="https://www.github.com/"
>
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a
target="_blank"
aria-label="linkedin"
rel="nofollow noopener"
href="https://www.linkedin.com/"
>
<i class="fab fa-linkedin"></i>
<i class="fab fa-rss"></i>
</a>
</li>

View file

@ -1857,9 +1857,6 @@ input#nav-toggle:checked ~ #nav-menu {
.mt-10 {
margin-top: 2.5rem;
}
.mt-11 {
margin-top: 2.75rem;
}
.mt-20 {
margin-top: 5rem;
}
@ -1872,9 +1869,6 @@ input#nav-toggle:checked ~ #nav-menu {
.mt-8 {
margin-top: 2rem;
}
.mt-9 {
margin-top: 2.25rem;
}
.block {
display: block;
}
@ -1916,6 +1910,9 @@ input#nav-toggle:checked ~ #nav-menu {
.cursor-pointer {
cursor: pointer;
}
.flex-wrap {
flex-wrap: wrap;
}
.items-start {
align-items: flex-start;
}
@ -1944,12 +1941,6 @@ input#nav-toggle:checked ~ #nav-menu {
.rounded-2xl {
border-radius: 1rem;
}
.rounded-full {
border-radius: 9999px;
}
.rounded-lg {
border-radius: 0.5rem;
}
.border-b {
border-bottom-width: 1px;
}
@ -2000,10 +1991,6 @@ input#nav-toggle:checked ~ #nav-menu {
padding-left: 1rem;
padding-right: 1rem;
}
.px-7 {
padding-left: 1.75rem;
padding-right: 1.75rem;
}
.px-8 {
padding-left: 2rem;
padding-right: 2rem;
@ -2046,6 +2033,9 @@ input#nav-toggle:checked ~ #nav-menu {
.pr-5 {
padding-right: 1.25rem;
}
.pr-8 {
padding-right: 2rem;
}
.pt-14 {
padding-top: 3.5rem;
}
@ -2055,9 +2045,6 @@ input#nav-toggle:checked ~ #nav-menu {
.text-center {
text-align: center;
}
.font-primary {
font-family: Heebo, sans-serif;
}
.text-\[12px\] {
font-size: 12px;
}
@ -2078,9 +2065,6 @@ input#nav-toggle:checked ~ #nav-menu {
.font-bold {
font-weight: 700;
}
.font-semibold {
font-weight: 600;
}
.uppercase {
text-transform: uppercase;
}
@ -2125,9 +2109,6 @@ input#nav-toggle:checked ~ #nav-menu {
.rounded {
border-radius: 6px;
}
.rounded-lg {
border-radius: 12px;
}
.search-wrapper {
position: relative;
@ -3129,14 +3110,6 @@ input#nav-toggle:checked ~ #nav-menu {
}
}
@media (min-width: 1280px) {
.xl\:col-6 {
flex: 0 0 auto;
width: 50%;
}
}
.hover\:text-primary:hover {
--tw-text-opacity: 1;
color: rgb(255 110 0 / var(--tw-text-opacity));
@ -3216,6 +3189,10 @@ input#nav-toggle:checked ~ #nav-menu {
display: none;
}
.lg\:w-1\/2 {
width: 50%;
}
.lg\:w-auto {
width: auto;
}