-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiscitur.html
More file actions
131 lines (113 loc) · 4.94 KB
/
Discitur.html
File metadata and controls
131 lines (113 loc) · 4.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
---
title: Discitur
tagline: Project Backstage
header: Discitur
group: navigation
---
<div class="row">
<div class="col-md-6">
<h2><img src="http://icons.iconarchive.com/icons/custom-icon-design/flag-2/32/Italy-Flag-icon.png"></img> Abstract</h2>
<div class="col-md-12">
Discitur è un'<b>applicazione web rivolta ai docenti</b> con l'obiettivo di essere una piattaforma di condivisione delle buone e cattive pratiche di insegnamento,
analizzandone i pro ed i contro, in modo da poterle riutilizzare e perfezionare con l’applicazione da parte di molti docenti.
Oltre a questo, è una <b>palestra di apprendimento</b> per la realizzazione di <a href="http://en.wikipedia.org/wiki/Single-page_application" target="_blank">Single Page Application</a>
con <a href="http://angularjs.org/" target="_blank">Angular.js</a> e di <a href="http://en.wikipedia.org/wiki/Agile_software_development" target="_blank">tecniche Agili di sviluppo software</a>.
</div>
</div>
<div class="col-md-6">
<h2><img src="http://icons.iconarchive.com/icons/custom-icon-design/flag-3/32/United-Kingdom-flag-icon.png"></img> Abstract</h2>
<div class="col-md-12">
Discitur is a <b>web application for teachers</b> that aimed to be a platform for sharing good and bad teaching practices, for analyzing pros and cons,
in order to improve them, thanks to the usage by a lot of teachers in real life.<br/>
Besides that, it's a <b>learning gym</b> for <a href="http://en.wikipedia.org/wiki/Single-page_application" target="_blank">Single Page Application</a> development with
<a href="http://angularjs.org/" target="_blank">Angular.js</a> and for <a href="http://en.wikipedia.org/wiki/Agile_software_development" target="_blank">Agile software development</a> tecniques.
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2><a href="http://www.disciturweb.com/" target="blank">Applicazione Online</a></h2>
<a href="/discitur/" target="blank">Ambiente di test</a>.
</div>
<div class="col-md-6">
<h2><a href="http://www.disciturweb.com/" target="blank">Live Application</a></h2>
<a href="/discitur/" target="blank">Test Environment</a>.
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2>Contenuti</h2>
{% assign myArray = finalSummary | split: "|" | sort %}
<ul style="list-style-type: none;">
{% for node in myArray %}
{% assign summaryLine = node | split: "," | sort %}
{% for prop in summaryLine %}
{% assign keyval = prop | split: ":" %}
{% if keyval[0] == 'title' %}
{% assign title = keyval[1] %}
{% endif %}
{% if keyval[0] == 'url' %}
{% assign url = keyval[1] %}
{% endif %}
{% endfor %}
{% if page.url == url %}
<li class="active"><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% else %}
<li><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="col-md-6">
<h2>Contents</h2>
{% assign myArray = finalSummary | split: "|" | sort %}
<ul style="list-style-type: none;">
{% for node in myArray %}
{% assign summaryLine = node | split: "," | sort %}
{% for prop in summaryLine %}
{% assign keyval = prop | split: ":" %}
{% if keyval[0] == 'title' %}
{% assign title = keyval[1] %}
{% endif %}
{% if keyval[0] == 'url' %}
{% assign url = keyval[1] %}
{% endif %}
{% endfor %}
{% if page.url == url %}
<li class="active"><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% else %}
<li><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<h2>Technologies</h2>
<ul>
<li>UI: <a href="http://getbootstrap.com/" target="_blank">Bootstrap 3.0.3</a></li>
<li>Front-end: <a href="http://angularjs.org/" target="_blank">Angular.js 1.2.14</a></li>
<li>Back-end: <a href="http://www.asp.net/vnext/overview/aspnet-web-api" target="_blank">.NET Web Api 2.0</a> e <a href="http://msdn.microsoft.com/en-us/data/ee712907.aspx" target="_blank">Entity Framework 6</a></li>
<li>Database: SQL Server 2012</li>
<li>VCS: <a href="http://git-scm.com/" target="_blank">Git</a></li>
</ul>
<h2>Repositories</h2>
<ul>
<li><del><a href="https://github.com/williamverdolini/discitur-web" target="_blank">Front-End Code</a></del> (Obsolete)</li>
<li><del><a href="https://github.com/williamverdolini/discitur-api" target="_blank">Back-End Code</a></del> (Obsolete)</li>
<li><a href="https://github.com/williamverdolini/disciturCQRSES" target="_blank">Discitur CQRS+ES</a></li>
</ul>
<div class="row">
<div class="col-md-12">
<h2>Period</h2>
<div class="col-md-12">
January 2014 - November 2014
</div>
</div>
</div>
{% comment %}
<ul>
{% assign pages_list = site.pages %}
</ul>
Discitur<br>
<p>{{pages_list}}</p>
{% endcomment %}