From 109b0cee61d38b14f0f3b1294510371c078655a3 Mon Sep 17 00:00:00 2001 From: Vilnite Date: Thu, 26 Nov 2020 12:06:04 +0200 Subject: [PATCH 1/2] About page small update --- src/pages/About.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/pages/About.vue b/src/pages/About.vue index c7ce26ecd..a54ed5a75 100644 --- a/src/pages/About.vue +++ b/src/pages/About.vue @@ -56,21 +56,21 @@ created. Below are the three pillars that ThreeFold is built on:

-

EQUALITY

+
EQUALITY

Equality is the foundation for a fair world where everyone is given the opportunity to be empowered and to achieve their full potential.

-

AUTONOMY

+
AUTONOMY

Being empowered to learn, partake, dream and succeed is fundamental to achieve peace and fulfillment of humankind's potential

-

SUSTAINABILITY

+
SUSTAINABILITY

Sustainability ensures the future of life on earth. It is about adopting the behavior and mindset to minimize our footprint. @@ -148,6 +148,12 @@

+
+
+
+
+
+
From c27cf70f7aaeaef2be58b9ccacd81284a443e3b2 Mon Sep 17 00:00:00 2001 From: hamdy Date: Thu, 26 Nov 2020 13:13:24 +0200 Subject: [PATCH 2/2] people page - redo --- src/components/Group.vue | 54 ++++++++++++++++++++++++++++++++++++++++ src/templates/People.vue | 52 +++++++++++++++++++++++++++++++++++--- 2 files changed, 102 insertions(+), 4 deletions(-) create mode 100644 src/components/Group.vue diff --git a/src/components/Group.vue b/src/components/Group.vue new file mode 100644 index 000000000..66e9b7f5e --- /dev/null +++ b/src/components/Group.vue @@ -0,0 +1,54 @@ + + + \ No newline at end of file diff --git a/src/templates/People.vue b/src/templates/People.vue index 3a16e31e1..1fa864dd3 100644 --- a/src/templates/People.vue +++ b/src/templates/People.vue @@ -2,14 +2,13 @@
- +
- query ($private: Int){ entries: allPerson (sortBy: "rank", order: DESC, filter: { private: { ne: $private }}){ totalCount @@ -35,23 +34,68 @@ query ($private: Int){ } } } + + memberships: allMembership{ + edges{ + node{ + id + title + path + } + } + } }