Browse Source

Established icons for Rule templates

Nathan Schneider 5 years ago
parent
commit
abbfd1178a

+ 3 - 3
_layouts/rule.html

@@ -143,7 +143,7 @@ layout: default
       if (displayMode == false) {
           editMode = true;
           toggleEditMode(); // turns off editMode
-          classDisplayAll("site-header","none");
+          classDisplayAll("site-nav","none");
           classDisplayAll("post-header","none");
           classDisplayAll("explanatory","none");
           classDisplayAll("site-footer","none");
@@ -151,7 +151,7 @@ layout: default
           displayMode = true;
       } else {
           toggleEditMode() // turns on editMode
-          classDisplayAll("site-header","block");
+          classDisplayAll("site-nav","block");
           classDisplayAll("post-header","block");
           classDisplayAll("explanatory","block");
           classDisplayAll("site-footer","block");
@@ -233,7 +233,7 @@ layout: default
   </div><!--hiding section s2-->
   
   <h2 id="policies">
-    <img src="{% link assets/tabler_icons/clipboard-list.svg %}"
+    <img src="{% link assets/tabler_icons/news.svg %}"
          class="icons" />
     Policies
     <button onclick="toggleVisible('s3')" class="button"> + </button>

+ 1 - 0
_rules/benevolent_dictator.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Benevolent dictator
 permalink: /rules/benevolent-dictator/
+icon: /assets/tabler_icons/eye.svg
 
 community-name: 
 mission:

+ 1 - 0
_rules/circles.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Circles
 permalink: /rules/circles/
+icon: /assets/tabler_icons/circle.svg
 
 community-name: 
 structure: Activities are carried out through individual Roles and small groups called Circles, which have the ability to decide and act on matters in their domain. Representatives of Circles meet in a Council to coordinate efforts and determine the domains of each Circle.

+ 1 - 0
_rules/do-ocracy.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Do-ocracy
 permalink: /rules/do-ocracy/
+icon: /assets/tabler_icons/lock-open.svg
 
 community-name: 
 structure: Those who take initiative to do work for the community can decide how they do that work. If any community members object, they can start a proposal to halt what someone is doing.

+ 1 - 0
_rules/elected_board.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Elected board
 permalink: /rules/elected-board/
+icon: /assets/tabler_icons/user-check.svg
 
 name:
 mission:

+ 1 - 0
_rules/jury.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Jury
 permalink: /rules/jury/
+icon: /assets/tabler_icons/friends.svg
 
 community-name: 
 mission: 

+ 1 - 0
_rules/petition.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Petition
 permalink: /rules/petition/
+icon: /assets/tabler_icons/clipboard-list.svg
 
 community-name: 
 mission:

+ 1 - 0
_rules/self-appointed_board.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Self-appointed board
 permalink: /rules/self-appointed-board/
+icon: /assets/tabler_icons/user-plus.svg
 
 name:
 mission:

+ 1 - 0
_rules/trias_politica.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Trias politica
 permalink: /rules/trias-politica/
+icon: /assets/tabler_icons/dots.svg
 
 community-name: 
 mission: 

+ 1 - 0
create.md

@@ -2,6 +2,7 @@
 layout: rule
 title: Create
 permalink: /create/
+icon: 
 
 community-name: 
 structure: 

+ 5 - 2
rules.md

@@ -7,6 +7,9 @@ permalink: /rules/
 Browse the collection of Rule templates.
 
 {% for rule in site.rules %}
-<p><strong><a href="{{ site.baseurl }}{{ rule.url }}">{{ rule.title }}</a></strong><br />
-{{ rule.structure }}</p>
+<h2>
+    <img src="{{ site.baseurl }}{{ rule.icon }}" />
+    <a href="{{ site.baseurl }}{{ rule.url }}">{{ rule.title }}</a>
+</h2>
+<p>{{ rule.structure }}</p>
 {% endfor %}