mirror of
https://github.com/greenshot/greenshot.git
synced 2025-01-08 23:03:03 -08:00
31 lines
466 B
HTML
31 lines
466 B
HTML
---
|
|
layout: page
|
|
title: Screenshots
|
|
permalink: /screenshots/
|
|
menu: Screenshots
|
|
categories: []
|
|
comments: []
|
|
tags: []
|
|
---
|
|
|
|
|
|
<div id="slides">
|
|
{% for screenshot in site.data.screenshots %}
|
|
<img src="/assets/screenshots/{{screenshot.file}}">
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<script>
|
|
$(function(){
|
|
$("#slides").slidesjs({
|
|
pagination: { active: false },
|
|
play: {
|
|
active: true,
|
|
auto: true,
|
|
interval: 5000,
|
|
pauseOnHover: true
|
|
}
|
|
});
|
|
});
|
|
</script>
|