Skip to content

Commit

Permalink
Update screenshots for 0.9 version
Browse files Browse the repository at this point in the history
  • Loading branch information
jleclanche committed Feb 8, 2015
1 parent a55f2dc commit e594808
Show file tree
Hide file tree
Showing 20 changed files with 70 additions and 84 deletions.
26 changes: 13 additions & 13 deletions _layouts/screenshot.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
layout: default
---
<article id="article-screenshot-{{ page.slug }}" class="page screenshot">
<header>
<hgroup>
<h1>{{ page.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
{{ content }}
</main>
<footer>{{ post.caption }}</footer>
</div>
</article>
<article id="article-screenshot-{{ page.slug }}" class="page screenshot">
<header>
<hgroup>
<h1>{{ page.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
<a href="{{page.src}}"><img src="{{ page.src }}" alt="{{ page.alt }}"/></a>
</main>
<footer>{{ post.caption }}</footer>
</div>
</article>
9 changes: 0 additions & 9 deletions _screenshots/1.html

This file was deleted.

9 changes: 0 additions & 9 deletions _screenshots/2.html

This file was deleted.

9 changes: 0 additions & 9 deletions _screenshots/3.html

This file was deleted.

8 changes: 0 additions & 8 deletions _screenshots/4.html

This file was deleted.

9 changes: 9 additions & 0 deletions _screenshots/ambiance.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: screenshot
title: LXQt Ambiance
slug: lxqt-ambiance
src: /images/screenshots/ambiance.png
alt: The LXQt Ambiance theme
promoted: true
---
<img src="{{ page.src }}" alt="{{ page.alt }}"/>
9 changes: 9 additions & 0 deletions _screenshots/dark.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: screenshot
title: LXQt Dark
slug: lxqt-dark
src: /images/screenshots/dark.png
alt: The LXQt Dark theme
promoted: true
---
<img src="{{ page.src }}" alt="{{ page.alt }}"/>
9 changes: 9 additions & 0 deletions _screenshots/frost.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: screenshot
title: LXQt Frost
slug: lxqt-frost
src: /images/screenshots/frost.png
alt: The LXQt Frost theme
promoted: true
---
<img src="{{ page.src }}" alt="{{ page.alt }}"/>
9 changes: 9 additions & 0 deletions _screenshots/plasma.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: screenshot
title: KDE Plasma
slug: kde-plasma
src: /images/screenshots/plasma.png
alt: The KDE Plasma theme
promoted: true
---
<img src="{{ page.src }}" alt="{{ page.alt }}"/>
Binary file removed images/screenshots/1.jpg
Binary file not shown.
Binary file removed images/screenshots/1.png
Binary file not shown.
Binary file removed images/screenshots/2.jpg
Binary file not shown.
Binary file removed images/screenshots/2.png
Binary file not shown.
Binary file removed images/screenshots/3.jpg
Binary file not shown.
Binary file removed images/screenshots/3.png
Binary file not shown.
Binary file added images/screenshots/ambiance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/frost.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshots/plasma.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 21 additions & 36 deletions screenshots.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,24 @@
title: Screenshots
slug: screenshots
---
<ol>{% for screenshot in site.screenshots %}{% if screenshot.promoted %}
<li>
<a href="{{ screenshot.url }}" title="{{ screenshot.title }}">
<figure>
<header>
<hgroup>
<h1>{{ screenshot.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
<img src="{{ screenshot.src }}" alt="{{ screenshot.alt }}"/>
</main>
<footer>{{ screenshot.caption }}</footer>
</div>
</figure>
</a>
</li>{% endif %}{% endfor %}{% for screenshot in site.screenshots %}{% if screenshot.promoted == null %}
<li>
<a href="{{ screenshot.url }}" title="{{ screenshot.title }}">
<figure>
<header>
<hgroup>
<h1>{{ screenshot.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
<img src="{{ screenshot.src }}" alt="{{ screenshot.alt }}"/>
</main>
<footer>{{ screenshot.caption }}</footer>
</div>
</figure>
</a>
</li>{% endif %}{% endfor %}
</ol>
<ol>
{% for screenshot in site.screenshots %}{% if screenshot.promoted %}
<li>
<a href="{{ screenshot.url }}" title="{{ screenshot.title }}">
<figure>
<header>
<hgroup>
<h1>{{ screenshot.title }}</h1>
</hgroup>
</header>
<div class="wrapper">
<main>
<img src="{{ screenshot.src }}" alt="{{ screenshot.alt }}"/>
</main>
<footer>{{ screenshot.caption }}</footer>
</div>
</figure>
</a>
</li>{% endif %}
{% endfor %}
</ol>

0 comments on commit e594808

Please sign in to comment.