index.html 3.78 KB
{# Source code of the Ubuntu-it website
# Copyright (C) 2015 Pietro Albini <pietroalbini@ubuntu.com>
# Copyright (C) 2021 Alessandro Viprati <vipri.alessandro@gmail.com>
# Copyright (C) 2023 shadMod
#
# 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 %}
Home page
{% endblock %}

{% block content %}
<div class="page">
	<div class="row background-wallpaper banner-latest p-100">
		<div class="col text-center">
			<h1>
				Ubuntu 22.04
			</h1>
			<p class="intro text-center">
				Le ultime novità dal mondo del software libero, con stile.
			</p>
			<a class="btn" href="{{ url_for('pages.scopri-ubuntu_nuovo-rilascio') }}">
				Scopri di più
			</a>
			<a class="btn" href="{{ url_for('download.landing', distro='desktop') }}">
				Scarica Ubuntu
			</a>
		</div>
	</div>
</div>
<div class="page">
	<div class="row">
		<div class="col">
			<h2>
				Comunità italiana
			</h2>
			<p>
				Ubuntu-it è la comunità italiana di Ubuntu.
			</p>
			<p>
				Essa è organizzata in diversi
				<a href="{{ url_for('pages.comunita_index') }}">
					gruppi di lavoro
				</a>,
				coordinati dal Consiglio della comunità, ciascuno con un obiettivo diverso:
				dallo sviluppo, al supporto fino alla promozione.
			</p>

		</div>
		<div class="col">
			<h2>
				Derivate
			</h2>
			<p>
				Interfacce diverse ma sotto batte lo stesso cuore, per essere libero di scegliere.
			</p>
			<p>
				Scopri le differenze e gli obiettivi nella
				<a href="{{ url_for('pages.derivate_index') }}">
					pagina dedicata
				</a>.
			</p>
		</div>
		<div class="col">
			<h2>
				Supporto
			</h2>
			<p>
				Cerca risposte alle tue domande nei
				<a href="{{ url_for('pages.supporto') }}">
					portali di Ubuntu-it
				</a>
				e aiutaci a fornire supporto a chi ne ha bisogno.
			</p>
		</div>
	</div>
</div>
<div class="page">
	<div class="row">
		<div class="col">
			<h2>
				Scopri Ubuntu
			</h2>
			<p>
				Veloce, sicuro ed elegantemente semplice.
			</p>
			<p>
				Ubuntu è usato da più di 20 milioni di persone in tutto il mondo ogni giorno.
			</p>
		</div>
		<div class="col">
			<h2>
				Ultime novità
			</h2>
			<ul class="item-list">
				<li>
					<a href="{{ url_for('pages.derivate_index') }}">
						Newsletter Italiana #Ubuntu - 2023.030
					</a>
				</li>
				<li>
					<a href="{{ url_for('pages.derivate_index') }}">
						Newsletter Italiana #Ubuntu - 2023.029
					</a>
				</li>
				<li>
					<a href="{{ url_for('pages.derivate_index') }}">
						Newsletter Italiana #Ubuntu - 2023.028
					</a>
				</li>
			</ul>
		</div>
	</div>
</div>
<div class="page">
	<div class="row">
		<div class="col">
			<h2 class="text-center">
				Sponsor tecnici
			</h2>
			<div class="row">
				<div class="col text-center">
					<a href="https://www.infomaniak.com/it">
						<img src="{{ url_for('static', filename='images/sponsor/infomaniak.png')}}"
							 style="height:150px;" alt="infomaniak logo"/>
					</a>
				</div>
				<div class="col text-center">
					<a href="https://www.top-ix.org/it/home/">
						<img src="{{ url_for('static', filename='images/sponsor/topix-logo.png')}}"
							 style="height:150px;" alt="Top-ix logo"/>
					</a>
				</div>
			</div>
		</div>
	</div>
</div>
{% endblock %}