forked from gnunn1/tilix-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (134 loc) · 6.16 KB
/
index.html
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
---
layout: default
title: A tiling terminal emulator
---
<!-- Header
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="section hero">
<div class="row">
<div class="one-half column">
<h1>Tilix</h1>
<h4 class="hero-heading">
Tilix is an advanced GTK3 tiling terminal emulator that follows the Gnome Human Interface Guidelines.
</h4>
<span class="scroll">
<a class="button button-primary" href="#packages">Try Tilix</a>
</span>
<a class="button button-primary" href="https://github.com/gnunn1/tilix/">
<span class="lsicon-github"></span> Source code
</a>
</div>
<div class="one-third column float-right">
<img class="u-max-full-width" alt="Tilix logo" src="{{site.baseurl}}/assets/images/logo.png">
</div>
</div>
</div>
<br>
<br>
<!-- Screenshots
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="section categories">
<h3 class="section-heading">Screenshots</h3>
<div>
<ul class="my-slider">
{% for image in site.static_files %}
{% if image.path contains 'images/gallery' %}
<li> <img class="u-max-full-width" src="{{site.baseurl}}{{image.path}}" alt="{{image.name | replace:'.png', ''}}"> </li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<br>
<br>
<!-- Features
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="section features" id="features">
<h3 class="section-heading">Features</h3>
{% if site.features != empty %}
{% for feature in site.features %}
{% assign loopindex = forloop.index | modulo: 3 %}
{% if loopindex == 1 %}
<div class="row">
{% endif %}
<div class="one-third column value">
<i class="fa {{ feature.icon }} fa-5x" aria-hidden="true"></i>
<h5 class="value-multiplier">{{ feature.title }}</h5>
{{ feature.content }}
</div>
{% if loopindex == 0 %}
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>
<br>
<br>
<!-- Packages
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="section packages" id="packages">
<h3 class="section-heading">Getting Tilix</h3>
<p class="section-description">The best way to get Tilix is from packages maintained for your specific Linux distribution. The following distributions have packages available.</p>
{% if site.packages != empty %}
<div class="tabs">
<nav>
<ul class="tabs-navigation" id="tabs">
{% for package in site.packages %}
{% if package.id == "/packages/aoscos" %}
<li class="selected">
{% else %}
<li>
{% endif %}
<a data-content="{{ package.id }}">{{ package.title }}</a>
</li>
{% endfor %}
<li class="hamburger-button">
<a id="packages-toggle">
<i class="fa fa-bars" aria-hidden="true"></i>
</a>
</li>
</ul>
</nav>
<ul class="tabs-content">
{% for package in site.packages %}
{% if package.id == "/packages/aoscos" %}
<li data-content="{{ package.id }}" class="selected">
{% else %}
<li data-content="{{ package.id }}">
{% endif %}
{{ package.content }}
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
<!-- Authors
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<br>
<br>
<div class="section contribute" id="contribute">
<h3 class="section-heading">Contribute</h3>
<div class="row">
<div class="one-half column">
<div class="icon">
<i class="fa fa-globe fa-5x" aria-hidden="true"></i>
</div>
<div class="description">
<p>
Tilix welcomes contributions and encourages participation from the community, for developers please visit the <a href='https://github.com/gnunn1/tilix'>Tilix Github Development</a> site to contribute. For translators, Tilix is localized using Weblate, please visit the Weblate hosted <a href='https://hosted.weblate.org/projects/tilix/translations'>Tilix translations site</a> in order to assist with translations, please do not submit direct pull requests to the repository for translations.
</p>
</div>
</div>
<div class="one-half column">
<div class="icon">
<i class="fa fa-github fa-5x" aria-hidden="true"></i>
</div>
<div class="description">
<p>
If you are having issues with Tilix, feel free to open issues in the <a href='https://github.com/gnunn1/tilix/issues'>Tilix Github Issues</a> page as necessary. Developers and users can also be found on IRC on the freenode network in the <a href='irc://irc.freenode.net/terminix'>#terminix</a> room.
</p>
</div>
</div>
</div>
</div>