diff --git a/.gitignore b/.gitignore index 4b1248e..a9acf9f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ # Ignore python environment files -env-inv-doc/ \ No newline at end of file +env-inv-doc/ +env/ \ No newline at end of file diff --git a/_includes/app_carousel.html b/_includes/app_carousel.html new file mode 100644 index 0000000..263c31e --- /dev/null +++ b/_includes/app_carousel.html @@ -0,0 +1,61 @@ +{% with image_count=14 %} +{% include "carousel_start.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_1.jpg", alt="App screenshot", active=True%} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_2.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_3.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_4.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_5.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_6.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_7.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_8.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_9.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_10.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_11.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_12.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_13.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% with src="app/screenshots/screen_14.jpg", alt="App screenshot" %} +{% include "carousel_img.html" %} +{% endwith %} + +{% include "carousel_end.html" %} \ No newline at end of file diff --git a/_includes/carousel_end.html b/_includes/carousel_end.html new file mode 100644 index 0000000..c0319df --- /dev/null +++ b/_includes/carousel_end.html @@ -0,0 +1,14 @@ + + + + + + + Previous + + + + Next + + + \ No newline at end of file diff --git a/_includes/carousel_img.html b/_includes/carousel_img.html new file mode 100644 index 0000000..669da45 --- /dev/null +++ b/_includes/carousel_img.html @@ -0,0 +1,15 @@ +{% if 'readthedocs.org' in config.docs_dir %} +{% set assets = '/en/latest/assets' %} +{% else %} +{% set assets = '/assets' %} +{% endif %} + +{% if 'http' in src %} +{% set img_url = src %} +{% else %} +{% set img_url = assets + '/images/' + src %} +{% endif %} + +
+ {{ alt }} +
\ No newline at end of file diff --git a/_includes/carousel_start.html b/_includes/carousel_start.html new file mode 100644 index 0000000..a1368d2 --- /dev/null +++ b/_includes/carousel_start.html @@ -0,0 +1,14 @@ +