schedule mock
ci/woodpecker/push/woodpecker Pipeline failed Podrobnosti

This commit is contained in:
Adam Sobotka 2022-10-27 14:16:58 +02:00
rodič 479011b8a8
revize 3a3571aacf
2 změnil soubory, kde provedl 73 přidání a 8 odebrání

Zobrazit soubor

@ -11,16 +11,16 @@
return c;
}
onMount(async () => {
if (dev) return;
const result = await graphdata('json');
if (result) data.contributors = result.contributors;
//console.log(data.contributors);
});
//disabling data reload because of random
// onMount(async () => {
// if (dev) return;
// const result = await graphdata('json');
// if (result) data.contributors = result.contributors;
// });
$: filteredContributors = data.contributors
.filter((c) => data.type === 'all' || c.roles.includes(data.typeConfig.role))
.sort((a, b) => 0.5 - (prng/10))
.sort((a, b) => 0.5 - Math.random())
.map(wrapContributor);
</script>

Zobrazit soubor

@ -24,7 +24,9 @@
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">3pm-4pm</span>
<a href="/venues/png" class="mt-1 text-white text-sm mb-1 hover:underline">🞋 Atrium</a>
<span class="mt-1 text-gray-500 text-sm">WORKSHOP</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">
@ -32,9 +34,72 @@
</h2>
<p class="leading-relaxed">
This web is super hard to take down. We doubt that any government would try, despite our
growing popularity, but even if they do, they will fail. Learn why, what option you have
growing popularity. But even if they do, they will fail. Learn why, what option you have
and build a similar web with Adam.
</p>
<div class="col-start-2 row-start-1 row-end-3 mt-4 lg:mt-0 xl:mt-4">
<dt class="sr-only">Users</dt>
<dd
class="flex justify-start -space-x-1.5"
>
<img
src="/photos/contributors/adam.jpg"
alt="Adam"
class="w-6 h-6 rounded-full bg-slate-100 ring-2 ring-white grayscale"
loading="lazy"
/>
<img
src="/photos/contributors/anett.jpg"
alt="Adam"
class="w-6 h-6 rounded-full bg-slate-100 ring-2 ring-white grayscale"
loading="lazy"
/>
<p class="pl-6">
<a href="/contributors">Adam Sobotka</a> +
<a href="/contributors">Anett Rolikova</a>
</p>
</dd>
</div>
</div>
</div><div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">3pm-4pm</span>
<a href="/venues/png" class="mt-1 text-white text-sm mb-1 hover:underline">🞋 Atrium</a>
<span class="mt-1 text-gray-500 text-sm">WORKSHOP</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">
How to build censorship resistant web
</h2>
<p class="leading-relaxed">
This web is super hard to take down. We doubt that any government would try, despite our
growing popularity. But even if they do, they will fail. Learn why, what option you have
and build a similar web with Adam.
</p>
<div class="col-start-2 row-start-1 row-end-3 mt-4 lg:mt-0 xl:mt-4">
<dt class="sr-only">Users</dt>
<dd
class="flex justify-start -space-x-1.5"
>
<img
src="/photos/contributors/adam.jpg"
alt="Adam"
class="w-6 h-6 rounded-full bg-slate-100 ring-2 ring-white grayscale"
loading="lazy"
/>
<img
src="/photos/contributors/anett.jpg"
alt="Adam"
class="w-6 h-6 rounded-full bg-slate-100 ring-2 ring-white grayscale"
loading="lazy"
/>
<p class="pl-6">
<a href="/contributors">Adam Sobotka</a> +
<a href="/contributors">Anett Rolikova</a>
</p>
</dd>
</div>
</div>
</div>
</div>