blob: 9e4087787f614d88dc44ab07467c1ca7a552223c (
plain)
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
|
{% extends "layout/base.html" %}
{% block content %}
{% include "includes/hero-section/start" with class_include="emergehdr" %}
<div class="row">
<div class="col-xs-12 col-sm-8 col-md-9">
<p>
Welcome to Gentoo, a flexible, source-based Linux distribution that becomes just about any system you need—and much more.
</p>
</div>
<div class="col-xs-12 col-sm-4 col-md-3 buttons">
<a href="get-started/about/" type="button" class="btn btn-default btn-block">Learn more</a>
<a href="get-started/" class="btn btn-primary btn-block"><i class="fa fa-fw fa-rocket"></i> Get started now</a>
</div>
</div>
{% include "includes/hero-section/end" %}
{% include "includes/frontpage/news" %}
<hr>
<div class="row">
<div class="col-xs-12 col-md-6">
<h2>Developer Blogs <small>live from <a href="https://planet.gentoo.org">Planet Gentoo</a></small></h2>
{% include "includes/frontpage/planet" %}
</div>
<div class="col-xs-12 col-md-6">
<h2>Security Advisories <small>from our <a href="https://security.gentoo.org/">Security database</a></small></h2>
{% include "includes/frontpage/glsa" %}
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">
<h2>New Packages <small>more at the <a href="https://packages.gentoo.org">Gentoo Packages database</a></small></h2>
{% include "includes/frontpage/packages" %}
</div>
<div class="col-xs-12 col-md-6">
<h2>Fresh Documentation <small>on the <a href="https://wiki.gentoo.org/">Gentoo Wiki</a></small></h2>
{% include "includes/frontpage/wiki" %}
</div>
</div>
<hr>
<div class="row sponsor">
{% for spon in sponsors %}
{% if spon.AdsActive %}
<div class="col-xs-12 col-md-2 col-md-offset-2 sponsorlogo">
<!-- sponsor{name:{{ spon.AdsName }},weight:{{ spon.Wight }}} -->
<a href="{{ spon.AdsLink }}" title="{{ spon.AdsName }}">
<img src="https://www.gentoo.org/assets/img/sponsors/ads/{{ spon.AdsImg }}" alt="{{ spon.AdsAltName }}"></a></div>
{% endif %}
{% endfor %}
</div>
{% endblock %}
|