-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
executable file
·145 lines (137 loc) · 4.88 KB
/
about.php
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
# Formazione MIUR content management system
# Copyright (C) 2015, 2016, 2017 Valerio Bozzolan
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License,
# or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
require 'load.php';
Header::spawn( 'about' );
?>
<div class="card-panel hoverable">
<div class="row valign-wrapper">
<div class="col s11 m9">
<p class="flow-text"><?php _e("Piattaforma realizzata a cura dell'ITIS Avogadro di Torino.") ?></p>
<p><?php echo HTML::a(
'http://www.itisavogadro.it',
_("ITIS Avogadro di Torino"),
_("ITIS Amedeo Avogadro di Torino"),
'btn'
) ?></p>
</div>
<div class="s1 m3">
<img src="<?php echo IMAGE_URL . '/logo-avogadro.png' ?>" alt="Logo Avogadro" class="responsive-img" style="max-width:100px" />
</div>
</div>
</div>
<h2><?php _e("Task force") ?></h2>
<div class="row">
<div class="col s12 m6">
<div class="card hoverable">
<div class="card-content">
<div class="row valign-wrapper">
<div class="col s2">
<img src="<?php echo get_gravatar('gmail.com') ?>" alt="Leonardo Filippone" class="circle responsive-img" />
</div>
<div class="col s10">
<b>Leonardo Filippone</b><br />Supervisor.
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card hoverable">
<div class="card-content">
<div class="row valign-wrapper">
<div class="col s2">
<img src="<?php echo URL . '/content/images/ulisse-fabiani.png' ?>" alt="Ulisse Fabiani" class="circle responsive-img" />
</div>
<div class="col s10">
<b>Ulisse Fabiani</b><br />Lui.
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card hoverable">
<div class="card-content">
<div class="row valign-wrapper">
<div class="col s2">
<img src="<?php echo get_gravatar('[email protected]') ?>" alt="Ivan Bertotto" class="circle responsive-img" />
</div>
<div class="col s10">
<b>Ivan Bertotto</b><br />Joomla! Senior. Now tagliato fuori / inchiappettato.
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card hoverable">
<div class="card-content">
<div class="row valign-wrapper">
<div class="col s2">
<img src="<?php echo get_gravatar('[email protected]') ?>" alt="Valerio Bozzolan" class="circle responsive-img" />
</div>
<div class="col s10">
<b><a href="https://boz.reyboz.it">Valerio Bozzolan</a></b><br />Fa ancora cose, ma sarà inchiappettato come Ivan.
</div>
</div>
</div>
</div>
</div>
</div>
<h2>Software libero</h2>
<div class="card-panel">
<p class="flow-text">Per il totale rispetto della tua privacy questo sito è stato realizzato utilizzando esclusivamente <strong>software libero</strong>:</p>
<ul class="collection">
<li class="collection-item">
Framework lato-server:<br />
<a class="red-text" href="https://launchpad.net/boz-php-another-php-framework" title="Boz-PHP">Boz-PHP</a> <small>(Another PHP framework)</small> di <a href="https://boz.reyboz.it" title="Get in touch with Valerio Bozzolan">Valerio Bozzolan</a>.<br />
<small>Licenza GNU AGPL</small>
</li>
<li class="collection-item">
<a class="red-text" href="http://jquery.com">jQuery</a> + <a class="red-text" href="https://jqueryui.com/">jQuery UI</a><br />
<small>Licenza MIT</small>
</li>
<li class="collection-item">
Tema del sito:<br />
<a class="red-text" href="http://materializecss.com" title="Materialize">Materialize</a><br />
<small>Licenza MIT</small>
</li>
</ul>
<p>Stack di sistema:</p>
<ul class="collection">
<li class="collection-item">
<a class="red-text" href="https://www.debian.org" title="Debian">Debian GNU/Linux</a><br />
<small>Licenza GNU GPL</small>
</li>
<li class="collection-item">
<a class="red-text" href="http://apache.org" title="Apache HTTP server">Apache</a><br />
<small>Licenza Apache</small>
</li>
<li class="collection-item">
<a class="red-text" href="http://php.net" title="PHP">PHP</a><br />
<small>Licenza PHP</small>
</li>
<li class="collection-item">
<a class="red-text" href="http://www.mysql.it" title="MySQL - DBMS">MySQL</a><br />
<small>Licenza GNU GPL</small>
</li>
</ul>
</div>
<h2></h2>
<?php
BackendNav::spawn();
Footer::spawn();