-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
24 lines (22 loc) · 973 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: page
title: MidPoint Exercises
nav-title: Exercises
permalink: /midpoint/exercises/
---
<p>
This is a list of exercises for midPoint configuration. It may be used to improve your configuration skills as a follow-up to <a href="/book/">midPoint Book</a>. It may also be used to self-evaluate your midPoint configuration skills.
</p>
<table class="table">
<thead>
<tr><th scope="col">No.</th><th scope="col">Exercise</th><th scope="col">Difficulty</th><th scope="col">Synopsis</th><th scope="col">Training</th></tr>
</thead>
<tbody>
{% assign epages = site.pages | sort: "number" %}
{% for epage in epages %}
{% if epage.layout == 'exercise' and epage.visibility != 'hidden' %}
<tr><td>{{epage.number}}</td><td><a href="{{epage.url}}">{{epage.title}}</td><td>{{epage.difficulty}}</td><td>{{epage.synopsis}}</td><td>{{epage.trainingref | join: ", " | escape}}</td></tr>
{% endif %}
{% endfor %}
</tbody>
<table>