Add priority to projects page

This commit is contained in:
Robbe Van Herck 2019-10-08 01:43:36 +02:00
parent a969da0f0f
commit 166c150f5b
No known key found for this signature in database
GPG key ID: A66F76F7B81BD784
15 changed files with 20 additions and 5 deletions

View file

@ -3,5 +3,6 @@ title: 12urenloop
github: https://github.com/ZeusWPI/12urenloop
site: https://12urenloop.be/
logo_image: 12urenloop.png
priority: 50
---
Application to count laps based on bluetooth dongle detection. [http://12urenloop.be](http://12urenloop.be)

View file

@ -3,6 +3,7 @@ title: Blokmap
github: https://github.com/ZeusWPI/blokmap
site: http://blok.ugent.be/
logo_image: Logos_Blokmap.svg
priority: 25
---
Een collectie bloklocaties die jou helpt een plaats te vinden om te blokken tijdens de examens.

View file

@ -4,6 +4,7 @@ github: https://github.com/ZeusWPI/FK-enrolment
site: https://registratie.fkgent.be/
logo_letter: E
logo_color: "#FFBBDD"
priority: 5
---
Enrolment system for new members of FK-clubs at Ghent University.

View file

@ -3,5 +3,6 @@ title: Gamification
github: https://github.com/ZeusWPI/Gamification
site: https://zeus.ugent.be/game
logo_image: Logos_Gamification.svg
priority: 30
---
Gamification of Zeus member engagement. Get points for coding! View the [scoreboard](https://zeus.ugent.be/game).

View file

@ -3,6 +3,7 @@ title: Gandalf
github: https://github.com/ZeusWPI/Gandalf
site: https://event.fkgent.be/
logo_image: Logos_Gandalf.svg
priority: 5
---
You Shall Not Pass - An advanced e-ticket system for student clubs - [http://event.fkgent.be](http://event.fkgent.be)

View file

@ -3,6 +3,7 @@ title: Haldis
github: https://github.com/ZeusWPI/Haldis
site: https://zeus.ugent.be/haldis
logo_image: Logos_Haldis.svg
priority: 35
---
Haldis is your friendly neighbourhood servant. He exists so lazy fucks like you and me don't need to keep tabs of who is ordering what from where. Start an order and let people add items with a simple mouse-click! No more calculating prices and making lists! Be lazier today! [http://zeus.ugent.be/haldis](http://zeus.ugent.be/haldis)

View file

@ -4,6 +4,7 @@ github: https://github.com/ZeusWPI/Lana
site: https://github.com/ZeusWPI/Lana
logo_letter: L
logo_color: "#E4C6A7"
priority: 20
---
🐕 LAN-Party Assistant. An application to make the life of a LAN-partygoer easier!

View file

@ -3,5 +3,6 @@ title: Mozaic
github: https://github.com/ZeusWPI/mozaic
site: https://github.com/ZeusWPI/mozaic
logo_image: mozaic.png
priority: 41
---
MOZAIC is the Massive Online Zeus Artificial Intelligence Competition platform. It aims to provide a flexible platform to host your very own AI competition.

View file

@ -4,6 +4,7 @@ github: https://github.com/ZeusWPI/Saruman
site: https://materiaal.12urenloop.be/
logo_letter: S
logo_color: grey
priority: 5
---
Saruman is a material management tool where partners can reserve stuff.

View file

@ -4,5 +4,6 @@ github: https://github.com/ZeusWPI/zeus.ugent.be
site: https://zeus.ugent.be
logo_letter: Z
logo_color: "#FF7F00"
priority: 40
---
Even this site is a Zeus project!

View file

@ -3,6 +3,9 @@ title: SlotMachien
github: https://github.com/ZeusWPI/slotmachien
site: https://github.com/ZeusWPI/slotmachien
logo_image: Logos_Slotmachien.svg
priority: -1
---
This repository contains all applications related to SlotMachien; a Lego MindStorms robot designed to turn a specific lock.
Now replaced by Doorkeeper

View file

@ -1,8 +1,8 @@
---
title: SlotmachIIn
github: https://github.com/ZeusWPI/SlotMachIIn
site: https://github.com/ZeusWPI/SlotMachIIn
title: Doorkeeper
github: https://github.com/ZeusWPI/Doorkeeper
site: https://github.com/ZeusWPI/Doorkeeper
logo_image: Logos_Slotmachiin.svg
---
Slotmachien is dead. Long live SlotmachIIn!
Slotmachien is dead. Long live Doorkeeper!

View file

@ -3,6 +3,7 @@ title: Tab
github: https://github.com/ZeusWPI/Tab
site: https://zeus.ugent.be/tab/
logo_image: Logos_Tab.svg
priority: 40
---
💰 Yes. We have to drink. But we also have to pay. This does the paying part. [https://zeus.ugent.be/tab](https://zeus.ugent.be/tab)

View file

@ -3,6 +3,7 @@ title: Tap
github: https://github.com/ZeusWPI/Tap
site: https://zeus.ugent.be/tap/
logo_image: Logos_Tap.svg
priority: 40
---
💰 Yes. We have to drink. But we also have to pay. This does the drinking part. [https://zeus.ugent.be/tap](https://zeus.ugent.be/tap)

View file

@ -1,5 +1,5 @@
module ProjectsHelper
def all_projects
@items.find_all('/projects/*')
@items.find_all('/projects/*').sort_by{|project| -(project[:priority] || 0)}
end
end