Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
Nuovo sito
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Web
Nuovo sito
Commits
1e6cc20c
Commit
1e6cc20c
authored
Dec 10, 2015
by
Pietro Albini
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'addFirstLevelMenu'
parents
a174e51e
8fb08ab2
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
259 additions
and
0 deletions
+259
-0
.gitignore
.gitignore
+1
-0
uitwww/navbar.json
uitwww/navbar.json
+30
-0
uitwww/templates/pages/comunita/index.html
uitwww/templates/pages/comunita/index.html
+38
-0
uitwww/templates/pages/contatti/index.html
uitwww/templates/pages/contatti/index.html
+38
-0
uitwww/templates/pages/contribuisci/index.html
uitwww/templates/pages/contribuisci/index.html
+38
-0
uitwww/templates/pages/eventi/index.html
uitwww/templates/pages/eventi/index.html
+38
-0
uitwww/templates/pages/progetto/index.html
uitwww/templates/pages/progetto/index.html
+38
-0
uitwww/templates/pages/scopri-ubuntu/index.html
uitwww/templates/pages/scopri-ubuntu/index.html
+38
-0
No files found.
.gitignore
View file @
1e6cc20c
...
...
@@ -2,6 +2,7 @@
/uitwww.egg-info
/build
/node_modules
/dist
# Python stuff
__pycache__
...
...
uitwww/navbar.json
View file @
1e6cc20c
...
...
@@ -9,6 +9,11 @@
}
]
},
{
"name"
:
"Scopri Ubuntu"
,
"endpoint"
:
"pages.scopri-ubuntu_index"
,
"subs"
:
[]
},
{
"name"
:
"Supporto"
,
"endpoint"
:
"pages.supporto"
,
...
...
@@ -30,5 +35,30 @@
"external"
:
"http://chat.ubuntu-it.org"
}
]
},
{
"name"
:
"Comunità"
,
"endpoint"
:
"pages.comunita_index"
,
"subs"
:
[]
},
{
"name"
:
"Eventi"
,
"endpoint"
:
"pages.eventi_index"
,
"subs"
:
[]
},
{
"name"
:
"Contribuisci"
,
"endpoint"
:
"pages.contribuisci_index"
,
"subs"
:
[]
},
{
"name"
:
"Progetto"
,
"endpoint"
:
"pages.progetto_index"
,
"subs"
:
[]
},
{
"name"
:
"Contatti"
,
"endpoint"
:
"pages.contatti_index"
,
"subs"
:
[]
}
]
uitwww/templates/pages/comunita/index.html
0 → 100644
View file @
1e6cc20c
{# Source code of the Ubuntu-it website
# Copyright (C) 2015 Pietro Albini
<pietroalbini
@
ubuntu
.
com
>
# 2015 Riccardo Padovani
<rpadovani
@
ubuntu
.
com
>
#
# 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; witout 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 Affero General Public License
# along with this program. If not, see
<http:
//
www
.
gnu
.
org
/
licenses
/>
.
#}
{% extends "layout.html" %}
{% block title %}La comunità{% endblock %}
{% block content %}
<div
class=
"row row-hero no-border"
style=
"padding-bottom: 20px;"
>
<p>
Questo sito contiene la versione in fase di sviluppo del sito web
di ubuntu-it.
<br>
Non è ancora completo, e potrebbe subire modifiche sostanziali,
oltre a contenere errori.
</p>
<p>
Se volete contribuire siete i benvenuti!
<a
href=
"http://wiki.ubuntu-it.org/GruppoWeb/Contribuire"
>
Scopri come aiutarci
</a>
!
</p>
<p><b>
Il Gruppo Web di ubuntu-it
</b></p>
</div>
{% endblock %}
uitwww/templates/pages/contatti/index.html
0 → 100644
View file @
1e6cc20c
{# Source code of the Ubuntu-it website
# Copyright (C) 2015 Pietro Albini
<pietroalbini
@
ubuntu
.
com
>
# 2015 Riccardo Padovani
<rpadovani
@
ubuntu
.
com
>
#
# 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; witout 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 Affero General Public License
# along with this program. If not, see
<http:
//
www
.
gnu
.
org
/
licenses
/>
.
#}
{% extends "layout.html" %}
{% block title %}Contatti{% endblock %}
{% block content %}
<div
class=
"row row-hero no-border"
style=
"padding-bottom: 20px;"
>
<p>
Questo sito contiene la versione in fase di sviluppo del sito web
di ubuntu-it.
<br>
Non è ancora completo, e potrebbe subire modifiche sostanziali,
oltre a contenere errori.
</p>
<p>
Se volete contribuire siete i benvenuti!
<a
href=
"http://wiki.ubuntu-it.org/GruppoWeb/Contribuire"
>
Scopri come aiutarci
</a>
!
</p>
<p><b>
Il Gruppo Web di ubuntu-it
</b></p>
</div>
{% endblock %}
uitwww/templates/pages/contribuisci/index.html
0 → 100644
View file @
1e6cc20c
{# Source code of the Ubuntu-it website
# Copyright (C) 2015 Pietro Albini
<pietroalbini
@
ubuntu
.
com
>
# 2015 Riccardo Padovani
<rpadovani
@
ubuntu
.
com
>
#
# 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; witout 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 Affero General Public License
# along with this program. If not, see
<http:
//
www
.
gnu
.
org
/
licenses
/>
.
#}
{% extends "layout.html" %}
{% block title %}Aiutaci anche tu{% endblock %}
{% block content %}
<div
class=
"row row-hero no-border"
style=
"padding-bottom: 20px;"
>
<p>
Questo sito contiene la versione in fase di sviluppo del sito web
di ubuntu-it.
<br>
Non è ancora completo, e potrebbe subire modifiche sostanziali,
oltre a contenere errori.
</p>
<p>
Se volete contribuire siete i benvenuti!
<a
href=
"http://wiki.ubuntu-it.org/GruppoWeb/Contribuire"
>
Scopri come aiutarci
</a>
!
</p>
<p><b>
Il Gruppo Web di ubuntu-it
</b></p>
</div>
{% endblock %}
uitwww/templates/pages/eventi/index.html
0 → 100644
View file @
1e6cc20c
{# Source code of the Ubuntu-it website
# Copyright (C) 2015 Pietro Albini
<pietroalbini
@
ubuntu
.
com
>
# 2015 Riccardo Padovani
<rpadovani
@
ubuntu
.
com
>
#
# 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; witout 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 Affero General Public License
# along with this program. If not, see
<http:
//
www
.
gnu
.
org
/
licenses
/>
.
#}
{% extends "layout.html" %}
{% block title %}I nostri eventi{% endblock %}
{% block content %}
<div
class=
"row row-hero no-border"
style=
"padding-bottom: 20px;"
>
<p>
Questo sito contiene la versione in fase di sviluppo del sito web
di ubuntu-it.
<br>
Non è ancora completo, e potrebbe subire modifiche sostanziali,
oltre a contenere errori.
</p>
<p>
Se volete contribuire siete i benvenuti!
<a
href=
"http://wiki.ubuntu-it.org/GruppoWeb/Contribuire"
>
Scopri come aiutarci
</a>
!
</p>
<p><b>
Il Gruppo Web di ubuntu-it
</b></p>
</div>
{% endblock %}
uitwww/templates/pages/progetto/index.html
0 → 100644
View file @
1e6cc20c
{# Source code of the Ubuntu-it website
# Copyright (C) 2015 Pietro Albini
<pietroalbini
@
ubuntu
.
com
>
# 2015 Riccardo Padovani
<rpadovani
@
ubuntu
.
com
>
#
# 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; witout 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 Affero General Public License
# along with this program. If not, see
<http:
//
www
.
gnu
.
org
/
licenses
/>
.
#}
{% extends "layout.html" %}
{% block title %}Il progetto{% endblock %}
{% block content %}
<div
class=
"row row-hero no-border"
style=
"padding-bottom: 20px;"
>
<p>
Questo sito contiene la versione in fase di sviluppo del sito web
di ubuntu-it.
<br>
Non è ancora completo, e potrebbe subire modifiche sostanziali,
oltre a contenere errori.
</p>
<p>
Se volete contribuire siete i benvenuti!
<a
href=
"http://wiki.ubuntu-it.org/GruppoWeb/Contribuire"
>
Scopri come aiutarci
</a>
!
</p>
<p><b>
Il Gruppo Web di ubuntu-it
</b></p>
</div>
{% endblock %}
uitwww/templates/pages/scopri-ubuntu/index.html
0 → 100644
View file @
1e6cc20c
{# Source code of the Ubuntu-it website
# Copyright (C) 2015 Pietro Albini
<pietroalbini
@
ubuntu
.
com
>
# 2015 Riccardo Padovani
<rpadovani
@
ubuntu
.
com
>
#
# 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; witout 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 Affero General Public License
# along with this program. If not, see
<http:
//
www
.
gnu
.
org
/
licenses
/>
.
#}
{% extends "layout.html" %}
{% block title %}Scopri Ubuntu{% endblock %}
{% block content %}
<div
class=
"row row-hero no-border"
style=
"padding-bottom: 20px;"
>
<p>
Questo sito contiene la versione in fase di sviluppo del sito web
di ubuntu-it.
<br>
Non è ancora completo, e potrebbe subire modifiche sostanziali,
oltre a contenere errori.
</p>
<p>
Se volete contribuire siete i benvenuti!
<a
href=
"http://wiki.ubuntu-it.org/GruppoWeb/Contribuire"
>
Scopri come aiutarci
</a>
!
</p>
<p><b>
Il Gruppo Web di ubuntu-it
</b></p>
</div>
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment