Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Työryhmät näkyviin #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ social:
markdown: kramdown
permalink: pretty

collections:
- tyoryhmat

9 changes: 9 additions & 0 deletions _tyoryhmat/bazaar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Bazaar
active: no
begin: Q1/2014
end: Q4/2014
---

[Sampo Software](http://samposoftware.com/) työsti ensimmäisen version Bazaar-palvelusta.

11 changes: 11 additions & 0 deletions _tyoryhmat/demola_2014_interfalizer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: "Demola: Interfacelizer"
more_info:
url: http://tampere.demola.net/projects/educloud-bazaar-user-interfacelizer
title: Project info
active: no
---

Tampereen Demolassa oli vuonna 2015 tiimi tehtävänannolla:

The aim is to design and implement user interfaces for upper secondary education and higher education in EduCloud Bazaar.
17 changes: 17 additions & 0 deletions _tyoryhmat/mpass.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: MPASS
begin: Q1/2015
more_info:
url: http://www.mpass.fi/roadmap/
title: Roadmap
active: yes
---

PASS-tunnistamisratkaisu toteuttaa ECA Auth-tunnistamisrajapinnan, joka on osaratkaisu
digitaalisten oppimisympäristöjen laajempaan käyttöön.

Kehitys on tehty avoimen lähdekoodin
periaatteella opetus- ja kulttuuriministeriön (OKM) ohjauksessa TUIMA-projektissa
valtiovarainministeriön rahoituksella.
Pääasiallinen toteuttaja on ollut CSC – Tieteen tietotekniikan keskus.

10 changes: 10 additions & 0 deletions _tyoryhmat/roledb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: RoleDB
active: no
begin: Q1/2014
end: Q4/2014
---

[Haltu](http://haltu.fi) työsti roolitietokantana tunnetun palvelun.


51 changes: 50 additions & 1 deletion tyoryhmat.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
title: Työryhmät
---

<section id="foo" class="container content-section">
<section class="container content-section">
<div class="row">
<div class="col-lg-8">

Expand Down Expand Up @@ -82,3 +82,52 @@
</div>
</section>


<section class="container content-section">
<div class="row">
<div class="col-lg-12">
<h1>Käynnissä olevat työryhmät</h1>
</div>
</div>

{% for p in site.tyoryhmat %}{% if p.active != false %}
<div class="row">
<div class="col-lg-4">
<h2>{{ p.title }}</h2>
<p>{{ p.begin }} - {{ p.end }}</p>
{% if p.more_info %}<p><a href="{{ p.more_info.url }}">{{ p.more_info.title }}</a></p>{% endif %}
</div>

<div class="col-lg-8">
{{ p.output }}
</div>

</div>
<hr />
{% endif %}{% endfor %}
</section>

<section class="container content-section">
<div class="row">
<div class="col-lg-12">
<h1>Työnsä lopettaneet työryhmät</h1>
</div>
</div>

{% for p in site.tyoryhmat %}{% if p.active == false %}
<div class="row">
<div class="col-lg-4">
<h2>{{ p.title }}</h2>
<p>{{ p.begin }} - {{ p.end }}</p>
{% if p.more_info %}<p><a href="{{ p.more_info.url }}">{{ p.more_info.title }}</a></p>{% endif %}
</div>

<div class="col-lg-8">
{{ p.output }}
</div>

</div>
<hr />
{% endif %}{% endfor %}
</section>