-
Notifications
You must be signed in to change notification settings - Fork 13
/
screenshots.html
84 lines (82 loc) · 2.04 KB
/
screenshots.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
---
layout: page
title: Screenshots
slug: screenshots
---
<div>
<p>Some LXQt themes with different configurations.
<br/>The settings of LXQt-Panel, Desktop and Appearance offer many possibilities
for individual customizations. More information about theming can be found
in the <a href="https://github.com/lxqt/lxqt/wiki/Theming" title="Theming LXQt">LXQt Wiki</a>.
</p>
</div>
<ol>
{% for screenshot in site.screenshots %}{% if screenshot.promoted %}
<li>
<a href="{{ screenshot.url | relative_url }}" title="{{ screenshot.title }}">
<figure>
<header>
<hgroup>
<h1>{{ screenshot.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
<img src="{{ screenshot.src | relative_url }}" alt="{{ screenshot.alt }}"/>
</main>
<footer>{{ screenshot.caption }}</footer>
</div>
</figure>
</a>
</li>{% endif %}
{% endfor %}
</ol><hr>
<div><h2>Application Screenshots</h2>
<center><p> Filemanager PcManFM-Qt </p></center>
</div>
<ol>
{% for screenshot in site.screenshots %}{% if screenshot.pcmanfm-qt %}
<li>
<a href="{{ screenshot.url | relative_url }}" title="{{ screenshot.title }}">
<figure>
<header>
<hgroup>
<h1>{{ screenshot.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
<img src="{{ screenshot.src | relative_url }}" alt="{{ screenshot.alt }}"/>
</main>
<footer>{{ screenshot.caption }}</footer>
</div>
</figure>
</a>
</li>{% endif %}
{% endfor %}
</ol>
<div>
<br/>
<center><p>Other Applications</p></center>
</div>
<ol>
{% for screenshot in site.screenshots %}{% if screenshot.other %}
<li>
<a href="{{ screenshot.url | relative_url }}" title="{{ screenshot.title }}">
<figure>
<header>
<hgroup>
<h1>{{ screenshot.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
<img src="{{ screenshot.src | relative_url }}" alt="{{ screenshot.alt }}"/>
</main>
<footer>{{ screenshot.caption }}</footer>
</div>
</figure>
</a>
</li>{% endif %}
{% endfor %}
</ol>