-
+
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a48cf0d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public diff --git a/.gitmodules b/.gitmodules index 1ffb93b..38ca83f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "themes/AllinOne"] path = themes/AllinOne url = https://github.com/orianna-zzo/AllinOne.git +[submodule "themes/den"] + path = themes/den + url = https://github.com/shaform/hugo-theme-den.git diff --git a/config.toml b/config.toml index e4b7418..4ec5052 100644 --- a/config.toml +++ b/config.toml @@ -1,3 +1,65 @@ -baseURL = "http://example.org/" -languageCode = "en-us" -title = "My New Hugo Site" +baseURL = "https://thomasba.de/" +languageCode = "de-de" +title = "thomasba.de" +builddrafts = false +canonifyurls = true +contentdir = "content" +layoutdir = "layouts" +publishdir = "public" +enableEmoji = true +hasCJKLanguage = true +summaryLength = 200 +Paginate = 10 +theme = "thomasba" + +[permalinks] + blog = "posts/:year-:month-:slug.html" + +[taxonomies] + tag = "tags" + series = "series" + category = "categories" + +[menu] + [[menu.main]] + name = "Blog" + weight = -130 + identifier = "blog" + url = "blog/" + + [[menu.main]] + name = "Rezepte" + weight = -120 + identifier = "rezepte" + url = "rezepte/" + + [[menu.main]] + name = "Bilder" + weight = -110 + identifier = "photos" + url = "photos/" + + [[menu.main]] + name = "About" + weight = -100 + identifier = "about" + url = "about/" + + + +# theme settings +[params] + slidesDirPath = "static/img/header-slides" + slidesDirPathURL = "img/header-slides" + # social icons ... + email = "mail@thomasba.de" + github = "https:////github.com/thomasba" + linkedin = "https://www.linkedin.com/in/thomas-battermann-626a43143/" + #facebook = "//facebook.com/you" + #googleplus = "//google.com/you" + twitter = "//twitter.com/thomasba" + #px500 = "//px500" + flickr = "https://www.flickr.com/photos/thomas-ba/" + instagram = "//instagram.com/thomasba__" + include_rss = true # include RSS tag in
and show RSS icon + diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..b44102b --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,11 @@ +--- +title: "About" +date: 2018-11-21T18:32:20+01:00 +draft: false +--- + +Als CMS wird [hugo](https://gohugo.io/) verwendet, warum? Einige der Gründe: + +- Erzeugt statische Seiten und bietet damit keine Angriffsfläche für Hacker. Zudem kann der Browser die Inhalte so besser zwischenspeichern, da er weiß, dass sich die Inhalte nicht bei jedem Aufruf ändern. +- Die Blog-Einträge werden in [Markdown](http://daringfireball.net/projects/markdown/) geschrieben und können somit einfach wiederverwertet werden. +- Die Quellen werden in einem Git-Repository gespeichert, somit können änderungen einfach auf mehreren Computern synchronisiert werden. diff --git a/content/blog/2009-12-25-pacman.md b/content/blog/2009-12-25-pacman.md new file mode 100644 index 0000000..9f73aaa --- /dev/null +++ b/content/blog/2009-12-25-pacman.md @@ -0,0 +1,16 @@ +--- +title: "pacman" +date: 2009-12-25T07:05:43+01:00 +draft: false +tags: ["arch-linux"] +--- + +Gerade hatte ich im tran, allen Fehlermeldungen zu trotz pacman deinstalliert, den Packetverwalter von Archlinux. Doch so fatal war der Fehler dann doch nicht, so kann man pacman wieder installieren: + +``` +su +cd / +wget ftp://ftp.spline.inf.fu-berlin.de/mirrors/archlinux/core/os/i686/pacman-3.3.3-1-i686.pkg.tar.gz +tar -xvfz pacman-3.3.3-1-i686.pkg.tar.gz +pacman -Sf pacman +``` diff --git a/content/blog/2009-12-26-wzdftpd-config-datei.md b/content/blog/2009-12-26-wzdftpd-config-datei.md new file mode 100644 index 0000000..d9d417f --- /dev/null +++ b/content/blog/2009-12-26-wzdftpd-config-datei.md @@ -0,0 +1,19 @@ +--- +title: "wzdftpd Config Datei" +date: 2009-12-26T03:21:54+01:00 +draft: false +tags: ["linux"] +--- + +Gerade als ich den wzdftpd Konfigurieren wollte, bin ich in der Config Datei auf folgende Zeilen gestoßen: + +``` +[GLOBAL] +# This is the main config file +# lines begining with a # are ignored, as empty lines +# all lines must be of the form: +#
+ 1 MR 20101219T00:27:24Z 000 ~ Dieser Raum ist nicht anonym
+ 2 MI 20101219T00:27:24Z 000 You have joined as "thomas"
+ 3 MI 20101219T00:27:24Z 000 markus has joined
+ 4 MI 20101219T00:27:24Z 000 klaus has joined
+ 5 MI 20101219T00:27:24Z 000 The topic has been set to: Doofes Thema :-D
+ 6 MR 20101219T00:27:24Z 000 ~ bladehunter hat das Thema geändert auf: Doofes Thema :-D
+ 7 MR 20101219T00:27:31Z 000 <thomas> moin
+ 8 MR 20101219T00:27:48Z 000 <markus> moin
+ 9 MR 20101219T00:28:06Z 000 <klaus> /me legt sich dann mal aufs sofa
+10 MI 20101219T00:28:19Z 000 klaus is now known as klaus|sofa
+11 MR 20101219T00:28:42Z 000 <thomas> viel vergnügen
+12 MR 20101219T00:28:45Z 000 markus has left
+
+
+
The requested URL cannot provide coffee because it's tea time.
+ + + diff --git a/static/css/hugo-easy-gallery.css b/static/css/hugo-easy-gallery.css new file mode 100644 index 0000000..538e48c --- /dev/null +++ b/static/css/hugo-easy-gallery.css @@ -0,0 +1,159 @@ +/* +Put this file in /static/css/hugo-easy-gallery.css +Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/ +*/ + + +/* +Grid Layout Styles +*/ +.gallery { + overflow: hidden; + margin: 10px; + /*max-width: 768px;*/ +} +.gallery .box { + float: left; + position: relative; + /* Default: 1 tile wide */ + width: 100%; + padding-bottom: 100%; +} +@media only screen and (min-width : 365px) { + /* Tablet view: 2 tiles */ + .gallery .box { + width: 50%; + padding-bottom: 50%; + } +} +@media only screen and (min-width : 480px) { + /* Small desktop / ipad view: 3 tiles */ + .gallery .box { + width: 33.3%; + padding-bottom: 33.3%; /* */ + } +} +@media only screen and (min-width : 900px) { + /* Medium desktop: 4 tiles */ + .box { + width: 25%; + padding-bottom: 25%; + } +} + +/* +Transition styles +*/ +.gallery.hover-transition figure, +.gallery.hover-effect-zoom .img, +.gallery:not(.caption-effect-appear) figcaption, +.fancy-figure:not(.caption-effect-appear) figcaption { + -webkit-transition: all 0.3s ease-in-out; + -moz-transition: all 0.3s ease-in-out; + -o-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; +} +/* +figure styles +*/ +figure { + position:relative; /* purely to allow absolution positioning of figcaption */ + overflow: hidden; +} +.gallery figure { + position: absolute; + left: 5px; + right: 5px; + top: 5px; + bottom: 5px; +} +.gallery.hover-effect-grow figure:hover { + transform: scale(1.05); +} +.gallery.hover-effect-shrink figure:hover { + transform: scale(0.95); +} +.gallery.hover-effect-slidedown figure:hover { + transform: translateY(5px); +} +.gallery.hover-effect-slideup figure:hover { + transform: translateY(-5px); +} + +/* +img / a styles +*/ + +.gallery .img { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + background-size: cover; + background-position: 50% 50%; + background-repeat: no-repeat; +} +.gallery.hover-effect-zoom figure:hover .img { + transform: scale(1.05); +} +.gallery img { + display: none; /* only show the img if not inside a gallery */ +} +figure a { + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; +} + +/* +figcaption styles +*/ +.gallery figcaption, +.fancy-figure figcaption { + position: absolute; + bottom: 0; + left: 0; + right: 0; + background: #000; + color: #FFF; + text-align: center; + font-size: 75%; /* change this if you want bigger text */ + background: rgba(0, 0, 0, 0.5); + opacity: 1; + cursor: pointer; +} +.gallery.caption-position-none figcaption, +.fancy-figure.caption-position-none figcaption { + display: none; +} +.gallery.caption-position-center figcaption, +.fancy-figure.caption-position-center figcaption { + top: 0; + padding: 40% 5px; +} +.gallery.caption-position-bottom figcaption, +.fancy-figure.caption-position-bottom figcaption { + padding: 5px; +} +.gallery.caption-effect-fade figure:not(:hover) figcaption, +.gallery.caption-effect-appear figure:not(:hover) figcaption, +.fancy-figure.caption-effect-fade figure:not(:hover) figcaption, +.fancy-figure.caption-effect-appear figure:not(:hover) figcaption { + background: rgba(0, 0, 0, 0); + opacity: 0; +} +.gallery.caption-effect-slide.caption-position-bottom figure:not(:hover) figcaption, +.fancy-figure.caption-effect-slide.caption-position-bottom figure:not(:hover) figcaption { + margin-bottom: -100%; +} +.gallery.caption-effect-slide.caption-position-center figure:not(:hover) figcaption, +.fancy-figure.caption-effect-slide.caption-position-center figure:not(:hover) figcaption { + top: 100%; +} +figcaption p { + margin: auto; /* override style in theme */ +} + diff --git a/static/css/rezepte.css b/static/css/rezepte.css new file mode 100644 index 0000000..38c434d --- /dev/null +++ b/static/css/rezepte.css @@ -0,0 +1,30 @@ +div.thumb { + border:1px solid #e9b3b3; + box-shadow: inset 0 0 20px #e9b3b3, 0 2px 5px rgba(0,0,0,0.75); + padding:20px; + line-height: 25px; + text-align: center; + color: #ca4242; + border-radius: 5px; + width: 150px; +} +.index img { + box-shadow: 0 2px 5px rgba(0,0,0,0.75); + border-radius: 5px; + max-width: 150px; + max-height: 150px; +} +.meta { + color:#999; + font-size:80%; +} +/* terminal */ +pre.terminal { + border: 1px solid #000; + background-color: #333; + color: #FFF; +} + +pre.terminal code { + background-color: #333; +} diff --git a/static/css/syntax.css b/static/css/syntax.css new file mode 100644 index 0000000..2774b76 --- /dev/null +++ b/static/css/syntax.css @@ -0,0 +1,60 @@ +.highlight { background: #ffffff; } +.highlight .c { color: #999988; font-style: italic } /* Comment */ +.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.highlight .k { font-weight: bold } /* Keyword */ +.highlight .o { font-weight: bold } /* Operator */ +.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ +.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #aa0000 } /* Generic.Error */ +.highlight .gh { color: #999999 } /* Generic.Heading */ +.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #555555 } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #aaaaaa } /* Generic.Subheading */ +.highlight .gt { color: #aa0000 } /* Generic.Traceback */ +.highlight .kc { font-weight: bold } /* Keyword.Constant */ +.highlight .kd { font-weight: bold } /* Keyword.Declaration */ +.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ +.highlight .kr { font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ +.highlight .m { color: #009999 } /* Literal.Number */ +.highlight .s { color: #d14 } /* Literal.String */ +.highlight .na { color: #008080 } /* Name.Attribute */ +.highlight .nb { color: #0086B3 } /* Name.Builtin */ +.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ +.highlight .no { color: #008080 } /* Name.Constant */ +.highlight .ni { color: #800080 } /* Name.Entity */ +.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ +.highlight .nn { color: #555555 } /* Name.Namespace */ +.highlight .nt { color: #000080 } /* Name.Tag */ +.highlight .nv { color: #008080 } /* Name.Variable */ +.highlight .ow { font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mf { color: #009999 } /* Literal.Number.Float */ +.highlight .mh { color: #009999 } /* Literal.Number.Hex */ +.highlight .mi { color: #009999 } /* Literal.Number.Integer */ +.highlight .mo { color: #009999 } /* Literal.Number.Oct */ +.highlight .sb { color: #d14 } /* Literal.String.Backtick */ +.highlight .sc { color: #d14 } /* Literal.String.Char */ +.highlight .sd { color: #d14 } /* Literal.String.Doc */ +.highlight .s2 { color: #d14 } /* Literal.String.Double */ +.highlight .se { color: #d14 } /* Literal.String.Escape */ +.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ +.highlight .si { color: #d14 } /* Literal.String.Interpol */ +.highlight .sx { color: #d14 } /* Literal.String.Other */ +.highlight .sr { color: #009926 } /* Literal.String.Regex */ +.highlight .s1 { color: #d14 } /* Literal.String.Single */ +.highlight .ss { color: #990073 } /* Literal.String.Symbol */ +.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #008080 } /* Name.Variable.Class */ +.highlight .vg { color: #008080 } /* Name.Variable.Global */ +.highlight .vi { color: #008080 } /* Name.Variable.Instance */ +.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/static/google53bca9d2fd1abacf.html b/static/google53bca9d2fd1abacf.html new file mode 100644 index 0000000..e69de29 diff --git a/static/img/header-slides/_dsc0311.large.jpg b/static/img/header-slides/_dsc0311.large.jpg new file mode 100644 index 0000000..e6291d2 Binary files /dev/null and b/static/img/header-slides/_dsc0311.large.jpg differ diff --git a/static/img/header-slides/dsc_8382.large.jpg b/static/img/header-slides/dsc_8382.large.jpg new file mode 100644 index 0000000..f21db3a Binary files /dev/null and b/static/img/header-slides/dsc_8382.large.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017.jpg b/static/img/photos/abseiling-from-spire-2017.jpg new file mode 100644 index 0000000..35245a9 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/abseiling-from-church-spire-thumb.jpg b/static/img/photos/abseiling-from-spire-2017/abseiling-from-church-spire-thumb.jpg new file mode 100644 index 0000000..fcac669 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/abseiling-from-church-spire-thumb.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/abseiling-from-church-spire.jpg b/static/img/photos/abseiling-from-spire-2017/abseiling-from-church-spire.jpg new file mode 100644 index 0000000..4675aab Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/abseiling-from-church-spire.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-carabiner-thumb.jpg b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-carabiner-thumb.jpg new file mode 100644 index 0000000..dc8477b Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-carabiner-thumb.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-carabiner.jpg b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-carabiner.jpg new file mode 100644 index 0000000..42cb52a Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-carabiner.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-thumb.jpg b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-thumb.jpg new file mode 100644 index 0000000..f523604 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire-thumb.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire.jpg b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire.jpg new file mode 100644 index 0000000..42c8dea Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/abseiling-from-spire.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/church-spire-schorndorf-thumb.jpg b/static/img/photos/abseiling-from-spire-2017/church-spire-schorndorf-thumb.jpg new file mode 100644 index 0000000..1c857d8 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/church-spire-schorndorf-thumb.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/church-spire-schorndorf.jpg b/static/img/photos/abseiling-from-spire-2017/church-spire-schorndorf.jpg new file mode 100644 index 0000000..369d7ea Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/church-spire-schorndorf.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/old-church-window-thumb.jpg b/static/img/photos/abseiling-from-spire-2017/old-church-window-thumb.jpg new file mode 100644 index 0000000..7ea5994 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/old-church-window-thumb.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/old-church-window.jpg b/static/img/photos/abseiling-from-spire-2017/old-church-window.jpg new file mode 100644 index 0000000..cc2bcb5 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/old-church-window.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/schorndorf-at-night-thumb.jpg b/static/img/photos/abseiling-from-spire-2017/schorndorf-at-night-thumb.jpg new file mode 100644 index 0000000..962cc6e Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/schorndorf-at-night-thumb.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/schorndorf-at-night.jpg b/static/img/photos/abseiling-from-spire-2017/schorndorf-at-night.jpg new file mode 100644 index 0000000..c6d7936 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/schorndorf-at-night.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/schorndorf-thumb.jpg b/static/img/photos/abseiling-from-spire-2017/schorndorf-thumb.jpg new file mode 100644 index 0000000..60d0773 Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/schorndorf-thumb.jpg differ diff --git a/static/img/photos/abseiling-from-spire-2017/schorndorf.jpg b/static/img/photos/abseiling-from-spire-2017/schorndorf.jpg new file mode 100644 index 0000000..9719f6b Binary files /dev/null and b/static/img/photos/abseiling-from-spire-2017/schorndorf.jpg differ diff --git a/static/img/photos/austria-2010.jpg b/static/img/photos/austria-2010.jpg new file mode 100644 index 0000000..04c96e6 Binary files /dev/null and b/static/img/photos/austria-2010.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8378-thumb.jpg b/static/img/photos/austria-2010/dsc_8378-thumb.jpg new file mode 100644 index 0000000..edb7a5b Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8378-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8378.jpg b/static/img/photos/austria-2010/dsc_8378.jpg new file mode 100644 index 0000000..f7dbb9a Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8378.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8379-thumb.jpg b/static/img/photos/austria-2010/dsc_8379-thumb.jpg new file mode 100644 index 0000000..b677bc1 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8379-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8379.jpg b/static/img/photos/austria-2010/dsc_8379.jpg new file mode 100644 index 0000000..ed96794 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8379.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8381-thumb.jpg b/static/img/photos/austria-2010/dsc_8381-thumb.jpg new file mode 100644 index 0000000..e053430 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8381-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8381.jpg b/static/img/photos/austria-2010/dsc_8381.jpg new file mode 100644 index 0000000..d68cdaf Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8381.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8382-thumb.jpg b/static/img/photos/austria-2010/dsc_8382-thumb.jpg new file mode 100644 index 0000000..bd803a0 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8382-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8382.jpg b/static/img/photos/austria-2010/dsc_8382.jpg new file mode 100644 index 0000000..0db655c Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8382.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8384-thumb.jpg b/static/img/photos/austria-2010/dsc_8384-thumb.jpg new file mode 100644 index 0000000..c3acc7b Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8384-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8384.jpg b/static/img/photos/austria-2010/dsc_8384.jpg new file mode 100644 index 0000000..14d1c3f Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8384.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8385-thumb.jpg b/static/img/photos/austria-2010/dsc_8385-thumb.jpg new file mode 100644 index 0000000..5dd25ec Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8385-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8385.jpg b/static/img/photos/austria-2010/dsc_8385.jpg new file mode 100644 index 0000000..40744d3 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8385.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8386-thumb.jpg b/static/img/photos/austria-2010/dsc_8386-thumb.jpg new file mode 100644 index 0000000..27dc197 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8386-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8386.jpg b/static/img/photos/austria-2010/dsc_8386.jpg new file mode 100644 index 0000000..e17e875 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8386.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8387-thumb.jpg b/static/img/photos/austria-2010/dsc_8387-thumb.jpg new file mode 100644 index 0000000..baecd76 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8387-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8387.jpg b/static/img/photos/austria-2010/dsc_8387.jpg new file mode 100644 index 0000000..982cc5d Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8387.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8390-thumb.jpg b/static/img/photos/austria-2010/dsc_8390-thumb.jpg new file mode 100644 index 0000000..d27aaf5 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8390-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8390.jpg b/static/img/photos/austria-2010/dsc_8390.jpg new file mode 100644 index 0000000..07b83c7 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8390.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8395-thumb.jpg b/static/img/photos/austria-2010/dsc_8395-thumb.jpg new file mode 100644 index 0000000..c594cb4 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8395-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8395.jpg b/static/img/photos/austria-2010/dsc_8395.jpg new file mode 100644 index 0000000..96c176f Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8395.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8430-thumb.jpg b/static/img/photos/austria-2010/dsc_8430-thumb.jpg new file mode 100644 index 0000000..720c8ee Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8430-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8430.jpg b/static/img/photos/austria-2010/dsc_8430.jpg new file mode 100644 index 0000000..bafb915 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8430.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8439-thumb.jpg b/static/img/photos/austria-2010/dsc_8439-thumb.jpg new file mode 100644 index 0000000..6f57cf7 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8439-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8439.jpg b/static/img/photos/austria-2010/dsc_8439.jpg new file mode 100644 index 0000000..c91b217 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8439.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8473-thumb.jpg b/static/img/photos/austria-2010/dsc_8473-thumb.jpg new file mode 100644 index 0000000..8799716 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8473-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8473.jpg b/static/img/photos/austria-2010/dsc_8473.jpg new file mode 100644 index 0000000..af44375 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8473.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8474-thumb.jpg b/static/img/photos/austria-2010/dsc_8474-thumb.jpg new file mode 100644 index 0000000..b3e1160 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8474-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8474.jpg b/static/img/photos/austria-2010/dsc_8474.jpg new file mode 100644 index 0000000..4fb580e Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8474.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8475-thumb.jpg b/static/img/photos/austria-2010/dsc_8475-thumb.jpg new file mode 100644 index 0000000..8f2927e Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8475-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8475.jpg b/static/img/photos/austria-2010/dsc_8475.jpg new file mode 100644 index 0000000..7e6796c Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8475.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8478-thumb.jpg b/static/img/photos/austria-2010/dsc_8478-thumb.jpg new file mode 100644 index 0000000..188f423 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8478-thumb.jpg differ diff --git a/static/img/photos/austria-2010/dsc_8478.jpg b/static/img/photos/austria-2010/dsc_8478.jpg new file mode 100644 index 0000000..b5895f0 Binary files /dev/null and b/static/img/photos/austria-2010/dsc_8478.jpg differ diff --git a/static/img/photos/austria-2010/winter_landscape_iii-thumb.jpg b/static/img/photos/austria-2010/winter_landscape_iii-thumb.jpg new file mode 100644 index 0000000..63ec983 Binary files /dev/null and b/static/img/photos/austria-2010/winter_landscape_iii-thumb.jpg differ diff --git a/static/img/photos/austria-2010/winter_landscape_iii.jpg b/static/img/photos/austria-2010/winter_landscape_iii.jpg new file mode 100644 index 0000000..2729dd1 Binary files /dev/null and b/static/img/photos/austria-2010/winter_landscape_iii.jpg differ diff --git a/static/img/photos/austria-2011.jpg b/static/img/photos/austria-2011.jpg new file mode 100644 index 0000000..bd11fb9 Binary files /dev/null and b/static/img/photos/austria-2011.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6344-thumb.jpg b/static/img/photos/austria-2011/_dsc6344-thumb.jpg new file mode 100644 index 0000000..a648a2b Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6344-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6344.jpg b/static/img/photos/austria-2011/_dsc6344.jpg new file mode 100644 index 0000000..8711c56 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6344.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6349-thumb.jpg b/static/img/photos/austria-2011/_dsc6349-thumb.jpg new file mode 100644 index 0000000..4531a73 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6349-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6349.jpg b/static/img/photos/austria-2011/_dsc6349.jpg new file mode 100644 index 0000000..046175c Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6349.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6350-thumb.jpg b/static/img/photos/austria-2011/_dsc6350-thumb.jpg new file mode 100644 index 0000000..611c54b Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6350-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6350.jpg b/static/img/photos/austria-2011/_dsc6350.jpg new file mode 100644 index 0000000..e7c3cd5 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6350.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6360-thumb.jpg b/static/img/photos/austria-2011/_dsc6360-thumb.jpg new file mode 100644 index 0000000..6df1519 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6360-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6360.jpg b/static/img/photos/austria-2011/_dsc6360.jpg new file mode 100644 index 0000000..43b3c18 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6360.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6361-thumb.jpg b/static/img/photos/austria-2011/_dsc6361-thumb.jpg new file mode 100644 index 0000000..d52f7c2 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6361-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6361.jpg b/static/img/photos/austria-2011/_dsc6361.jpg new file mode 100644 index 0000000..5763e55 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6361.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6370-thumb.jpg b/static/img/photos/austria-2011/_dsc6370-thumb.jpg new file mode 100644 index 0000000..9eda238 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6370-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6370.jpg b/static/img/photos/austria-2011/_dsc6370.jpg new file mode 100644 index 0000000..6dc1a08 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6370.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6376-thumb.jpg b/static/img/photos/austria-2011/_dsc6376-thumb.jpg new file mode 100644 index 0000000..ae25ace Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6376-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6376.jpg b/static/img/photos/austria-2011/_dsc6376.jpg new file mode 100644 index 0000000..d1b77e3 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6376.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6377-thumb.jpg b/static/img/photos/austria-2011/_dsc6377-thumb.jpg new file mode 100644 index 0000000..b8d0cd1 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6377-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6377.jpg b/static/img/photos/austria-2011/_dsc6377.jpg new file mode 100644 index 0000000..f0f4b91 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6377.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6378-thumb.jpg b/static/img/photos/austria-2011/_dsc6378-thumb.jpg new file mode 100644 index 0000000..b805012 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6378-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6378.jpg b/static/img/photos/austria-2011/_dsc6378.jpg new file mode 100644 index 0000000..05af082 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6378.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6382-thumb.jpg b/static/img/photos/austria-2011/_dsc6382-thumb.jpg new file mode 100644 index 0000000..177561c Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6382-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6382.jpg b/static/img/photos/austria-2011/_dsc6382.jpg new file mode 100644 index 0000000..4f3e0cd Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6382.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6396-thumb.jpg b/static/img/photos/austria-2011/_dsc6396-thumb.jpg new file mode 100644 index 0000000..758d351 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6396-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6396.jpg b/static/img/photos/austria-2011/_dsc6396.jpg new file mode 100644 index 0000000..7b687dd Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6396.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6404-thumb.jpg b/static/img/photos/austria-2011/_dsc6404-thumb.jpg new file mode 100644 index 0000000..0e577a0 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6404-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6404.jpg b/static/img/photos/austria-2011/_dsc6404.jpg new file mode 100644 index 0000000..1844fd4 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6404.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6434-thumb.jpg b/static/img/photos/austria-2011/_dsc6434-thumb.jpg new file mode 100644 index 0000000..31d7154 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6434-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6434.jpg b/static/img/photos/austria-2011/_dsc6434.jpg new file mode 100644 index 0000000..a900811 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6434.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6444-thumb.jpg b/static/img/photos/austria-2011/_dsc6444-thumb.jpg new file mode 100644 index 0000000..9889cb9 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6444-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6444.jpg b/static/img/photos/austria-2011/_dsc6444.jpg new file mode 100644 index 0000000..0a2891d Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6444.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6482-thumb.jpg b/static/img/photos/austria-2011/_dsc6482-thumb.jpg new file mode 100644 index 0000000..5488b87 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6482-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6482.jpg b/static/img/photos/austria-2011/_dsc6482.jpg new file mode 100644 index 0000000..8f1c38b Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6482.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6485-thumb.jpg b/static/img/photos/austria-2011/_dsc6485-thumb.jpg new file mode 100644 index 0000000..69ac54b Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6485-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6485.jpg b/static/img/photos/austria-2011/_dsc6485.jpg new file mode 100644 index 0000000..b37be40 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6485.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6496-thumb.jpg b/static/img/photos/austria-2011/_dsc6496-thumb.jpg new file mode 100644 index 0000000..a172aff Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6496-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6496.jpg b/static/img/photos/austria-2011/_dsc6496.jpg new file mode 100644 index 0000000..a818e5d Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6496.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6503-thumb.jpg b/static/img/photos/austria-2011/_dsc6503-thumb.jpg new file mode 100644 index 0000000..0af28b7 Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6503-thumb.jpg differ diff --git a/static/img/photos/austria-2011/_dsc6503.jpg b/static/img/photos/austria-2011/_dsc6503.jpg new file mode 100644 index 0000000..43ed97a Binary files /dev/null and b/static/img/photos/austria-2011/_dsc6503.jpg differ diff --git a/static/img/photos/austria-2011/damuels_panorama-thumb.jpg b/static/img/photos/austria-2011/damuels_panorama-thumb.jpg new file mode 100644 index 0000000..cfd3f5d Binary files /dev/null and b/static/img/photos/austria-2011/damuels_panorama-thumb.jpg differ diff --git a/static/img/photos/austria-2011/damuels_panorama.jpg b/static/img/photos/austria-2011/damuels_panorama.jpg new file mode 100644 index 0000000..3946fb9 Binary files /dev/null and b/static/img/photos/austria-2011/damuels_panorama.jpg differ diff --git a/static/img/photos/austria-2011/fontanella_panorama-thumb.jpg b/static/img/photos/austria-2011/fontanella_panorama-thumb.jpg new file mode 100644 index 0000000..8e287f0 Binary files /dev/null and b/static/img/photos/austria-2011/fontanella_panorama-thumb.jpg differ diff --git a/static/img/photos/austria-2011/fontanella_panorama.jpg b/static/img/photos/austria-2011/fontanella_panorama.jpg new file mode 100644 index 0000000..b11c6a9 Binary files /dev/null and b/static/img/photos/austria-2011/fontanella_panorama.jpg differ diff --git a/static/img/photos/berchtesgaden-2016.jpg b/static/img/photos/berchtesgaden-2016.jpg new file mode 100644 index 0000000..8758957 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-03_16-34-00_01-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-03_16-34-00_01-thumb.jpg new file mode 100644 index 0000000..46dbe74 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-03_16-34-00_01-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-03_16-34-00_01.jpg b/static/img/photos/berchtesgaden-2016/2016-06-03_16-34-00_01.jpg new file mode 100644 index 0000000..31ab788 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-03_16-34-00_01.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-03_18-53-25_02-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-03_18-53-25_02-thumb.jpg new file mode 100644 index 0000000..3287ae7 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-03_18-53-25_02-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-03_18-53-25_02.jpg b/static/img/photos/berchtesgaden-2016/2016-06-03_18-53-25_02.jpg new file mode 100644 index 0000000..1a231c6 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-03_18-53-25_02.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-39_03-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-39_03-thumb.jpg new file mode 100644 index 0000000..93110fa Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-39_03-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-39_03.jpg b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-39_03.jpg new file mode 100644 index 0000000..5bc7a1f Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-39_03.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-43_04-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-43_04-thumb.jpg new file mode 100644 index 0000000..30447a5 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-43_04-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-43_04.jpg b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-43_04.jpg new file mode 100644 index 0000000..ef11214 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-04_12-59-43_04.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_11-31-01_05-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_11-31-01_05-thumb.jpg new file mode 100644 index 0000000..35936d6 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_11-31-01_05-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_11-31-01_05.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_11-31-01_05.jpg new file mode 100644 index 0000000..2704602 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_11-31-01_05.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_14-06-07_06-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_14-06-07_06-thumb.jpg new file mode 100644 index 0000000..a0eb956 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_14-06-07_06-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_14-06-07_06.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_14-06-07_06.jpg new file mode 100644 index 0000000..ecd6fbb Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_14-06-07_06.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_16-09-55_08-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_16-09-55_08-thumb.jpg new file mode 100644 index 0000000..efe4414 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_16-09-55_08-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_16-09-55_08.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_16-09-55_08.jpg new file mode 100644 index 0000000..d6c802c Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_16-09-55_08.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_20-26-17_10-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_20-26-17_10-thumb.jpg new file mode 100644 index 0000000..2fc6c79 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_20-26-17_10-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-06_20-26-17_10.jpg b/static/img/photos/berchtesgaden-2016/2016-06-06_20-26-17_10.jpg new file mode 100644 index 0000000..153d360 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-06_20-26-17_10.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_14-30-49_12-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_14-30-49_12-thumb.jpg new file mode 100644 index 0000000..fdd9845 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_14-30-49_12-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_14-30-49_12.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_14-30-49_12.jpg new file mode 100644 index 0000000..a2c28f5 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_14-30-49_12.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_15-11-28_15-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_15-11-28_15-thumb.jpg new file mode 100644 index 0000000..f676056 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_15-11-28_15-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_15-11-28_15.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_15-11-28_15.jpg new file mode 100644 index 0000000..80bbf9c Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_15-11-28_15.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_15-31-32_17-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_15-31-32_17-thumb.jpg new file mode 100644 index 0000000..7e5dfd1 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_15-31-32_17-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_15-31-32_17.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_15-31-32_17.jpg new file mode 100644 index 0000000..5235479 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_15-31-32_17.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_16-36-12_19-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_16-36-12_19-thumb.jpg new file mode 100644 index 0000000..c80c793 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_16-36-12_19-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_16-36-12_19.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_16-36-12_19.jpg new file mode 100644 index 0000000..6edb74b Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_16-36-12_19.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_16-54-17_34-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_16-54-17_34-thumb.jpg new file mode 100644 index 0000000..2cb695e Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_16-54-17_34-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_16-54-17_34.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_16-54-17_34.jpg new file mode 100644 index 0000000..8cc02b0 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_16-54-17_34.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_19-56-43_43-thumb.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_19-56-43_43-thumb.jpg new file mode 100644 index 0000000..f7dc7db Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_19-56-43_43-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/2016-06-07_19-56-43_43.jpg b/static/img/photos/berchtesgaden-2016/2016-06-07_19-56-43_43.jpg new file mode 100644 index 0000000..c591f47 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/2016-06-07_19-56-43_43.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/kings-lake-thumb.jpg b/static/img/photos/berchtesgaden-2016/kings-lake-thumb.jpg new file mode 100644 index 0000000..c7afde2 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/kings-lake-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/kings-lake.jpg b/static/img/photos/berchtesgaden-2016/kings-lake.jpg new file mode 100644 index 0000000..815ffac Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/kings-lake.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/kleiner-jenner-thumb.jpg b/static/img/photos/berchtesgaden-2016/kleiner-jenner-thumb.jpg new file mode 100644 index 0000000..0aca63b Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/kleiner-jenner-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/kleiner-jenner.jpg b/static/img/photos/berchtesgaden-2016/kleiner-jenner.jpg new file mode 100644 index 0000000..d9d4e13 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/kleiner-jenner.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/panorama-kuehroint-alm-thumb.jpg b/static/img/photos/berchtesgaden-2016/panorama-kuehroint-alm-thumb.jpg new file mode 100644 index 0000000..3e5474a Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/panorama-kuehroint-alm-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/panorama-kuehroint-alm.jpg b/static/img/photos/berchtesgaden-2016/panorama-kuehroint-alm.jpg new file mode 100644 index 0000000..d581edb Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/panorama-kuehroint-alm.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/waterfall-thumb.jpg b/static/img/photos/berchtesgaden-2016/waterfall-thumb.jpg new file mode 100644 index 0000000..d3891a1 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/waterfall-thumb.jpg differ diff --git a/static/img/photos/berchtesgaden-2016/waterfall.jpg b/static/img/photos/berchtesgaden-2016/waterfall.jpg new file mode 100644 index 0000000..41eeaf5 Binary files /dev/null and b/static/img/photos/berchtesgaden-2016/waterfall.jpg differ diff --git a/static/img/photos/dresden-2011.jpg b/static/img/photos/dresden-2011.jpg new file mode 100644 index 0000000..7eaff90 Binary files /dev/null and b/static/img/photos/dresden-2011.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7144-thumb.jpg b/static/img/photos/dresden-2011/_dsc7144-thumb.jpg new file mode 100644 index 0000000..579c293 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7144-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7144.jpg b/static/img/photos/dresden-2011/_dsc7144.jpg new file mode 100644 index 0000000..ef34235 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7144.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7147-thumb.jpg b/static/img/photos/dresden-2011/_dsc7147-thumb.jpg new file mode 100644 index 0000000..7029c31 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7147-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7147.jpg b/static/img/photos/dresden-2011/_dsc7147.jpg new file mode 100644 index 0000000..d7323eb Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7147.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7153-thumb.jpg b/static/img/photos/dresden-2011/_dsc7153-thumb.jpg new file mode 100644 index 0000000..72387ea Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7153-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7153.jpg b/static/img/photos/dresden-2011/_dsc7153.jpg new file mode 100644 index 0000000..ba10b89 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7153.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7163-thumb.jpg b/static/img/photos/dresden-2011/_dsc7163-thumb.jpg new file mode 100644 index 0000000..8cf8a12 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7163-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7163.jpg b/static/img/photos/dresden-2011/_dsc7163.jpg new file mode 100644 index 0000000..9e01672 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7163.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7172-thumb.jpg b/static/img/photos/dresden-2011/_dsc7172-thumb.jpg new file mode 100644 index 0000000..627ebf2 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7172-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7172.jpg b/static/img/photos/dresden-2011/_dsc7172.jpg new file mode 100644 index 0000000..64a5ff9 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7172.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7191-thumb.jpg b/static/img/photos/dresden-2011/_dsc7191-thumb.jpg new file mode 100644 index 0000000..fe30eca Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7191-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7191.jpg b/static/img/photos/dresden-2011/_dsc7191.jpg new file mode 100644 index 0000000..cfea565 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7191.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7193-thumb.jpg b/static/img/photos/dresden-2011/_dsc7193-thumb.jpg new file mode 100644 index 0000000..fce08a2 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7193-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7193.jpg b/static/img/photos/dresden-2011/_dsc7193.jpg new file mode 100644 index 0000000..764c0df Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7193.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7205-thumb.jpg b/static/img/photos/dresden-2011/_dsc7205-thumb.jpg new file mode 100644 index 0000000..77ccf27 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7205-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7205.jpg b/static/img/photos/dresden-2011/_dsc7205.jpg new file mode 100644 index 0000000..9bd05f8 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7205.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7206-thumb.jpg b/static/img/photos/dresden-2011/_dsc7206-thumb.jpg new file mode 100644 index 0000000..a17185c Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7206-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7206.jpg b/static/img/photos/dresden-2011/_dsc7206.jpg new file mode 100644 index 0000000..7e5d9df Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7206.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7207-thumb.jpg b/static/img/photos/dresden-2011/_dsc7207-thumb.jpg new file mode 100644 index 0000000..7f165bc Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7207-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7207.jpg b/static/img/photos/dresden-2011/_dsc7207.jpg new file mode 100644 index 0000000..5e0ccde Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7207.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7213-thumb.jpg b/static/img/photos/dresden-2011/_dsc7213-thumb.jpg new file mode 100644 index 0000000..87e699b Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7213-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7213.jpg b/static/img/photos/dresden-2011/_dsc7213.jpg new file mode 100644 index 0000000..fd09a6b Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7213.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7240-thumb.jpg b/static/img/photos/dresden-2011/_dsc7240-thumb.jpg new file mode 100644 index 0000000..5cc3177 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7240-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7240.jpg b/static/img/photos/dresden-2011/_dsc7240.jpg new file mode 100644 index 0000000..171f55e Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7240.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7245-thumb.jpg b/static/img/photos/dresden-2011/_dsc7245-thumb.jpg new file mode 100644 index 0000000..f86f024 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7245-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7245.jpg b/static/img/photos/dresden-2011/_dsc7245.jpg new file mode 100644 index 0000000..8041f35 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7245.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7249-thumb.jpg b/static/img/photos/dresden-2011/_dsc7249-thumb.jpg new file mode 100644 index 0000000..1d6aea4 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7249-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7249.jpg b/static/img/photos/dresden-2011/_dsc7249.jpg new file mode 100644 index 0000000..4798a6d Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7249.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7250-thumb.jpg b/static/img/photos/dresden-2011/_dsc7250-thumb.jpg new file mode 100644 index 0000000..31ec648 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7250-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/_dsc7250.jpg b/static/img/photos/dresden-2011/_dsc7250.jpg new file mode 100644 index 0000000..ff24793 Binary files /dev/null and b/static/img/photos/dresden-2011/_dsc7250.jpg differ diff --git a/static/img/photos/dresden-2011/frauenkirche_2-thumb.jpg b/static/img/photos/dresden-2011/frauenkirche_2-thumb.jpg new file mode 100644 index 0000000..5c6aaab Binary files /dev/null and b/static/img/photos/dresden-2011/frauenkirche_2-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/frauenkirche_2.jpg b/static/img/photos/dresden-2011/frauenkirche_2.jpg new file mode 100644 index 0000000..b04bf9a Binary files /dev/null and b/static/img/photos/dresden-2011/frauenkirche_2.jpg differ diff --git a/static/img/photos/dresden-2011/hdr-thumb.jpg b/static/img/photos/dresden-2011/hdr-thumb.jpg new file mode 100644 index 0000000..fa87306 Binary files /dev/null and b/static/img/photos/dresden-2011/hdr-thumb.jpg differ diff --git a/static/img/photos/dresden-2011/hdr.jpg b/static/img/photos/dresden-2011/hdr.jpg new file mode 100644 index 0000000..7ec4f12 Binary files /dev/null and b/static/img/photos/dresden-2011/hdr.jpg differ diff --git a/static/img/photos/flowers-trees-plants.jpg b/static/img/photos/flowers-trees-plants.jpg new file mode 100644 index 0000000..5ded43e Binary files /dev/null and b/static/img/photos/flowers-trees-plants.jpg differ diff --git a/static/img/photos/flowers-trees-plants/_dsc4963-thumb.jpg b/static/img/photos/flowers-trees-plants/_dsc4963-thumb.jpg new file mode 100644 index 0000000..f6b9c28 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/_dsc4963-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/_dsc4963.jpg b/static/img/photos/flowers-trees-plants/_dsc4963.jpg new file mode 100644 index 0000000..70967f5 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/_dsc4963.jpg differ diff --git a/static/img/photos/flowers-trees-plants/_dsc4968-thumb.jpg b/static/img/photos/flowers-trees-plants/_dsc4968-thumb.jpg new file mode 100644 index 0000000..5ef3806 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/_dsc4968-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/_dsc4968.jpg b/static/img/photos/flowers-trees-plants/_dsc4968.jpg new file mode 100644 index 0000000..6fddf9e Binary files /dev/null and b/static/img/photos/flowers-trees-plants/_dsc4968.jpg differ diff --git a/static/img/photos/flowers-trees-plants/alley-thumb.jpg b/static/img/photos/flowers-trees-plants/alley-thumb.jpg new file mode 100644 index 0000000..03e441e Binary files /dev/null and b/static/img/photos/flowers-trees-plants/alley-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/alley.jpg b/static/img/photos/flowers-trees-plants/alley.jpg new file mode 100644 index 0000000..e0e88c8 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/alley.jpg differ diff --git a/static/img/photos/flowers-trees-plants/apple_blossom-thumb.jpg b/static/img/photos/flowers-trees-plants/apple_blossom-thumb.jpg new file mode 100644 index 0000000..29f591a Binary files /dev/null and b/static/img/photos/flowers-trees-plants/apple_blossom-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/apple_blossom.jpg b/static/img/photos/flowers-trees-plants/apple_blossom.jpg new file mode 100644 index 0000000..a132fa5 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/apple_blossom.jpg differ diff --git a/static/img/photos/flowers-trees-plants/autumn-thumb.jpg b/static/img/photos/flowers-trees-plants/autumn-thumb.jpg new file mode 100644 index 0000000..d2cb755 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/autumn-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/autumn.jpg b/static/img/photos/flowers-trees-plants/autumn.jpg new file mode 100644 index 0000000..f325154 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/autumn.jpg differ diff --git a/static/img/photos/flowers-trees-plants/beautifull_spring-thumb.jpg b/static/img/photos/flowers-trees-plants/beautifull_spring-thumb.jpg new file mode 100644 index 0000000..bdee07c Binary files /dev/null and b/static/img/photos/flowers-trees-plants/beautifull_spring-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/beautifull_spring.jpg b/static/img/photos/flowers-trees-plants/beautifull_spring.jpg new file mode 100644 index 0000000..3e26269 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/beautifull_spring.jpg differ diff --git a/static/img/photos/flowers-trees-plants/bud_become_rose-thumb.jpg b/static/img/photos/flowers-trees-plants/bud_become_rose-thumb.jpg new file mode 100644 index 0000000..0bf22e5 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/bud_become_rose-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/bud_become_rose.jpg b/static/img/photos/flowers-trees-plants/bud_become_rose.jpg new file mode 100644 index 0000000..c5ab3be Binary files /dev/null and b/static/img/photos/flowers-trees-plants/bud_become_rose.jpg differ diff --git a/static/img/photos/flowers-trees-plants/cherry_blossoms_6832-thumb.jpg b/static/img/photos/flowers-trees-plants/cherry_blossoms_6832-thumb.jpg new file mode 100644 index 0000000..48fc2d0 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/cherry_blossoms_6832-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/cherry_blossoms_6832.jpg b/static/img/photos/flowers-trees-plants/cherry_blossoms_6832.jpg new file mode 100644 index 0000000..53316f1 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/cherry_blossoms_6832.jpg differ diff --git a/static/img/photos/flowers-trees-plants/clover-thumb.jpg b/static/img/photos/flowers-trees-plants/clover-thumb.jpg new file mode 100644 index 0000000..a8fc980 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/clover-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/clover.jpg b/static/img/photos/flowers-trees-plants/clover.jpg new file mode 100644 index 0000000..378b347 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/clover.jpg differ diff --git a/static/img/photos/flowers-trees-plants/coloured_leaves-thumb.jpg b/static/img/photos/flowers-trees-plants/coloured_leaves-thumb.jpg new file mode 100644 index 0000000..626bbef Binary files /dev/null and b/static/img/photos/flowers-trees-plants/coloured_leaves-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/coloured_leaves.jpg b/static/img/photos/flowers-trees-plants/coloured_leaves.jpg new file mode 100644 index 0000000..acfc154 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/coloured_leaves.jpg differ diff --git a/static/img/photos/flowers-trees-plants/corn_2-thumb.jpg b/static/img/photos/flowers-trees-plants/corn_2-thumb.jpg new file mode 100644 index 0000000..6015735 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/corn_2-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/corn_2.jpg b/static/img/photos/flowers-trees-plants/corn_2.jpg new file mode 100644 index 0000000..bc301ce Binary files /dev/null and b/static/img/photos/flowers-trees-plants/corn_2.jpg differ diff --git a/static/img/photos/flowers-trees-plants/crop_iii-thumb.jpg b/static/img/photos/flowers-trees-plants/crop_iii-thumb.jpg new file mode 100644 index 0000000..bbbe4bf Binary files /dev/null and b/static/img/photos/flowers-trees-plants/crop_iii-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/crop_iii.jpg b/static/img/photos/flowers-trees-plants/crop_iii.jpg new file mode 100644 index 0000000..1b62f23 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/crop_iii.jpg differ diff --git a/static/img/photos/flowers-trees-plants/daisy-thumb.jpg b/static/img/photos/flowers-trees-plants/daisy-thumb.jpg new file mode 100644 index 0000000..cd38666 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/daisy-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/daisy.jpg b/static/img/photos/flowers-trees-plants/daisy.jpg new file mode 100644 index 0000000..fc29596 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/daisy.jpg differ diff --git a/static/img/photos/flowers-trees-plants/flowers-thumb.jpg b/static/img/photos/flowers-trees-plants/flowers-thumb.jpg new file mode 100644 index 0000000..51c9298 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/flowers-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/flowers.jpg b/static/img/photos/flowers-trees-plants/flowers.jpg new file mode 100644 index 0000000..8b687c8 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/flowers.jpg differ diff --git a/static/img/photos/flowers-trees-plants/forest-thumb.jpg b/static/img/photos/flowers-trees-plants/forest-thumb.jpg new file mode 100644 index 0000000..6e3bcc0 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/forest-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/forest.jpg b/static/img/photos/flowers-trees-plants/forest.jpg new file mode 100644 index 0000000..defa69e Binary files /dev/null and b/static/img/photos/flowers-trees-plants/forest.jpg differ diff --git a/static/img/photos/flowers-trees-plants/forget-me-not-thumb.jpg b/static/img/photos/flowers-trees-plants/forget-me-not-thumb.jpg new file mode 100644 index 0000000..afe1652 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/forget-me-not-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/forget-me-not.jpg b/static/img/photos/flowers-trees-plants/forget-me-not.jpg new file mode 100644 index 0000000..4dab11f Binary files /dev/null and b/static/img/photos/flowers-trees-plants/forget-me-not.jpg differ diff --git a/static/img/photos/flowers-trees-plants/green_spring-thumb.jpg b/static/img/photos/flowers-trees-plants/green_spring-thumb.jpg new file mode 100644 index 0000000..bd9d0a4 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/green_spring-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/green_spring.jpg b/static/img/photos/flowers-trees-plants/green_spring.jpg new file mode 100644 index 0000000..0d342c5 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/green_spring.jpg differ diff --git a/static/img/photos/flowers-trees-plants/green_trees_i-thumb.jpg b/static/img/photos/flowers-trees-plants/green_trees_i-thumb.jpg new file mode 100644 index 0000000..b29dc18 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/green_trees_i-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/green_trees_i.jpg b/static/img/photos/flowers-trees-plants/green_trees_i.jpg new file mode 100644 index 0000000..7a2a30a Binary files /dev/null and b/static/img/photos/flowers-trees-plants/green_trees_i.jpg differ diff --git a/static/img/photos/flowers-trees-plants/green_trees_ii-thumb.jpg b/static/img/photos/flowers-trees-plants/green_trees_ii-thumb.jpg new file mode 100644 index 0000000..49ce72f Binary files /dev/null and b/static/img/photos/flowers-trees-plants/green_trees_ii-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/green_trees_ii.jpg b/static/img/photos/flowers-trees-plants/green_trees_ii.jpg new file mode 100644 index 0000000..6513076 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/green_trees_ii.jpg differ diff --git a/static/img/photos/flowers-trees-plants/lily_of_the_valley-thumb.jpg b/static/img/photos/flowers-trees-plants/lily_of_the_valley-thumb.jpg new file mode 100644 index 0000000..9af9249 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/lily_of_the_valley-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/lily_of_the_valley.jpg b/static/img/photos/flowers-trees-plants/lily_of_the_valley.jpg new file mode 100644 index 0000000..d62bca5 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/lily_of_the_valley.jpg differ diff --git a/static/img/photos/flowers-trees-plants/moss-2-thumb.jpg b/static/img/photos/flowers-trees-plants/moss-2-thumb.jpg new file mode 100644 index 0000000..5128aa1 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/moss-2-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/moss-2.jpg b/static/img/photos/flowers-trees-plants/moss-2.jpg new file mode 100644 index 0000000..1ccd829 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/moss-2.jpg differ diff --git a/static/img/photos/flowers-trees-plants/moss-thumb.jpg b/static/img/photos/flowers-trees-plants/moss-thumb.jpg new file mode 100644 index 0000000..982414f Binary files /dev/null and b/static/img/photos/flowers-trees-plants/moss-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/moss.jpg b/static/img/photos/flowers-trees-plants/moss.jpg new file mode 100644 index 0000000..e837ba3 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/moss.jpg differ diff --git a/static/img/photos/flowers-trees-plants/red_blossoms-thumb.jpg b/static/img/photos/flowers-trees-plants/red_blossoms-thumb.jpg new file mode 100644 index 0000000..a00449e Binary files /dev/null and b/static/img/photos/flowers-trees-plants/red_blossoms-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/red_blossoms.jpg b/static/img/photos/flowers-trees-plants/red_blossoms.jpg new file mode 100644 index 0000000..42a129c Binary files /dev/null and b/static/img/photos/flowers-trees-plants/red_blossoms.jpg differ diff --git a/static/img/photos/flowers-trees-plants/red_flower-thumb.jpg b/static/img/photos/flowers-trees-plants/red_flower-thumb.jpg new file mode 100644 index 0000000..5e87dae Binary files /dev/null and b/static/img/photos/flowers-trees-plants/red_flower-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/red_flower.jpg b/static/img/photos/flowers-trees-plants/red_flower.jpg new file mode 100644 index 0000000..7bc51ab Binary files /dev/null and b/static/img/photos/flowers-trees-plants/red_flower.jpg differ diff --git a/static/img/photos/flowers-trees-plants/red_rose-thumb.jpg b/static/img/photos/flowers-trees-plants/red_rose-thumb.jpg new file mode 100644 index 0000000..098d7c3 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/red_rose-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/red_rose.jpg b/static/img/photos/flowers-trees-plants/red_rose.jpg new file mode 100644 index 0000000..2722f3e Binary files /dev/null and b/static/img/photos/flowers-trees-plants/red_rose.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose-thumb.jpg b/static/img/photos/flowers-trees-plants/rose-thumb.jpg new file mode 100644 index 0000000..b397d2b Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose.jpg b/static/img/photos/flowers-trees-plants/rose.jpg new file mode 100644 index 0000000..af577e5 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_i-thumb.jpg b/static/img/photos/flowers-trees-plants/rose_i-thumb.jpg new file mode 100644 index 0000000..ec66f70 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_i-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_i.jpg b/static/img/photos/flowers-trees-plants/rose_i.jpg new file mode 100644 index 0000000..5108af7 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_i.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_ii-thumb.jpg b/static/img/photos/flowers-trees-plants/rose_ii-thumb.jpg new file mode 100644 index 0000000..2cf87e7 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_ii-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_ii.jpg b/static/img/photos/flowers-trees-plants/rose_ii.jpg new file mode 100644 index 0000000..66dc1a1 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_ii.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_iii-thumb.jpg b/static/img/photos/flowers-trees-plants/rose_iii-thumb.jpg new file mode 100644 index 0000000..6b9fbba Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_iii-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_iii.jpg b/static/img/photos/flowers-trees-plants/rose_iii.jpg new file mode 100644 index 0000000..7809e50 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_iii.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_in_sunshine-thumb.jpg b/static/img/photos/flowers-trees-plants/rose_in_sunshine-thumb.jpg new file mode 100644 index 0000000..f9e49a9 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_in_sunshine-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_in_sunshine.jpg b/static/img/photos/flowers-trees-plants/rose_in_sunshine.jpg new file mode 100644 index 0000000..ce6985a Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_in_sunshine.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_iv-thumb.jpg b/static/img/photos/flowers-trees-plants/rose_iv-thumb.jpg new file mode 100644 index 0000000..86888e1 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_iv-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_iv.jpg b/static/img/photos/flowers-trees-plants/rose_iv.jpg new file mode 100644 index 0000000..5fe0766 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_iv.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_v-thumb.jpg b/static/img/photos/flowers-trees-plants/rose_v-thumb.jpg new file mode 100644 index 0000000..89ec93e Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_v-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_v.jpg b/static/img/photos/flowers-trees-plants/rose_v.jpg new file mode 100644 index 0000000..ea012d5 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_v.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_vi-thumb.jpg b/static/img/photos/flowers-trees-plants/rose_vi-thumb.jpg new file mode 100644 index 0000000..eee0a44 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_vi-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/rose_vi.jpg b/static/img/photos/flowers-trees-plants/rose_vi.jpg new file mode 100644 index 0000000..5955418 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/rose_vi.jpg differ diff --git a/static/img/photos/flowers-trees-plants/roses-thumb.jpg b/static/img/photos/flowers-trees-plants/roses-thumb.jpg new file mode 100644 index 0000000..d941e76 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/roses-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/roses.jpg b/static/img/photos/flowers-trees-plants/roses.jpg new file mode 100644 index 0000000..b19b6b4 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/roses.jpg differ diff --git a/static/img/photos/flowers-trees-plants/shining_sunflower-thumb.jpg b/static/img/photos/flowers-trees-plants/shining_sunflower-thumb.jpg new file mode 100644 index 0000000..d7e7b7d Binary files /dev/null and b/static/img/photos/flowers-trees-plants/shining_sunflower-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/shining_sunflower.jpg b/static/img/photos/flowers-trees-plants/shining_sunflower.jpg new file mode 100644 index 0000000..e5edf0a Binary files /dev/null and b/static/img/photos/flowers-trees-plants/shining_sunflower.jpg differ diff --git a/static/img/photos/flowers-trees-plants/snowdrop-thumb.jpg b/static/img/photos/flowers-trees-plants/snowdrop-thumb.jpg new file mode 100644 index 0000000..6f5265d Binary files /dev/null and b/static/img/photos/flowers-trees-plants/snowdrop-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/snowdrop.jpg b/static/img/photos/flowers-trees-plants/snowdrop.jpg new file mode 100644 index 0000000..33acd8b Binary files /dev/null and b/static/img/photos/flowers-trees-plants/snowdrop.jpg differ diff --git a/static/img/photos/flowers-trees-plants/spring-thumb.jpg b/static/img/photos/flowers-trees-plants/spring-thumb.jpg new file mode 100644 index 0000000..79420a7 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/spring-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/spring.jpg b/static/img/photos/flowers-trees-plants/spring.jpg new file mode 100644 index 0000000..8c374b3 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/spring.jpg differ diff --git a/static/img/photos/flowers-trees-plants/summer-thumb.jpg b/static/img/photos/flowers-trees-plants/summer-thumb.jpg new file mode 100644 index 0000000..06a5144 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/summer-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/summer.jpg b/static/img/photos/flowers-trees-plants/summer.jpg new file mode 100644 index 0000000..fe8e176 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/summer.jpg differ diff --git a/static/img/photos/flowers-trees-plants/sunflower-thumb.jpg b/static/img/photos/flowers-trees-plants/sunflower-thumb.jpg new file mode 100644 index 0000000..0d43091 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/sunflower-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/sunflower.jpg b/static/img/photos/flowers-trees-plants/sunflower.jpg new file mode 100644 index 0000000..7469d11 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/sunflower.jpg differ diff --git a/static/img/photos/flowers-trees-plants/sunset_flower-thumb.jpg b/static/img/photos/flowers-trees-plants/sunset_flower-thumb.jpg new file mode 100644 index 0000000..efdd4a4 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/sunset_flower-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/sunset_flower.jpg b/static/img/photos/flowers-trees-plants/sunset_flower.jpg new file mode 100644 index 0000000..20a8caf Binary files /dev/null and b/static/img/photos/flowers-trees-plants/sunset_flower.jpg differ diff --git a/static/img/photos/flowers-trees-plants/tree_in_autumn-thumb.jpg b/static/img/photos/flowers-trees-plants/tree_in_autumn-thumb.jpg new file mode 100644 index 0000000..5d806ba Binary files /dev/null and b/static/img/photos/flowers-trees-plants/tree_in_autumn-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/tree_in_autumn.jpg b/static/img/photos/flowers-trees-plants/tree_in_autumn.jpg new file mode 100644 index 0000000..ea803a1 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/tree_in_autumn.jpg differ diff --git a/static/img/photos/flowers-trees-plants/tree_in_autumn_sun-thumb.jpg b/static/img/photos/flowers-trees-plants/tree_in_autumn_sun-thumb.jpg new file mode 100644 index 0000000..135142e Binary files /dev/null and b/static/img/photos/flowers-trees-plants/tree_in_autumn_sun-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/tree_in_autumn_sun.jpg b/static/img/photos/flowers-trees-plants/tree_in_autumn_sun.jpg new file mode 100644 index 0000000..55b1d87 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/tree_in_autumn_sun.jpg differ diff --git a/static/img/photos/flowers-trees-plants/vine_leaves-thumb.jpg b/static/img/photos/flowers-trees-plants/vine_leaves-thumb.jpg new file mode 100644 index 0000000..c7ff24c Binary files /dev/null and b/static/img/photos/flowers-trees-plants/vine_leaves-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/vine_leaves.jpg b/static/img/photos/flowers-trees-plants/vine_leaves.jpg new file mode 100644 index 0000000..5e82408 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/vine_leaves.jpg differ diff --git a/static/img/photos/flowers-trees-plants/yellow_rose-thumb.jpg b/static/img/photos/flowers-trees-plants/yellow_rose-thumb.jpg new file mode 100644 index 0000000..adac67a Binary files /dev/null and b/static/img/photos/flowers-trees-plants/yellow_rose-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/yellow_rose.jpg b/static/img/photos/flowers-trees-plants/yellow_rose.jpg new file mode 100644 index 0000000..f591606 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/yellow_rose.jpg differ diff --git a/static/img/photos/flowers-trees-plants/yellow_rose_color-thumb.jpg b/static/img/photos/flowers-trees-plants/yellow_rose_color-thumb.jpg new file mode 100644 index 0000000..97ae068 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/yellow_rose_color-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/yellow_rose_color.jpg b/static/img/photos/flowers-trees-plants/yellow_rose_color.jpg new file mode 100644 index 0000000..d752263 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/yellow_rose_color.jpg differ diff --git a/static/img/photos/flowers-trees-plants/yellow_rose_ii-thumb.jpg b/static/img/photos/flowers-trees-plants/yellow_rose_ii-thumb.jpg new file mode 100644 index 0000000..8c58f27 Binary files /dev/null and b/static/img/photos/flowers-trees-plants/yellow_rose_ii-thumb.jpg differ diff --git a/static/img/photos/flowers-trees-plants/yellow_rose_ii.jpg b/static/img/photos/flowers-trees-plants/yellow_rose_ii.jpg new file mode 100644 index 0000000..3dddf5d Binary files /dev/null and b/static/img/photos/flowers-trees-plants/yellow_rose_ii.jpg differ diff --git a/static/img/photos/food.jpg b/static/img/photos/food.jpg new file mode 100644 index 0000000..f6b5324 Binary files /dev/null and b/static/img/photos/food.jpg differ diff --git a/static/img/photos/food/_dsc6377-thumb.jpg b/static/img/photos/food/_dsc6377-thumb.jpg new file mode 100644 index 0000000..b8d0cd1 Binary files /dev/null and b/static/img/photos/food/_dsc6377-thumb.jpg differ diff --git a/static/img/photos/food/_dsc6377.jpg b/static/img/photos/food/_dsc6377.jpg new file mode 100644 index 0000000..f0f4b91 Binary files /dev/null and b/static/img/photos/food/_dsc6377.jpg differ diff --git a/static/img/photos/food/_dsc6378-thumb.jpg b/static/img/photos/food/_dsc6378-thumb.jpg new file mode 100644 index 0000000..b805012 Binary files /dev/null and b/static/img/photos/food/_dsc6378-thumb.jpg differ diff --git a/static/img/photos/food/_dsc6378.jpg b/static/img/photos/food/_dsc6378.jpg new file mode 100644 index 0000000..05af082 Binary files /dev/null and b/static/img/photos/food/_dsc6378.jpg differ diff --git a/static/img/photos/food/_dsc6382-thumb.jpg b/static/img/photos/food/_dsc6382-thumb.jpg new file mode 100644 index 0000000..177561c Binary files /dev/null and b/static/img/photos/food/_dsc6382-thumb.jpg differ diff --git a/static/img/photos/food/_dsc6382.jpg b/static/img/photos/food/_dsc6382.jpg new file mode 100644 index 0000000..4f3e0cd Binary files /dev/null and b/static/img/photos/food/_dsc6382.jpg differ diff --git a/static/img/photos/food/bap-thumb.jpg b/static/img/photos/food/bap-thumb.jpg new file mode 100644 index 0000000..5e79bdc Binary files /dev/null and b/static/img/photos/food/bap-thumb.jpg differ diff --git a/static/img/photos/food/bap.jpg b/static/img/photos/food/bap.jpg new file mode 100644 index 0000000..3ac4054 Binary files /dev/null and b/static/img/photos/food/bap.jpg differ diff --git a/static/img/photos/food/blue_grapes_2-thumb.jpg b/static/img/photos/food/blue_grapes_2-thumb.jpg new file mode 100644 index 0000000..1901ccd Binary files /dev/null and b/static/img/photos/food/blue_grapes_2-thumb.jpg differ diff --git a/static/img/photos/food/blue_grapes_2.jpg b/static/img/photos/food/blue_grapes_2.jpg new file mode 100644 index 0000000..782fe7a Binary files /dev/null and b/static/img/photos/food/blue_grapes_2.jpg differ diff --git a/static/img/photos/food/bread-thumb.jpg b/static/img/photos/food/bread-thumb.jpg new file mode 100644 index 0000000..4f41583 Binary files /dev/null and b/static/img/photos/food/bread-thumb.jpg differ diff --git a/static/img/photos/food/bread.jpg b/static/img/photos/food/bread.jpg new file mode 100644 index 0000000..3ffe8c4 Binary files /dev/null and b/static/img/photos/food/bread.jpg differ diff --git a/static/img/photos/food/bread_ii-thumb.jpg b/static/img/photos/food/bread_ii-thumb.jpg new file mode 100644 index 0000000..3fb30cd Binary files /dev/null and b/static/img/photos/food/bread_ii-thumb.jpg differ diff --git a/static/img/photos/food/bread_ii.jpg b/static/img/photos/food/bread_ii.jpg new file mode 100644 index 0000000..72dcf29 Binary files /dev/null and b/static/img/photos/food/bread_ii.jpg differ diff --git a/static/img/photos/food/burger-roll-thumb.jpg b/static/img/photos/food/burger-roll-thumb.jpg new file mode 100644 index 0000000..99a4a95 Binary files /dev/null and b/static/img/photos/food/burger-roll-thumb.jpg differ diff --git a/static/img/photos/food/burger-roll.jpg b/static/img/photos/food/burger-roll.jpg new file mode 100644 index 0000000..a8313a8 Binary files /dev/null and b/static/img/photos/food/burger-roll.jpg differ diff --git a/static/img/photos/food/coco-ginger-carrot-soup-thumb.jpg b/static/img/photos/food/coco-ginger-carrot-soup-thumb.jpg new file mode 100644 index 0000000..ae2b143 Binary files /dev/null and b/static/img/photos/food/coco-ginger-carrot-soup-thumb.jpg differ diff --git a/static/img/photos/food/coco-ginger-carrot-soup.jpg b/static/img/photos/food/coco-ginger-carrot-soup.jpg new file mode 100644 index 0000000..3e69888 Binary files /dev/null and b/static/img/photos/food/coco-ginger-carrot-soup.jpg differ diff --git a/static/img/photos/food/cranberry-white-chocholate-cookies-thumb.jpg b/static/img/photos/food/cranberry-white-chocholate-cookies-thumb.jpg new file mode 100644 index 0000000..da21884 Binary files /dev/null and b/static/img/photos/food/cranberry-white-chocholate-cookies-thumb.jpg differ diff --git a/static/img/photos/food/cranberry-white-chocholate-cookies.jpg b/static/img/photos/food/cranberry-white-chocholate-cookies.jpg new file mode 100644 index 0000000..07e0c23 Binary files /dev/null and b/static/img/photos/food/cranberry-white-chocholate-cookies.jpg differ diff --git a/static/img/photos/food/guacamole-thumb.jpg b/static/img/photos/food/guacamole-thumb.jpg new file mode 100644 index 0000000..900732b Binary files /dev/null and b/static/img/photos/food/guacamole-thumb.jpg differ diff --git a/static/img/photos/food/guacamole.jpg b/static/img/photos/food/guacamole.jpg new file mode 100644 index 0000000..020a814 Binary files /dev/null and b/static/img/photos/food/guacamole.jpg differ diff --git a/static/img/photos/food/kiwi-thumb.jpg b/static/img/photos/food/kiwi-thumb.jpg new file mode 100644 index 0000000..c5b0920 Binary files /dev/null and b/static/img/photos/food/kiwi-thumb.jpg differ diff --git a/static/img/photos/food/kiwi.jpg b/static/img/photos/food/kiwi.jpg new file mode 100644 index 0000000..8fa6904 Binary files /dev/null and b/static/img/photos/food/kiwi.jpg differ diff --git a/static/img/photos/food/muffin-thumb.jpg b/static/img/photos/food/muffin-thumb.jpg new file mode 100644 index 0000000..e6a9124 Binary files /dev/null and b/static/img/photos/food/muffin-thumb.jpg differ diff --git a/static/img/photos/food/muffin.jpg b/static/img/photos/food/muffin.jpg new file mode 100644 index 0000000..c164a9f Binary files /dev/null and b/static/img/photos/food/muffin.jpg differ diff --git a/static/img/photos/food/oven_ii-thumb.jpg b/static/img/photos/food/oven_ii-thumb.jpg new file mode 100644 index 0000000..b8053ea Binary files /dev/null and b/static/img/photos/food/oven_ii-thumb.jpg differ diff --git a/static/img/photos/food/oven_ii.jpg b/static/img/photos/food/oven_ii.jpg new file mode 100644 index 0000000..9c63765 Binary files /dev/null and b/static/img/photos/food/oven_ii.jpg differ diff --git a/static/img/photos/food/pancakes-thumb.jpg b/static/img/photos/food/pancakes-thumb.jpg new file mode 100644 index 0000000..1c25613 Binary files /dev/null and b/static/img/photos/food/pancakes-thumb.jpg differ diff --git a/static/img/photos/food/pancakes.jpg b/static/img/photos/food/pancakes.jpg new file mode 100644 index 0000000..50656b7 Binary files /dev/null and b/static/img/photos/food/pancakes.jpg differ diff --git a/static/img/photos/food/sour-cream-thumb.jpg b/static/img/photos/food/sour-cream-thumb.jpg new file mode 100644 index 0000000..de5f5d5 Binary files /dev/null and b/static/img/photos/food/sour-cream-thumb.jpg differ diff --git a/static/img/photos/food/sour-cream.jpg b/static/img/photos/food/sour-cream.jpg new file mode 100644 index 0000000..b3a5232 Binary files /dev/null and b/static/img/photos/food/sour-cream.jpg differ diff --git a/static/img/photos/kaernten-2007.jpg b/static/img/photos/kaernten-2007.jpg new file mode 100644 index 0000000..7654efb Binary files /dev/null and b/static/img/photos/kaernten-2007.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0047-thumb.jpg b/static/img/photos/kaernten-2007/img_0047-thumb.jpg new file mode 100644 index 0000000..3a024d7 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0047-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0047.jpg b/static/img/photos/kaernten-2007/img_0047.jpg new file mode 100644 index 0000000..9ef9dce Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0047.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0048-thumb.jpg b/static/img/photos/kaernten-2007/img_0048-thumb.jpg new file mode 100644 index 0000000..87b976b Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0048-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0048.jpg b/static/img/photos/kaernten-2007/img_0048.jpg new file mode 100644 index 0000000..644e228 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0048.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0054-thumb.jpg b/static/img/photos/kaernten-2007/img_0054-thumb.jpg new file mode 100644 index 0000000..ac3bd55 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0054-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0054.jpg b/static/img/photos/kaernten-2007/img_0054.jpg new file mode 100644 index 0000000..7b176d1 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0054.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0058-thumb.jpg b/static/img/photos/kaernten-2007/img_0058-thumb.jpg new file mode 100644 index 0000000..b782a26 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0058-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0058.jpg b/static/img/photos/kaernten-2007/img_0058.jpg new file mode 100644 index 0000000..874353e Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0058.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0060-thumb.jpg b/static/img/photos/kaernten-2007/img_0060-thumb.jpg new file mode 100644 index 0000000..428036f Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0060-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0060.jpg b/static/img/photos/kaernten-2007/img_0060.jpg new file mode 100644 index 0000000..f7ffb70 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0060.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0064-thumb.jpg b/static/img/photos/kaernten-2007/img_0064-thumb.jpg new file mode 100644 index 0000000..00ccf69 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0064-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0064.jpg b/static/img/photos/kaernten-2007/img_0064.jpg new file mode 100644 index 0000000..f5848dd Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0064.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0068-thumb.jpg b/static/img/photos/kaernten-2007/img_0068-thumb.jpg new file mode 100644 index 0000000..ff33e1f Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0068-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0068.jpg b/static/img/photos/kaernten-2007/img_0068.jpg new file mode 100644 index 0000000..1be0a92 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0068.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0076-thumb.jpg b/static/img/photos/kaernten-2007/img_0076-thumb.jpg new file mode 100644 index 0000000..c0562bf Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0076-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0076.jpg b/static/img/photos/kaernten-2007/img_0076.jpg new file mode 100644 index 0000000..9acbe59 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0076.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0086-thumb.jpg b/static/img/photos/kaernten-2007/img_0086-thumb.jpg new file mode 100644 index 0000000..cac78a5 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0086-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0086.jpg b/static/img/photos/kaernten-2007/img_0086.jpg new file mode 100644 index 0000000..9948f20 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0086.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0101-thumb.jpg b/static/img/photos/kaernten-2007/img_0101-thumb.jpg new file mode 100644 index 0000000..0d29778 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0101-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0101.jpg b/static/img/photos/kaernten-2007/img_0101.jpg new file mode 100644 index 0000000..09b7d4c Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0101.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0104-thumb.jpg b/static/img/photos/kaernten-2007/img_0104-thumb.jpg new file mode 100644 index 0000000..b74f4a1 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0104-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0104.jpg b/static/img/photos/kaernten-2007/img_0104.jpg new file mode 100644 index 0000000..32f769b Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0104.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0108-thumb.jpg b/static/img/photos/kaernten-2007/img_0108-thumb.jpg new file mode 100644 index 0000000..53f89bd Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0108-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0108.jpg b/static/img/photos/kaernten-2007/img_0108.jpg new file mode 100644 index 0000000..ec09508 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0108.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0111-thumb.jpg b/static/img/photos/kaernten-2007/img_0111-thumb.jpg new file mode 100644 index 0000000..0e00e21 Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0111-thumb.jpg differ diff --git a/static/img/photos/kaernten-2007/img_0111.jpg b/static/img/photos/kaernten-2007/img_0111.jpg new file mode 100644 index 0000000..d06118d Binary files /dev/null and b/static/img/photos/kaernten-2007/img_0111.jpg differ diff --git a/static/img/photos/lake-constance-2013.jpg b/static/img/photos/lake-constance-2013.jpg new file mode 100644 index 0000000..8dab807 Binary files /dev/null and b/static/img/photos/lake-constance-2013.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3280-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3280-thumb.jpg new file mode 100644 index 0000000..79835e2 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3280-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3280.jpg b/static/img/photos/lake-constance-2013/_dsc3280.jpg new file mode 100644 index 0000000..28fab83 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3280.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3326-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3326-thumb.jpg new file mode 100644 index 0000000..425015e Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3326-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3326.jpg b/static/img/photos/lake-constance-2013/_dsc3326.jpg new file mode 100644 index 0000000..03f00bb Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3326.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3327-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3327-thumb.jpg new file mode 100644 index 0000000..3716634 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3327-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3327.jpg b/static/img/photos/lake-constance-2013/_dsc3327.jpg new file mode 100644 index 0000000..cbbe694 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3327.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3361-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3361-thumb.jpg new file mode 100644 index 0000000..89f570b Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3361-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3361.jpg b/static/img/photos/lake-constance-2013/_dsc3361.jpg new file mode 100644 index 0000000..9f8ad72 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3361.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3406-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3406-thumb.jpg new file mode 100644 index 0000000..86f8d88 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3406-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3406.jpg b/static/img/photos/lake-constance-2013/_dsc3406.jpg new file mode 100644 index 0000000..98e3ed8 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3406.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3407-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3407-thumb.jpg new file mode 100644 index 0000000..c340448 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3407-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3407.jpg b/static/img/photos/lake-constance-2013/_dsc3407.jpg new file mode 100644 index 0000000..0ebdfc2 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3407.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3413-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3413-thumb.jpg new file mode 100644 index 0000000..0b0fb13 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3413-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3413.jpg b/static/img/photos/lake-constance-2013/_dsc3413.jpg new file mode 100644 index 0000000..eff2102 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3413.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3426-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3426-thumb.jpg new file mode 100644 index 0000000..f45ec1c Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3426-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3426.jpg b/static/img/photos/lake-constance-2013/_dsc3426.jpg new file mode 100644 index 0000000..36b261f Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3426.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3435-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3435-thumb.jpg new file mode 100644 index 0000000..dd890ed Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3435-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3435.jpg b/static/img/photos/lake-constance-2013/_dsc3435.jpg new file mode 100644 index 0000000..7c3a17f Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3435.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3439-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3439-thumb.jpg new file mode 100644 index 0000000..fede487 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3439-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3439.jpg b/static/img/photos/lake-constance-2013/_dsc3439.jpg new file mode 100644 index 0000000..f990bf8 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3439.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3452-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3452-thumb.jpg new file mode 100644 index 0000000..cb25990 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3452-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3452.jpg b/static/img/photos/lake-constance-2013/_dsc3452.jpg new file mode 100644 index 0000000..97265c9 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3452.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3473-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3473-thumb.jpg new file mode 100644 index 0000000..5b5ddc9 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3473-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3473.jpg b/static/img/photos/lake-constance-2013/_dsc3473.jpg new file mode 100644 index 0000000..e3cdec6 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3473.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3476-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3476-thumb.jpg new file mode 100644 index 0000000..0677758 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3476-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3476.jpg b/static/img/photos/lake-constance-2013/_dsc3476.jpg new file mode 100644 index 0000000..76e5de5 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3476.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3496-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3496-thumb.jpg new file mode 100644 index 0000000..c29e7be Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3496-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3496.jpg b/static/img/photos/lake-constance-2013/_dsc3496.jpg new file mode 100644 index 0000000..689acdf Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3496.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3547-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3547-thumb.jpg new file mode 100644 index 0000000..47a11e4 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3547-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3547.jpg b/static/img/photos/lake-constance-2013/_dsc3547.jpg new file mode 100644 index 0000000..e3d0050 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3547.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3587-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3587-thumb.jpg new file mode 100644 index 0000000..79b8087 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3587-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3587.jpg b/static/img/photos/lake-constance-2013/_dsc3587.jpg new file mode 100644 index 0000000..fade441 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3587.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3630-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3630-thumb.jpg new file mode 100644 index 0000000..3493ffe Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3630-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3630.jpg b/static/img/photos/lake-constance-2013/_dsc3630.jpg new file mode 100644 index 0000000..f2af91b Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3630.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3635-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3635-thumb.jpg new file mode 100644 index 0000000..74ec334 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3635-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3635.jpg b/static/img/photos/lake-constance-2013/_dsc3635.jpg new file mode 100644 index 0000000..7bef773 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3635.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3652-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3652-thumb.jpg new file mode 100644 index 0000000..d5eab1b Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3652-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3652.jpg b/static/img/photos/lake-constance-2013/_dsc3652.jpg new file mode 100644 index 0000000..5528efe Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3652.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3657-thumb.jpg b/static/img/photos/lake-constance-2013/_dsc3657-thumb.jpg new file mode 100644 index 0000000..064c2bf Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3657-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/_dsc3657.jpg b/static/img/photos/lake-constance-2013/_dsc3657.jpg new file mode 100644 index 0000000..8b0f0e5 Binary files /dev/null and b/static/img/photos/lake-constance-2013/_dsc3657.jpg differ diff --git a/static/img/photos/lake-constance-2013/lake_constance_2-thumb.jpg b/static/img/photos/lake-constance-2013/lake_constance_2-thumb.jpg new file mode 100644 index 0000000..c8ae409 Binary files /dev/null and b/static/img/photos/lake-constance-2013/lake_constance_2-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/lake_constance_2.jpg b/static/img/photos/lake-constance-2013/lake_constance_2.jpg new file mode 100644 index 0000000..d2bd899 Binary files /dev/null and b/static/img/photos/lake-constance-2013/lake_constance_2.jpg differ diff --git a/static/img/photos/lake-constance-2013/lake_constance_3-thumb.jpg b/static/img/photos/lake-constance-2013/lake_constance_3-thumb.jpg new file mode 100644 index 0000000..4d38833 Binary files /dev/null and b/static/img/photos/lake-constance-2013/lake_constance_3-thumb.jpg differ diff --git a/static/img/photos/lake-constance-2013/lake_constance_3.jpg b/static/img/photos/lake-constance-2013/lake_constance_3.jpg new file mode 100644 index 0000000..439a87e Binary files /dev/null and b/static/img/photos/lake-constance-2013/lake_constance_3.jpg differ diff --git a/static/img/photos/landscapes.jpg b/static/img/photos/landscapes.jpg new file mode 100644 index 0000000..82cf3eb Binary files /dev/null and b/static/img/photos/landscapes.jpg differ diff --git a/static/img/photos/landscapes/a-place-to-rest-thumb.jpg b/static/img/photos/landscapes/a-place-to-rest-thumb.jpg new file mode 100644 index 0000000..2b7d968 Binary files /dev/null and b/static/img/photos/landscapes/a-place-to-rest-thumb.jpg differ diff --git a/static/img/photos/landscapes/a-place-to-rest.jpg b/static/img/photos/landscapes/a-place-to-rest.jpg new file mode 100644 index 0000000..f2128c5 Binary files /dev/null and b/static/img/photos/landscapes/a-place-to-rest.jpg differ diff --git a/static/img/photos/landscapes/alley-thumb.jpg b/static/img/photos/landscapes/alley-thumb.jpg new file mode 100644 index 0000000..03e441e Binary files /dev/null and b/static/img/photos/landscapes/alley-thumb.jpg differ diff --git a/static/img/photos/landscapes/alley.jpg b/static/img/photos/landscapes/alley.jpg new file mode 100644 index 0000000..e0e88c8 Binary files /dev/null and b/static/img/photos/landscapes/alley.jpg differ diff --git a/static/img/photos/landscapes/autumn-sun-thumb.jpg b/static/img/photos/landscapes/autumn-sun-thumb.jpg new file mode 100644 index 0000000..fe8d582 Binary files /dev/null and b/static/img/photos/landscapes/autumn-sun-thumb.jpg differ diff --git a/static/img/photos/landscapes/autumn-sun.jpg b/static/img/photos/landscapes/autumn-sun.jpg new file mode 100644 index 0000000..9b70db0 Binary files /dev/null and b/static/img/photos/landscapes/autumn-sun.jpg differ diff --git a/static/img/photos/landscapes/dsc_4431-thumb.jpg b/static/img/photos/landscapes/dsc_4431-thumb.jpg new file mode 100644 index 0000000..cb84d75 Binary files /dev/null and b/static/img/photos/landscapes/dsc_4431-thumb.jpg differ diff --git a/static/img/photos/landscapes/dsc_4431.jpg b/static/img/photos/landscapes/dsc_4431.jpg new file mode 100644 index 0000000..ad9382e Binary files /dev/null and b/static/img/photos/landscapes/dsc_4431.jpg differ diff --git a/static/img/photos/landscapes/glowing-snow-thumb.jpg b/static/img/photos/landscapes/glowing-snow-thumb.jpg new file mode 100644 index 0000000..fcdb262 Binary files /dev/null and b/static/img/photos/landscapes/glowing-snow-thumb.jpg differ diff --git a/static/img/photos/landscapes/glowing-snow.jpg b/static/img/photos/landscapes/glowing-snow.jpg new file mode 100644 index 0000000..01c054a Binary files /dev/null and b/static/img/photos/landscapes/glowing-snow.jpg differ diff --git a/static/img/photos/landscapes/hannover-1-thumb.jpg b/static/img/photos/landscapes/hannover-1-thumb.jpg new file mode 100644 index 0000000..60b4fec Binary files /dev/null and b/static/img/photos/landscapes/hannover-1-thumb.jpg differ diff --git a/static/img/photos/landscapes/hannover-1.jpg b/static/img/photos/landscapes/hannover-1.jpg new file mode 100644 index 0000000..aeb2842 Binary files /dev/null and b/static/img/photos/landscapes/hannover-1.jpg differ diff --git a/static/img/photos/landscapes/hannover-2-thumb.jpg b/static/img/photos/landscapes/hannover-2-thumb.jpg new file mode 100644 index 0000000..cd855e4 Binary files /dev/null and b/static/img/photos/landscapes/hannover-2-thumb.jpg differ diff --git a/static/img/photos/landscapes/hannover-2.jpg b/static/img/photos/landscapes/hannover-2.jpg new file mode 100644 index 0000000..9a7623c Binary files /dev/null and b/static/img/photos/landscapes/hannover-2.jpg differ diff --git a/static/img/photos/landscapes/kings-lake-thumb.jpg b/static/img/photos/landscapes/kings-lake-thumb.jpg new file mode 100644 index 0000000..c7afde2 Binary files /dev/null and b/static/img/photos/landscapes/kings-lake-thumb.jpg differ diff --git a/static/img/photos/landscapes/kings-lake.jpg b/static/img/photos/landscapes/kings-lake.jpg new file mode 100644 index 0000000..815ffac Binary files /dev/null and b/static/img/photos/landscapes/kings-lake.jpg differ diff --git a/static/img/photos/landscapes/kleiner-jenner-thumb.jpg b/static/img/photos/landscapes/kleiner-jenner-thumb.jpg new file mode 100644 index 0000000..0aca63b Binary files /dev/null and b/static/img/photos/landscapes/kleiner-jenner-thumb.jpg differ diff --git a/static/img/photos/landscapes/kleiner-jenner.jpg b/static/img/photos/landscapes/kleiner-jenner.jpg new file mode 100644 index 0000000..d9d4e13 Binary files /dev/null and b/static/img/photos/landscapes/kleiner-jenner.jpg differ diff --git a/static/img/photos/landscapes/mittagsfluh-thumb.jpg b/static/img/photos/landscapes/mittagsfluh-thumb.jpg new file mode 100644 index 0000000..819531d Binary files /dev/null and b/static/img/photos/landscapes/mittagsfluh-thumb.jpg differ diff --git a/static/img/photos/landscapes/mittagsfluh.jpg b/static/img/photos/landscapes/mittagsfluh.jpg new file mode 100644 index 0000000..c70213a Binary files /dev/null and b/static/img/photos/landscapes/mittagsfluh.jpg differ diff --git a/static/img/photos/landscapes/panorama-kuehroint-alm-thumb.jpg b/static/img/photos/landscapes/panorama-kuehroint-alm-thumb.jpg new file mode 100644 index 0000000..3e5474a Binary files /dev/null and b/static/img/photos/landscapes/panorama-kuehroint-alm-thumb.jpg differ diff --git a/static/img/photos/landscapes/panorama-kuehroint-alm.jpg b/static/img/photos/landscapes/panorama-kuehroint-alm.jpg new file mode 100644 index 0000000..d581edb Binary files /dev/null and b/static/img/photos/landscapes/panorama-kuehroint-alm.jpg differ diff --git a/static/img/photos/landscapes/sunset-thumb.jpg b/static/img/photos/landscapes/sunset-thumb.jpg new file mode 100644 index 0000000..f934f1c Binary files /dev/null and b/static/img/photos/landscapes/sunset-thumb.jpg differ diff --git a/static/img/photos/landscapes/sunset.jpg b/static/img/photos/landscapes/sunset.jpg new file mode 100644 index 0000000..0ac445e Binary files /dev/null and b/static/img/photos/landscapes/sunset.jpg differ diff --git a/static/img/photos/landscapes/waterfall-thumb.jpg b/static/img/photos/landscapes/waterfall-thumb.jpg new file mode 100644 index 0000000..88c93bc Binary files /dev/null and b/static/img/photos/landscapes/waterfall-thumb.jpg differ diff --git a/static/img/photos/landscapes/waterfall.jpg b/static/img/photos/landscapes/waterfall.jpg new file mode 100644 index 0000000..606ffad Binary files /dev/null and b/static/img/photos/landscapes/waterfall.jpg differ diff --git a/static/img/photos/munich-2010.jpg b/static/img/photos/munich-2010.jpg new file mode 100644 index 0000000..d54a483 Binary files /dev/null and b/static/img/photos/munich-2010.jpg differ diff --git a/static/img/photos/munich-2010/bread_eating_duck-thumb.jpg b/static/img/photos/munich-2010/bread_eating_duck-thumb.jpg new file mode 100644 index 0000000..99a0163 Binary files /dev/null and b/static/img/photos/munich-2010/bread_eating_duck-thumb.jpg differ diff --git a/static/img/photos/munich-2010/bread_eating_duck.jpg b/static/img/photos/munich-2010/bread_eating_duck.jpg new file mode 100644 index 0000000..72a0786 Binary files /dev/null and b/static/img/photos/munich-2010/bread_eating_duck.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1144-thumb.jpg b/static/img/photos/munich-2010/dsc_1144-thumb.jpg new file mode 100644 index 0000000..04ea15e Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1144-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1144.jpg b/static/img/photos/munich-2010/dsc_1144.jpg new file mode 100644 index 0000000..9988d80 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1144.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1599-thumb.jpg b/static/img/photos/munich-2010/dsc_1599-thumb.jpg new file mode 100644 index 0000000..6172be1 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1599-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1599.jpg b/static/img/photos/munich-2010/dsc_1599.jpg new file mode 100644 index 0000000..855936d Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1599.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1603-thumb.jpg b/static/img/photos/munich-2010/dsc_1603-thumb.jpg new file mode 100644 index 0000000..b35e006 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1603-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1603.jpg b/static/img/photos/munich-2010/dsc_1603.jpg new file mode 100644 index 0000000..48d8db1 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1603.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1607-thumb.jpg b/static/img/photos/munich-2010/dsc_1607-thumb.jpg new file mode 100644 index 0000000..c7275e9 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1607-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1607.jpg b/static/img/photos/munich-2010/dsc_1607.jpg new file mode 100644 index 0000000..fa47d7b Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1607.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1608-thumb.jpg b/static/img/photos/munich-2010/dsc_1608-thumb.jpg new file mode 100644 index 0000000..3bfa6df Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1608-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1608.jpg b/static/img/photos/munich-2010/dsc_1608.jpg new file mode 100644 index 0000000..85359aa Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1608.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1611-thumb.jpg b/static/img/photos/munich-2010/dsc_1611-thumb.jpg new file mode 100644 index 0000000..729b890 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1611-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1611.jpg b/static/img/photos/munich-2010/dsc_1611.jpg new file mode 100644 index 0000000..ec373d2 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1611.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1616-thumb.jpg b/static/img/photos/munich-2010/dsc_1616-thumb.jpg new file mode 100644 index 0000000..0cd3bb3 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1616-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1616.jpg b/static/img/photos/munich-2010/dsc_1616.jpg new file mode 100644 index 0000000..f032494 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1616.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1653-thumb.jpg b/static/img/photos/munich-2010/dsc_1653-thumb.jpg new file mode 100644 index 0000000..156cc07 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1653-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1653.jpg b/static/img/photos/munich-2010/dsc_1653.jpg new file mode 100644 index 0000000..90369c4 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1653.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1669-thumb.jpg b/static/img/photos/munich-2010/dsc_1669-thumb.jpg new file mode 100644 index 0000000..75f4c68 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1669-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1669.jpg b/static/img/photos/munich-2010/dsc_1669.jpg new file mode 100644 index 0000000..bce111b Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1669.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1674-thumb.jpg b/static/img/photos/munich-2010/dsc_1674-thumb.jpg new file mode 100644 index 0000000..c8bf9f7 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1674-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1674.jpg b/static/img/photos/munich-2010/dsc_1674.jpg new file mode 100644 index 0000000..eb66dc2 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1674.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1676-thumb.jpg b/static/img/photos/munich-2010/dsc_1676-thumb.jpg new file mode 100644 index 0000000..2f74163 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1676-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1676.jpg b/static/img/photos/munich-2010/dsc_1676.jpg new file mode 100644 index 0000000..af712e1 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1676.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1683-thumb.jpg b/static/img/photos/munich-2010/dsc_1683-thumb.jpg new file mode 100644 index 0000000..5478ce4 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1683-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1683.jpg b/static/img/photos/munich-2010/dsc_1683.jpg new file mode 100644 index 0000000..8cec8f6 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1683.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1687-thumb.jpg b/static/img/photos/munich-2010/dsc_1687-thumb.jpg new file mode 100644 index 0000000..39b35e1 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1687-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1687.jpg b/static/img/photos/munich-2010/dsc_1687.jpg new file mode 100644 index 0000000..d372969 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1687.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1701-thumb.jpg b/static/img/photos/munich-2010/dsc_1701-thumb.jpg new file mode 100644 index 0000000..ff49f0f Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1701-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1701.jpg b/static/img/photos/munich-2010/dsc_1701.jpg new file mode 100644 index 0000000..fa7fec9 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1701.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1704-thumb.jpg b/static/img/photos/munich-2010/dsc_1704-thumb.jpg new file mode 100644 index 0000000..6dc68ca Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1704-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1704.jpg b/static/img/photos/munich-2010/dsc_1704.jpg new file mode 100644 index 0000000..4ecc0f6 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1704.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1705-thumb.jpg b/static/img/photos/munich-2010/dsc_1705-thumb.jpg new file mode 100644 index 0000000..7deef14 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1705-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1705.jpg b/static/img/photos/munich-2010/dsc_1705.jpg new file mode 100644 index 0000000..1c880d3 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1705.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1708-thumb.jpg b/static/img/photos/munich-2010/dsc_1708-thumb.jpg new file mode 100644 index 0000000..46bb5df Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1708-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1708.jpg b/static/img/photos/munich-2010/dsc_1708.jpg new file mode 100644 index 0000000..5d80c79 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1708.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1712-thumb.jpg b/static/img/photos/munich-2010/dsc_1712-thumb.jpg new file mode 100644 index 0000000..cf32538 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1712-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1712.jpg b/static/img/photos/munich-2010/dsc_1712.jpg new file mode 100644 index 0000000..e32c872 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1712.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1728-thumb.jpg b/static/img/photos/munich-2010/dsc_1728-thumb.jpg new file mode 100644 index 0000000..abf3fce Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1728-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1728.jpg b/static/img/photos/munich-2010/dsc_1728.jpg new file mode 100644 index 0000000..be3ace0 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1728.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1733-thumb.jpg b/static/img/photos/munich-2010/dsc_1733-thumb.jpg new file mode 100644 index 0000000..0587a1e Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1733-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1733.jpg b/static/img/photos/munich-2010/dsc_1733.jpg new file mode 100644 index 0000000..ab28dba Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1733.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1741-thumb.jpg b/static/img/photos/munich-2010/dsc_1741-thumb.jpg new file mode 100644 index 0000000..630ca0c Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1741-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1741.jpg b/static/img/photos/munich-2010/dsc_1741.jpg new file mode 100644 index 0000000..9c705df Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1741.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1750-thumb.jpg b/static/img/photos/munich-2010/dsc_1750-thumb.jpg new file mode 100644 index 0000000..c47bf3f Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1750-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1750.jpg b/static/img/photos/munich-2010/dsc_1750.jpg new file mode 100644 index 0000000..c5a551d Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1750.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1753-thumb.jpg b/static/img/photos/munich-2010/dsc_1753-thumb.jpg new file mode 100644 index 0000000..c61579a Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1753-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1753.jpg b/static/img/photos/munich-2010/dsc_1753.jpg new file mode 100644 index 0000000..6357b15 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1753.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1781-thumb.jpg b/static/img/photos/munich-2010/dsc_1781-thumb.jpg new file mode 100644 index 0000000..b3f5b3f Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1781-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1781.jpg b/static/img/photos/munich-2010/dsc_1781.jpg new file mode 100644 index 0000000..574af50 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1781.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1817-thumb.jpg b/static/img/photos/munich-2010/dsc_1817-thumb.jpg new file mode 100644 index 0000000..8a52074 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1817-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1817.jpg b/static/img/photos/munich-2010/dsc_1817.jpg new file mode 100644 index 0000000..fa28dae Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1817.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1820-thumb.jpg b/static/img/photos/munich-2010/dsc_1820-thumb.jpg new file mode 100644 index 0000000..dc7a394 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1820-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1820.jpg b/static/img/photos/munich-2010/dsc_1820.jpg new file mode 100644 index 0000000..4350132 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1820.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1838-thumb.jpg b/static/img/photos/munich-2010/dsc_1838-thumb.jpg new file mode 100644 index 0000000..256ee45 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1838-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1838.jpg b/static/img/photos/munich-2010/dsc_1838.jpg new file mode 100644 index 0000000..9603ab9 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1838.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1856-thumb.jpg b/static/img/photos/munich-2010/dsc_1856-thumb.jpg new file mode 100644 index 0000000..718d5f8 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1856-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1856.jpg b/static/img/photos/munich-2010/dsc_1856.jpg new file mode 100644 index 0000000..58b8b91 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1856.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1860-thumb.jpg b/static/img/photos/munich-2010/dsc_1860-thumb.jpg new file mode 100644 index 0000000..5f60c36 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1860-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1860.jpg b/static/img/photos/munich-2010/dsc_1860.jpg new file mode 100644 index 0000000..9574eed Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1860.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1862-thumb.jpg b/static/img/photos/munich-2010/dsc_1862-thumb.jpg new file mode 100644 index 0000000..7fb3c47 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1862-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1862.jpg b/static/img/photos/munich-2010/dsc_1862.jpg new file mode 100644 index 0000000..374b6f4 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1862.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1893-thumb.jpg b/static/img/photos/munich-2010/dsc_1893-thumb.jpg new file mode 100644 index 0000000..77b4626 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1893-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1893.jpg b/static/img/photos/munich-2010/dsc_1893.jpg new file mode 100644 index 0000000..2c9df06 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1893.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1895-thumb.jpg b/static/img/photos/munich-2010/dsc_1895-thumb.jpg new file mode 100644 index 0000000..d744223 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1895-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1895.jpg b/static/img/photos/munich-2010/dsc_1895.jpg new file mode 100644 index 0000000..749f053 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1895.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1906-thumb.jpg b/static/img/photos/munich-2010/dsc_1906-thumb.jpg new file mode 100644 index 0000000..3c15e49 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1906-thumb.jpg differ diff --git a/static/img/photos/munich-2010/dsc_1906.jpg b/static/img/photos/munich-2010/dsc_1906.jpg new file mode 100644 index 0000000..721de40 Binary files /dev/null and b/static/img/photos/munich-2010/dsc_1906.jpg differ diff --git a/static/img/photos/netherland-2012.jpg b/static/img/photos/netherland-2012.jpg new file mode 100644 index 0000000..cd7ede4 Binary files /dev/null and b/static/img/photos/netherland-2012.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0290-thumb.jpg b/static/img/photos/netherland-2012/_dsc0290-thumb.jpg new file mode 100644 index 0000000..a0c325d Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0290-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0290.jpg b/static/img/photos/netherland-2012/_dsc0290.jpg new file mode 100644 index 0000000..3bfc5ee Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0290.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0300-thumb.jpg b/static/img/photos/netherland-2012/_dsc0300-thumb.jpg new file mode 100644 index 0000000..135c5cf Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0300-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0300.jpg b/static/img/photos/netherland-2012/_dsc0300.jpg new file mode 100644 index 0000000..61e50a2 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0300.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0303-thumb.jpg b/static/img/photos/netherland-2012/_dsc0303-thumb.jpg new file mode 100644 index 0000000..6da694b Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0303-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0303.jpg b/static/img/photos/netherland-2012/_dsc0303.jpg new file mode 100644 index 0000000..b303b38 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0303.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0304-thumb.jpg b/static/img/photos/netherland-2012/_dsc0304-thumb.jpg new file mode 100644 index 0000000..d7a6e00 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0304-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0304.jpg b/static/img/photos/netherland-2012/_dsc0304.jpg new file mode 100644 index 0000000..11719af Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0304.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0311-thumb.jpg b/static/img/photos/netherland-2012/_dsc0311-thumb.jpg new file mode 100644 index 0000000..3d565ad Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0311-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0311.jpg b/static/img/photos/netherland-2012/_dsc0311.jpg new file mode 100644 index 0000000..9440fba Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0311.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0314-thumb.jpg b/static/img/photos/netherland-2012/_dsc0314-thumb.jpg new file mode 100644 index 0000000..499b5da Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0314-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0314.jpg b/static/img/photos/netherland-2012/_dsc0314.jpg new file mode 100644 index 0000000..801707a Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0314.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0317-thumb.jpg b/static/img/photos/netherland-2012/_dsc0317-thumb.jpg new file mode 100644 index 0000000..490bcc6 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0317-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0317.jpg b/static/img/photos/netherland-2012/_dsc0317.jpg new file mode 100644 index 0000000..59a3cdf Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0317.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0319-thumb.jpg b/static/img/photos/netherland-2012/_dsc0319-thumb.jpg new file mode 100644 index 0000000..814519a Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0319-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0319.jpg b/static/img/photos/netherland-2012/_dsc0319.jpg new file mode 100644 index 0000000..2d0f7b5 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0319.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0320-thumb.jpg b/static/img/photos/netherland-2012/_dsc0320-thumb.jpg new file mode 100644 index 0000000..3e4dc0d Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0320-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0320.jpg b/static/img/photos/netherland-2012/_dsc0320.jpg new file mode 100644 index 0000000..7d9aba4 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0320.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0329-thumb.jpg b/static/img/photos/netherland-2012/_dsc0329-thumb.jpg new file mode 100644 index 0000000..bc877eb Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0329-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0329.jpg b/static/img/photos/netherland-2012/_dsc0329.jpg new file mode 100644 index 0000000..f012dd9 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0329.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0332-thumb.jpg b/static/img/photos/netherland-2012/_dsc0332-thumb.jpg new file mode 100644 index 0000000..df9257c Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0332-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0332.jpg b/static/img/photos/netherland-2012/_dsc0332.jpg new file mode 100644 index 0000000..861e80c Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0332.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0340-thumb.jpg b/static/img/photos/netherland-2012/_dsc0340-thumb.jpg new file mode 100644 index 0000000..72330bc Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0340-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0340.jpg b/static/img/photos/netherland-2012/_dsc0340.jpg new file mode 100644 index 0000000..da3c3cd Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0340.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0341-thumb.jpg b/static/img/photos/netherland-2012/_dsc0341-thumb.jpg new file mode 100644 index 0000000..5ea005b Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0341-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0341.jpg b/static/img/photos/netherland-2012/_dsc0341.jpg new file mode 100644 index 0000000..bcbd0ae Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0341.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0342-thumb.jpg b/static/img/photos/netherland-2012/_dsc0342-thumb.jpg new file mode 100644 index 0000000..48e652e Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0342-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0342.jpg b/static/img/photos/netherland-2012/_dsc0342.jpg new file mode 100644 index 0000000..6c3a1d6 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0342.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0344-thumb.jpg b/static/img/photos/netherland-2012/_dsc0344-thumb.jpg new file mode 100644 index 0000000..bdf455d Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0344-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0344.jpg b/static/img/photos/netherland-2012/_dsc0344.jpg new file mode 100644 index 0000000..74f0770 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0344.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0347-thumb.jpg b/static/img/photos/netherland-2012/_dsc0347-thumb.jpg new file mode 100644 index 0000000..17be017 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0347-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0347.jpg b/static/img/photos/netherland-2012/_dsc0347.jpg new file mode 100644 index 0000000..3687240 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0347.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0352-thumb.jpg b/static/img/photos/netherland-2012/_dsc0352-thumb.jpg new file mode 100644 index 0000000..e6765f9 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0352-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0352.jpg b/static/img/photos/netherland-2012/_dsc0352.jpg new file mode 100644 index 0000000..3ae2187 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0352.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0354-thumb.jpg b/static/img/photos/netherland-2012/_dsc0354-thumb.jpg new file mode 100644 index 0000000..573d035 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0354-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0354.jpg b/static/img/photos/netherland-2012/_dsc0354.jpg new file mode 100644 index 0000000..113cc33 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0354.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0355-thumb.jpg b/static/img/photos/netherland-2012/_dsc0355-thumb.jpg new file mode 100644 index 0000000..bf5cb39 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0355-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0355.jpg b/static/img/photos/netherland-2012/_dsc0355.jpg new file mode 100644 index 0000000..7a7c526 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0355.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0360-thumb.jpg b/static/img/photos/netherland-2012/_dsc0360-thumb.jpg new file mode 100644 index 0000000..e3f8812 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0360-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0360.jpg b/static/img/photos/netherland-2012/_dsc0360.jpg new file mode 100644 index 0000000..84eef1d Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0360.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0361-thumb.jpg b/static/img/photos/netherland-2012/_dsc0361-thumb.jpg new file mode 100644 index 0000000..54ce6e3 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0361-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0361.jpg b/static/img/photos/netherland-2012/_dsc0361.jpg new file mode 100644 index 0000000..5ab01a8 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0361.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0362-thumb.jpg b/static/img/photos/netherland-2012/_dsc0362-thumb.jpg new file mode 100644 index 0000000..dd28c30 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0362-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0362.jpg b/static/img/photos/netherland-2012/_dsc0362.jpg new file mode 100644 index 0000000..72a5abe Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0362.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0393-thumb.jpg b/static/img/photos/netherland-2012/_dsc0393-thumb.jpg new file mode 100644 index 0000000..2f4ce57 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0393-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0393.jpg b/static/img/photos/netherland-2012/_dsc0393.jpg new file mode 100644 index 0000000..e307355 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0393.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0395-thumb.jpg b/static/img/photos/netherland-2012/_dsc0395-thumb.jpg new file mode 100644 index 0000000..371ce1a Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0395-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0395.jpg b/static/img/photos/netherland-2012/_dsc0395.jpg new file mode 100644 index 0000000..a7cfa57 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0395.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0397-thumb.jpg b/static/img/photos/netherland-2012/_dsc0397-thumb.jpg new file mode 100644 index 0000000..8c4a288 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0397-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0397.jpg b/static/img/photos/netherland-2012/_dsc0397.jpg new file mode 100644 index 0000000..f91a7a1 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0397.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0413-thumb.jpg b/static/img/photos/netherland-2012/_dsc0413-thumb.jpg new file mode 100644 index 0000000..31c3cd3 Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0413-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0413.jpg b/static/img/photos/netherland-2012/_dsc0413.jpg new file mode 100644 index 0000000..fb29c0f Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0413.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0456-thumb.jpg b/static/img/photos/netherland-2012/_dsc0456-thumb.jpg new file mode 100644 index 0000000..8279ecf Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0456-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/_dsc0456.jpg b/static/img/photos/netherland-2012/_dsc0456.jpg new file mode 100644 index 0000000..f366fcd Binary files /dev/null and b/static/img/photos/netherland-2012/_dsc0456.jpg differ diff --git a/static/img/photos/netherland-2012/a_place_to_rest-thumb.jpg b/static/img/photos/netherland-2012/a_place_to_rest-thumb.jpg new file mode 100644 index 0000000..fbc886d Binary files /dev/null and b/static/img/photos/netherland-2012/a_place_to_rest-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/a_place_to_rest.jpg b/static/img/photos/netherland-2012/a_place_to_rest.jpg new file mode 100644 index 0000000..23c1e80 Binary files /dev/null and b/static/img/photos/netherland-2012/a_place_to_rest.jpg differ diff --git a/static/img/photos/netherland-2012/sheeps-thumb.jpg b/static/img/photos/netherland-2012/sheeps-thumb.jpg new file mode 100644 index 0000000..3eebd23 Binary files /dev/null and b/static/img/photos/netherland-2012/sheeps-thumb.jpg differ diff --git a/static/img/photos/netherland-2012/sheeps.jpg b/static/img/photos/netherland-2012/sheeps.jpg new file mode 100644 index 0000000..5328e76 Binary files /dev/null and b/static/img/photos/netherland-2012/sheeps.jpg differ diff --git a/static/img/photos/oberstdorf-2018.jpg b/static/img/photos/oberstdorf-2018.jpg new file mode 100644 index 0000000..ffcb965 Binary files /dev/null and b/static/img/photos/oberstdorf-2018.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_120338_thomas_001-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_120338_thomas_001-thumb.jpg new file mode 100644 index 0000000..0aaf3d0 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_120338_thomas_001-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_120338_thomas_001.jpg b/static/img/photos/oberstdorf-2018/20181102_120338_thomas_001.jpg new file mode 100644 index 0000000..e71c13b Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_120338_thomas_001.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_120518_thomas_002-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_120518_thomas_002-thumb.jpg new file mode 100644 index 0000000..67ff518 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_120518_thomas_002-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_120518_thomas_002.jpg b/static/img/photos/oberstdorf-2018/20181102_120518_thomas_002.jpg new file mode 100644 index 0000000..ec2854e Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_120518_thomas_002.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_123342_thomas_012-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_123342_thomas_012-thumb.jpg new file mode 100644 index 0000000..4a8cad3 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_123342_thomas_012-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_123342_thomas_012.jpg b/static/img/photos/oberstdorf-2018/20181102_123342_thomas_012.jpg new file mode 100644 index 0000000..273a83a Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_123342_thomas_012.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_130045_thomas_021-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_130045_thomas_021-thumb.jpg new file mode 100644 index 0000000..be5e208 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_130045_thomas_021-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_130045_thomas_021.jpg b/static/img/photos/oberstdorf-2018/20181102_130045_thomas_021.jpg new file mode 100644 index 0000000..747777f Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_130045_thomas_021.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_131614_thomas_026-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_131614_thomas_026-thumb.jpg new file mode 100644 index 0000000..1986b56 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_131614_thomas_026-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_131614_thomas_026.jpg b/static/img/photos/oberstdorf-2018/20181102_131614_thomas_026.jpg new file mode 100644 index 0000000..2544666 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_131614_thomas_026.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_131726_thomas_028-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_131726_thomas_028-thumb.jpg new file mode 100644 index 0000000..a9c2fcb Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_131726_thomas_028-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_131726_thomas_028.jpg b/static/img/photos/oberstdorf-2018/20181102_131726_thomas_028.jpg new file mode 100644 index 0000000..f3d7caf Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_131726_thomas_028.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_132507_thomas_037-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_132507_thomas_037-thumb.jpg new file mode 100644 index 0000000..8bc1ef9 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_132507_thomas_037-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_132507_thomas_037.jpg b/static/img/photos/oberstdorf-2018/20181102_132507_thomas_037.jpg new file mode 100644 index 0000000..023075b Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_132507_thomas_037.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_133645_thomas_054-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_133645_thomas_054-thumb.jpg new file mode 100644 index 0000000..732a292 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_133645_thomas_054-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_133645_thomas_054.jpg b/static/img/photos/oberstdorf-2018/20181102_133645_thomas_054.jpg new file mode 100644 index 0000000..9a19df6 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_133645_thomas_054.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_133855_thomas_060-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_133855_thomas_060-thumb.jpg new file mode 100644 index 0000000..24af9e1 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_133855_thomas_060-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_133855_thomas_060.jpg b/static/img/photos/oberstdorf-2018/20181102_133855_thomas_060.jpg new file mode 100644 index 0000000..49cc0ed Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_133855_thomas_060.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_134527_thomas_079-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_134527_thomas_079-thumb.jpg new file mode 100644 index 0000000..15db4c2 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_134527_thomas_079-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_134527_thomas_079.jpg b/static/img/photos/oberstdorf-2018/20181102_134527_thomas_079.jpg new file mode 100644 index 0000000..21df625 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_134527_thomas_079.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_134639_thomas_084-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_134639_thomas_084-thumb.jpg new file mode 100644 index 0000000..dad838c Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_134639_thomas_084-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_134639_thomas_084.jpg b/static/img/photos/oberstdorf-2018/20181102_134639_thomas_084.jpg new file mode 100644 index 0000000..acf48d1 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_134639_thomas_084.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_140809_thomas_094-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_140809_thomas_094-thumb.jpg new file mode 100644 index 0000000..d9a5488 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_140809_thomas_094-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_140809_thomas_094.jpg b/static/img/photos/oberstdorf-2018/20181102_140809_thomas_094.jpg new file mode 100644 index 0000000..7dd4dca Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_140809_thomas_094.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_140910_thomas_096-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_140910_thomas_096-thumb.jpg new file mode 100644 index 0000000..6d5c996 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_140910_thomas_096-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_140910_thomas_096.jpg b/static/img/photos/oberstdorf-2018/20181102_140910_thomas_096.jpg new file mode 100644 index 0000000..b9ef483 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_140910_thomas_096.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_143700_thomas_100-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_143700_thomas_100-thumb.jpg new file mode 100644 index 0000000..0baf6b7 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_143700_thomas_100-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_143700_thomas_100.jpg b/static/img/photos/oberstdorf-2018/20181102_143700_thomas_100.jpg new file mode 100644 index 0000000..d45daa5 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_143700_thomas_100.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_143927_thomas_105-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_143927_thomas_105-thumb.jpg new file mode 100644 index 0000000..00649d1 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_143927_thomas_105-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_143927_thomas_105.jpg b/static/img/photos/oberstdorf-2018/20181102_143927_thomas_105.jpg new file mode 100644 index 0000000..bf37425 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_143927_thomas_105.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_152038_thomas_106-thumb.jpg b/static/img/photos/oberstdorf-2018/20181102_152038_thomas_106-thumb.jpg new file mode 100644 index 0000000..dcc6fe1 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_152038_thomas_106-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181102_152038_thomas_106.jpg b/static/img/photos/oberstdorf-2018/20181102_152038_thomas_106.jpg new file mode 100644 index 0000000..dfb8ae7 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181102_152038_thomas_106.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181103_172714_thomas_108-thumb.jpg b/static/img/photos/oberstdorf-2018/20181103_172714_thomas_108-thumb.jpg new file mode 100644 index 0000000..4bdec43 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181103_172714_thomas_108-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181103_172714_thomas_108.jpg b/static/img/photos/oberstdorf-2018/20181103_172714_thomas_108.jpg new file mode 100644 index 0000000..53f71a2 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181103_172714_thomas_108.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181103_172730_thomas_112-thumb.jpg b/static/img/photos/oberstdorf-2018/20181103_172730_thomas_112-thumb.jpg new file mode 100644 index 0000000..d086d64 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181103_172730_thomas_112-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181103_172730_thomas_112.jpg b/static/img/photos/oberstdorf-2018/20181103_172730_thomas_112.jpg new file mode 100644 index 0000000..57dbab0 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181103_172730_thomas_112.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181103_183622_thomas_117-thumb.jpg b/static/img/photos/oberstdorf-2018/20181103_183622_thomas_117-thumb.jpg new file mode 100644 index 0000000..b223ea1 Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181103_183622_thomas_117-thumb.jpg differ diff --git a/static/img/photos/oberstdorf-2018/20181103_183622_thomas_117.jpg b/static/img/photos/oberstdorf-2018/20181103_183622_thomas_117.jpg new file mode 100644 index 0000000..ddfa95a Binary files /dev/null and b/static/img/photos/oberstdorf-2018/20181103_183622_thomas_117.jpg differ diff --git a/static/img/photos/other.jpg b/static/img/photos/other.jpg new file mode 100644 index 0000000..b4d901c Binary files /dev/null and b/static/img/photos/other.jpg differ diff --git a/static/img/photos/other/2010-thumb.jpg b/static/img/photos/other/2010-thumb.jpg new file mode 100644 index 0000000..87dbd70 Binary files /dev/null and b/static/img/photos/other/2010-thumb.jpg differ diff --git a/static/img/photos/other/2010.jpg b/static/img/photos/other/2010.jpg new file mode 100644 index 0000000..906c92e Binary files /dev/null and b/static/img/photos/other/2010.jpg differ diff --git a/static/img/photos/other/abseiling-thumb.jpg b/static/img/photos/other/abseiling-thumb.jpg new file mode 100644 index 0000000..ef761ed Binary files /dev/null and b/static/img/photos/other/abseiling-thumb.jpg differ diff --git a/static/img/photos/other/abseiling.jpg b/static/img/photos/other/abseiling.jpg new file mode 100644 index 0000000..c4d5af3 Binary files /dev/null and b/static/img/photos/other/abseiling.jpg differ diff --git a/static/img/photos/other/apple_blossom-thumb.jpg b/static/img/photos/other/apple_blossom-thumb.jpg new file mode 100644 index 0000000..29f591a Binary files /dev/null and b/static/img/photos/other/apple_blossom-thumb.jpg differ diff --git a/static/img/photos/other/apple_blossom.jpg b/static/img/photos/other/apple_blossom.jpg new file mode 100644 index 0000000..a132fa5 Binary files /dev/null and b/static/img/photos/other/apple_blossom.jpg differ diff --git a/static/img/photos/other/apples-thumb.jpg b/static/img/photos/other/apples-thumb.jpg new file mode 100644 index 0000000..8bca9e8 Binary files /dev/null and b/static/img/photos/other/apples-thumb.jpg differ diff --git a/static/img/photos/other/apples.jpg b/static/img/photos/other/apples.jpg new file mode 100644 index 0000000..6ed3c9b Binary files /dev/null and b/static/img/photos/other/apples.jpg differ diff --git a/static/img/photos/other/at_night-thumb.jpg b/static/img/photos/other/at_night-thumb.jpg new file mode 100644 index 0000000..7206c0e Binary files /dev/null and b/static/img/photos/other/at_night-thumb.jpg differ diff --git a/static/img/photos/other/at_night.jpg b/static/img/photos/other/at_night.jpg new file mode 100644 index 0000000..547243f Binary files /dev/null and b/static/img/photos/other/at_night.jpg differ diff --git a/static/img/photos/other/autumn-thumb.jpg b/static/img/photos/other/autumn-thumb.jpg new file mode 100644 index 0000000..d2cb755 Binary files /dev/null and b/static/img/photos/other/autumn-thumb.jpg differ diff --git a/static/img/photos/other/autumn.jpg b/static/img/photos/other/autumn.jpg new file mode 100644 index 0000000..f325154 Binary files /dev/null and b/static/img/photos/other/autumn.jpg differ diff --git a/static/img/photos/other/bap-thumb.jpg b/static/img/photos/other/bap-thumb.jpg new file mode 100644 index 0000000..5e79bdc Binary files /dev/null and b/static/img/photos/other/bap-thumb.jpg differ diff --git a/static/img/photos/other/bap.jpg b/static/img/photos/other/bap.jpg new file mode 100644 index 0000000..3ac4054 Binary files /dev/null and b/static/img/photos/other/bap.jpg differ diff --git a/static/img/photos/other/beautifull_spring-thumb.jpg b/static/img/photos/other/beautifull_spring-thumb.jpg new file mode 100644 index 0000000..bdee07c Binary files /dev/null and b/static/img/photos/other/beautifull_spring-thumb.jpg differ diff --git a/static/img/photos/other/beautifull_spring.jpg b/static/img/photos/other/beautifull_spring.jpg new file mode 100644 index 0000000..3e26269 Binary files /dev/null and b/static/img/photos/other/beautifull_spring.jpg differ diff --git a/static/img/photos/other/blue_grapes-thumb.jpg b/static/img/photos/other/blue_grapes-thumb.jpg new file mode 100644 index 0000000..d8b3c77 Binary files /dev/null and b/static/img/photos/other/blue_grapes-thumb.jpg differ diff --git a/static/img/photos/other/blue_grapes.jpg b/static/img/photos/other/blue_grapes.jpg new file mode 100644 index 0000000..2e2b32c Binary files /dev/null and b/static/img/photos/other/blue_grapes.jpg differ diff --git a/static/img/photos/other/blue_grapes_2-thumb.jpg b/static/img/photos/other/blue_grapes_2-thumb.jpg new file mode 100644 index 0000000..1901ccd Binary files /dev/null and b/static/img/photos/other/blue_grapes_2-thumb.jpg differ diff --git a/static/img/photos/other/blue_grapes_2.jpg b/static/img/photos/other/blue_grapes_2.jpg new file mode 100644 index 0000000..782fe7a Binary files /dev/null and b/static/img/photos/other/blue_grapes_2.jpg differ diff --git a/static/img/photos/other/blue_sky-thumb.jpg b/static/img/photos/other/blue_sky-thumb.jpg new file mode 100644 index 0000000..8b26a5d Binary files /dev/null and b/static/img/photos/other/blue_sky-thumb.jpg differ diff --git a/static/img/photos/other/blue_sky.jpg b/static/img/photos/other/blue_sky.jpg new file mode 100644 index 0000000..9cefcf9 Binary files /dev/null and b/static/img/photos/other/blue_sky.jpg differ diff --git a/static/img/photos/other/bread-thumb.jpg b/static/img/photos/other/bread-thumb.jpg new file mode 100644 index 0000000..4f41583 Binary files /dev/null and b/static/img/photos/other/bread-thumb.jpg differ diff --git a/static/img/photos/other/bread.jpg b/static/img/photos/other/bread.jpg new file mode 100644 index 0000000..3ffe8c4 Binary files /dev/null and b/static/img/photos/other/bread.jpg differ diff --git a/static/img/photos/other/bread_ii-thumb.jpg b/static/img/photos/other/bread_ii-thumb.jpg new file mode 100644 index 0000000..3fb30cd Binary files /dev/null and b/static/img/photos/other/bread_ii-thumb.jpg differ diff --git a/static/img/photos/other/bread_ii.jpg b/static/img/photos/other/bread_ii.jpg new file mode 100644 index 0000000..72dcf29 Binary files /dev/null and b/static/img/photos/other/bread_ii.jpg differ diff --git a/static/img/photos/other/bud_become_rose-thumb.jpg b/static/img/photos/other/bud_become_rose-thumb.jpg new file mode 100644 index 0000000..0bf22e5 Binary files /dev/null and b/static/img/photos/other/bud_become_rose-thumb.jpg differ diff --git a/static/img/photos/other/bud_become_rose.jpg b/static/img/photos/other/bud_become_rose.jpg new file mode 100644 index 0000000..c5ab3be Binary files /dev/null and b/static/img/photos/other/bud_become_rose.jpg differ diff --git a/static/img/photos/other/burnig_lumber-thumb.jpg b/static/img/photos/other/burnig_lumber-thumb.jpg new file mode 100644 index 0000000..292f603 Binary files /dev/null and b/static/img/photos/other/burnig_lumber-thumb.jpg differ diff --git a/static/img/photos/other/burnig_lumber.jpg b/static/img/photos/other/burnig_lumber.jpg new file mode 100644 index 0000000..1095f7a Binary files /dev/null and b/static/img/photos/other/burnig_lumber.jpg differ diff --git a/static/img/photos/other/butterfly-thumb.jpg b/static/img/photos/other/butterfly-thumb.jpg new file mode 100644 index 0000000..cfc80d9 Binary files /dev/null and b/static/img/photos/other/butterfly-thumb.jpg differ diff --git a/static/img/photos/other/butterfly.jpg b/static/img/photos/other/butterfly.jpg new file mode 100644 index 0000000..2d250bc Binary files /dev/null and b/static/img/photos/other/butterfly.jpg differ diff --git a/static/img/photos/other/candle-thumb.jpg b/static/img/photos/other/candle-thumb.jpg new file mode 100644 index 0000000..9875ec6 Binary files /dev/null and b/static/img/photos/other/candle-thumb.jpg differ diff --git a/static/img/photos/other/candle.jpg b/static/img/photos/other/candle.jpg new file mode 100644 index 0000000..4f153bc Binary files /dev/null and b/static/img/photos/other/candle.jpg differ diff --git a/static/img/photos/other/candles_ii-thumb.jpg b/static/img/photos/other/candles_ii-thumb.jpg new file mode 100644 index 0000000..6d2c28e Binary files /dev/null and b/static/img/photos/other/candles_ii-thumb.jpg differ diff --git a/static/img/photos/other/candles_ii.jpg b/static/img/photos/other/candles_ii.jpg new file mode 100644 index 0000000..f1a8dd6 Binary files /dev/null and b/static/img/photos/other/candles_ii.jpg differ diff --git a/static/img/photos/other/cemetery-thumb.jpg b/static/img/photos/other/cemetery-thumb.jpg new file mode 100644 index 0000000..a81c47a Binary files /dev/null and b/static/img/photos/other/cemetery-thumb.jpg differ diff --git a/static/img/photos/other/cemetery.jpg b/static/img/photos/other/cemetery.jpg new file mode 100644 index 0000000..5dfd7a0 Binary files /dev/null and b/static/img/photos/other/cemetery.jpg differ diff --git a/static/img/photos/other/cherry_blossoms_6832-thumb.jpg b/static/img/photos/other/cherry_blossoms_6832-thumb.jpg new file mode 100644 index 0000000..48fc2d0 Binary files /dev/null and b/static/img/photos/other/cherry_blossoms_6832-thumb.jpg differ diff --git a/static/img/photos/other/cherry_blossoms_6832.jpg b/static/img/photos/other/cherry_blossoms_6832.jpg new file mode 100644 index 0000000..53316f1 Binary files /dev/null and b/static/img/photos/other/cherry_blossoms_6832.jpg differ diff --git a/static/img/photos/other/clouds-thumb.jpg b/static/img/photos/other/clouds-thumb.jpg new file mode 100644 index 0000000..f71b0d9 Binary files /dev/null and b/static/img/photos/other/clouds-thumb.jpg differ diff --git a/static/img/photos/other/clouds.jpg b/static/img/photos/other/clouds.jpg new file mode 100644 index 0000000..b59d8d2 Binary files /dev/null and b/static/img/photos/other/clouds.jpg differ diff --git a/static/img/photos/other/coloured_leaves-thumb.jpg b/static/img/photos/other/coloured_leaves-thumb.jpg new file mode 100644 index 0000000..626bbef Binary files /dev/null and b/static/img/photos/other/coloured_leaves-thumb.jpg differ diff --git a/static/img/photos/other/coloured_leaves.jpg b/static/img/photos/other/coloured_leaves.jpg new file mode 100644 index 0000000..acfc154 Binary files /dev/null and b/static/img/photos/other/coloured_leaves.jpg differ diff --git a/static/img/photos/other/corn-thumb.jpg b/static/img/photos/other/corn-thumb.jpg new file mode 100644 index 0000000..1fd792a Binary files /dev/null and b/static/img/photos/other/corn-thumb.jpg differ diff --git a/static/img/photos/other/corn.jpg b/static/img/photos/other/corn.jpg new file mode 100644 index 0000000..77f32d9 Binary files /dev/null and b/static/img/photos/other/corn.jpg differ diff --git a/static/img/photos/other/corn_2-thumb.jpg b/static/img/photos/other/corn_2-thumb.jpg new file mode 100644 index 0000000..6015735 Binary files /dev/null and b/static/img/photos/other/corn_2-thumb.jpg differ diff --git a/static/img/photos/other/corn_2.jpg b/static/img/photos/other/corn_2.jpg new file mode 100644 index 0000000..bc301ce Binary files /dev/null and b/static/img/photos/other/corn_2.jpg differ diff --git a/static/img/photos/other/creeping_clouds-thumb.jpg b/static/img/photos/other/creeping_clouds-thumb.jpg new file mode 100644 index 0000000..ae54bdc Binary files /dev/null and b/static/img/photos/other/creeping_clouds-thumb.jpg differ diff --git a/static/img/photos/other/creeping_clouds.jpg b/static/img/photos/other/creeping_clouds.jpg new file mode 100644 index 0000000..ac0e89a Binary files /dev/null and b/static/img/photos/other/creeping_clouds.jpg differ diff --git a/static/img/photos/other/crop_iii-thumb.jpg b/static/img/photos/other/crop_iii-thumb.jpg new file mode 100644 index 0000000..bbbe4bf Binary files /dev/null and b/static/img/photos/other/crop_iii-thumb.jpg differ diff --git a/static/img/photos/other/crop_iii.jpg b/static/img/photos/other/crop_iii.jpg new file mode 100644 index 0000000..1b62f23 Binary files /dev/null and b/static/img/photos/other/crop_iii.jpg differ diff --git a/static/img/photos/other/daisy-thumb.jpg b/static/img/photos/other/daisy-thumb.jpg new file mode 100644 index 0000000..cd38666 Binary files /dev/null and b/static/img/photos/other/daisy-thumb.jpg differ diff --git a/static/img/photos/other/daisy.jpg b/static/img/photos/other/daisy.jpg new file mode 100644 index 0000000..fc29596 Binary files /dev/null and b/static/img/photos/other/daisy.jpg differ diff --git a/static/img/photos/other/dead_tree-thumb.jpg b/static/img/photos/other/dead_tree-thumb.jpg new file mode 100644 index 0000000..c67c143 Binary files /dev/null and b/static/img/photos/other/dead_tree-thumb.jpg differ diff --git a/static/img/photos/other/dead_tree.jpg b/static/img/photos/other/dead_tree.jpg new file mode 100644 index 0000000..0187875 Binary files /dev/null and b/static/img/photos/other/dead_tree.jpg differ diff --git a/static/img/photos/other/entry_to_forest-thumb.jpg b/static/img/photos/other/entry_to_forest-thumb.jpg new file mode 100644 index 0000000..d7c1ace Binary files /dev/null and b/static/img/photos/other/entry_to_forest-thumb.jpg differ diff --git a/static/img/photos/other/entry_to_forest.jpg b/static/img/photos/other/entry_to_forest.jpg new file mode 100644 index 0000000..9433503 Binary files /dev/null and b/static/img/photos/other/entry_to_forest.jpg differ diff --git a/static/img/photos/other/evening-thumb.jpg b/static/img/photos/other/evening-thumb.jpg new file mode 100644 index 0000000..e14b60f Binary files /dev/null and b/static/img/photos/other/evening-thumb.jpg differ diff --git a/static/img/photos/other/evening.jpg b/static/img/photos/other/evening.jpg new file mode 100644 index 0000000..d97e341 Binary files /dev/null and b/static/img/photos/other/evening.jpg differ diff --git a/static/img/photos/other/fire_i-thumb.jpg b/static/img/photos/other/fire_i-thumb.jpg new file mode 100644 index 0000000..921338f Binary files /dev/null and b/static/img/photos/other/fire_i-thumb.jpg differ diff --git a/static/img/photos/other/fire_i.jpg b/static/img/photos/other/fire_i.jpg new file mode 100644 index 0000000..fe58d36 Binary files /dev/null and b/static/img/photos/other/fire_i.jpg differ diff --git a/static/img/photos/other/fire_ii-thumb.jpg b/static/img/photos/other/fire_ii-thumb.jpg new file mode 100644 index 0000000..cc705d7 Binary files /dev/null and b/static/img/photos/other/fire_ii-thumb.jpg differ diff --git a/static/img/photos/other/fire_ii.jpg b/static/img/photos/other/fire_ii.jpg new file mode 100644 index 0000000..3e9e0c9 Binary files /dev/null and b/static/img/photos/other/fire_ii.jpg differ diff --git a/static/img/photos/other/fire_iii-thumb.jpg b/static/img/photos/other/fire_iii-thumb.jpg new file mode 100644 index 0000000..64b7827 Binary files /dev/null and b/static/img/photos/other/fire_iii-thumb.jpg differ diff --git a/static/img/photos/other/fire_iii.jpg b/static/img/photos/other/fire_iii.jpg new file mode 100644 index 0000000..afa07c8 Binary files /dev/null and b/static/img/photos/other/fire_iii.jpg differ diff --git a/static/img/photos/other/fire_iv-thumb.jpg b/static/img/photos/other/fire_iv-thumb.jpg new file mode 100644 index 0000000..d54e650 Binary files /dev/null and b/static/img/photos/other/fire_iv-thumb.jpg differ diff --git a/static/img/photos/other/fire_iv.jpg b/static/img/photos/other/fire_iv.jpg new file mode 100644 index 0000000..0c7ea4b Binary files /dev/null and b/static/img/photos/other/fire_iv.jpg differ diff --git a/static/img/photos/other/fire_v-thumb.jpg b/static/img/photos/other/fire_v-thumb.jpg new file mode 100644 index 0000000..bf288c4 Binary files /dev/null and b/static/img/photos/other/fire_v-thumb.jpg differ diff --git a/static/img/photos/other/fire_v.jpg b/static/img/photos/other/fire_v.jpg new file mode 100644 index 0000000..2a5d7f9 Binary files /dev/null and b/static/img/photos/other/fire_v.jpg differ diff --git a/static/img/photos/other/firework-thumb.jpg b/static/img/photos/other/firework-thumb.jpg new file mode 100644 index 0000000..74abd8a Binary files /dev/null and b/static/img/photos/other/firework-thumb.jpg differ diff --git a/static/img/photos/other/firework.jpg b/static/img/photos/other/firework.jpg new file mode 100644 index 0000000..c433d92 Binary files /dev/null and b/static/img/photos/other/firework.jpg differ diff --git a/static/img/photos/other/flames-thumb.jpg b/static/img/photos/other/flames-thumb.jpg new file mode 100644 index 0000000..c55ae8d Binary files /dev/null and b/static/img/photos/other/flames-thumb.jpg differ diff --git a/static/img/photos/other/flames.jpg b/static/img/photos/other/flames.jpg new file mode 100644 index 0000000..6e0d6a3 Binary files /dev/null and b/static/img/photos/other/flames.jpg differ diff --git a/static/img/photos/other/flowers-thumb.jpg b/static/img/photos/other/flowers-thumb.jpg new file mode 100644 index 0000000..51c9298 Binary files /dev/null and b/static/img/photos/other/flowers-thumb.jpg differ diff --git a/static/img/photos/other/flowers.jpg b/static/img/photos/other/flowers.jpg new file mode 100644 index 0000000..8b687c8 Binary files /dev/null and b/static/img/photos/other/flowers.jpg differ diff --git a/static/img/photos/other/flowing_water-thumb.jpg b/static/img/photos/other/flowing_water-thumb.jpg new file mode 100644 index 0000000..978092a Binary files /dev/null and b/static/img/photos/other/flowing_water-thumb.jpg differ diff --git a/static/img/photos/other/flowing_water.jpg b/static/img/photos/other/flowing_water.jpg new file mode 100644 index 0000000..9b415b5 Binary files /dev/null and b/static/img/photos/other/flowing_water.jpg differ diff --git a/static/img/photos/other/foggy_morning-thumb.jpg b/static/img/photos/other/foggy_morning-thumb.jpg new file mode 100644 index 0000000..c7037e3 Binary files /dev/null and b/static/img/photos/other/foggy_morning-thumb.jpg differ diff --git a/static/img/photos/other/foggy_morning.jpg b/static/img/photos/other/foggy_morning.jpg new file mode 100644 index 0000000..1ad2986 Binary files /dev/null and b/static/img/photos/other/foggy_morning.jpg differ diff --git a/static/img/photos/other/foggy_morning_2-thumb.jpg b/static/img/photos/other/foggy_morning_2-thumb.jpg new file mode 100644 index 0000000..4e7e887 Binary files /dev/null and b/static/img/photos/other/foggy_morning_2-thumb.jpg differ diff --git a/static/img/photos/other/foggy_morning_2.jpg b/static/img/photos/other/foggy_morning_2.jpg new file mode 100644 index 0000000..a453527 Binary files /dev/null and b/static/img/photos/other/foggy_morning_2.jpg differ diff --git a/static/img/photos/other/forest-thumb.jpg b/static/img/photos/other/forest-thumb.jpg new file mode 100644 index 0000000..6e3bcc0 Binary files /dev/null and b/static/img/photos/other/forest-thumb.jpg differ diff --git a/static/img/photos/other/forest.jpg b/static/img/photos/other/forest.jpg new file mode 100644 index 0000000..defa69e Binary files /dev/null and b/static/img/photos/other/forest.jpg differ diff --git a/static/img/photos/other/frog-thumb.jpg b/static/img/photos/other/frog-thumb.jpg new file mode 100644 index 0000000..c42bf53 Binary files /dev/null and b/static/img/photos/other/frog-thumb.jpg differ diff --git a/static/img/photos/other/frog.jpg b/static/img/photos/other/frog.jpg new file mode 100644 index 0000000..da261b0 Binary files /dev/null and b/static/img/photos/other/frog.jpg differ diff --git a/static/img/photos/other/goose_family-thumb.jpg b/static/img/photos/other/goose_family-thumb.jpg new file mode 100644 index 0000000..db90f8d Binary files /dev/null and b/static/img/photos/other/goose_family-thumb.jpg differ diff --git a/static/img/photos/other/goose_family.jpg b/static/img/photos/other/goose_family.jpg new file mode 100644 index 0000000..ca746fc Binary files /dev/null and b/static/img/photos/other/goose_family.jpg differ diff --git a/static/img/photos/other/green_grapes-thumb.jpg b/static/img/photos/other/green_grapes-thumb.jpg new file mode 100644 index 0000000..7eb2c3f Binary files /dev/null and b/static/img/photos/other/green_grapes-thumb.jpg differ diff --git a/static/img/photos/other/green_grapes.jpg b/static/img/photos/other/green_grapes.jpg new file mode 100644 index 0000000..f4ad0fc Binary files /dev/null and b/static/img/photos/other/green_grapes.jpg differ diff --git a/static/img/photos/other/green_smile-thumb.jpg b/static/img/photos/other/green_smile-thumb.jpg new file mode 100644 index 0000000..326dd5d Binary files /dev/null and b/static/img/photos/other/green_smile-thumb.jpg differ diff --git a/static/img/photos/other/green_smile.jpg b/static/img/photos/other/green_smile.jpg new file mode 100644 index 0000000..6b63fc7 Binary files /dev/null and b/static/img/photos/other/green_smile.jpg differ diff --git a/static/img/photos/other/green_spring-thumb.jpg b/static/img/photos/other/green_spring-thumb.jpg new file mode 100644 index 0000000..bd9d0a4 Binary files /dev/null and b/static/img/photos/other/green_spring-thumb.jpg differ diff --git a/static/img/photos/other/green_spring.jpg b/static/img/photos/other/green_spring.jpg new file mode 100644 index 0000000..0d342c5 Binary files /dev/null and b/static/img/photos/other/green_spring.jpg differ diff --git a/static/img/photos/other/green_trees_i-thumb.jpg b/static/img/photos/other/green_trees_i-thumb.jpg new file mode 100644 index 0000000..b29dc18 Binary files /dev/null and b/static/img/photos/other/green_trees_i-thumb.jpg differ diff --git a/static/img/photos/other/green_trees_i.jpg b/static/img/photos/other/green_trees_i.jpg new file mode 100644 index 0000000..7a2a30a Binary files /dev/null and b/static/img/photos/other/green_trees_i.jpg differ diff --git a/static/img/photos/other/green_trees_ii-thumb.jpg b/static/img/photos/other/green_trees_ii-thumb.jpg new file mode 100644 index 0000000..49ce72f Binary files /dev/null and b/static/img/photos/other/green_trees_ii-thumb.jpg differ diff --git a/static/img/photos/other/green_trees_ii.jpg b/static/img/photos/other/green_trees_ii.jpg new file mode 100644 index 0000000..6513076 Binary files /dev/null and b/static/img/photos/other/green_trees_ii.jpg differ diff --git a/static/img/photos/other/green_world-thumb.jpg b/static/img/photos/other/green_world-thumb.jpg new file mode 100644 index 0000000..f7b2204 Binary files /dev/null and b/static/img/photos/other/green_world-thumb.jpg differ diff --git a/static/img/photos/other/green_world.jpg b/static/img/photos/other/green_world.jpg new file mode 100644 index 0000000..613c029 Binary files /dev/null and b/static/img/photos/other/green_world.jpg differ diff --git a/static/img/photos/other/hills-thumb.jpg b/static/img/photos/other/hills-thumb.jpg new file mode 100644 index 0000000..e9b51db Binary files /dev/null and b/static/img/photos/other/hills-thumb.jpg differ diff --git a/static/img/photos/other/hills.jpg b/static/img/photos/other/hills.jpg new file mode 100644 index 0000000..41c627b Binary files /dev/null and b/static/img/photos/other/hills.jpg differ diff --git a/static/img/photos/other/hut_surrounded_by_flowers-thumb.jpg b/static/img/photos/other/hut_surrounded_by_flowers-thumb.jpg new file mode 100644 index 0000000..c8fc66b Binary files /dev/null and b/static/img/photos/other/hut_surrounded_by_flowers-thumb.jpg differ diff --git a/static/img/photos/other/hut_surrounded_by_flowers.jpg b/static/img/photos/other/hut_surrounded_by_flowers.jpg new file mode 100644 index 0000000..b03610a Binary files /dev/null and b/static/img/photos/other/hut_surrounded_by_flowers.jpg differ diff --git a/static/img/photos/other/leafless_tree-thumb.jpg b/static/img/photos/other/leafless_tree-thumb.jpg new file mode 100644 index 0000000..4dbcd05 Binary files /dev/null and b/static/img/photos/other/leafless_tree-thumb.jpg differ diff --git a/static/img/photos/other/leafless_tree.jpg b/static/img/photos/other/leafless_tree.jpg new file mode 100644 index 0000000..767ad66 Binary files /dev/null and b/static/img/photos/other/leafless_tree.jpg differ diff --git a/static/img/photos/other/lily_of_the_valley-thumb.jpg b/static/img/photos/other/lily_of_the_valley-thumb.jpg new file mode 100644 index 0000000..9af9249 Binary files /dev/null and b/static/img/photos/other/lily_of_the_valley-thumb.jpg differ diff --git a/static/img/photos/other/lily_of_the_valley.jpg b/static/img/photos/other/lily_of_the_valley.jpg new file mode 100644 index 0000000..d62bca5 Binary files /dev/null and b/static/img/photos/other/lily_of_the_valley.jpg differ diff --git a/static/img/photos/other/moon_2-thumb.jpg b/static/img/photos/other/moon_2-thumb.jpg new file mode 100644 index 0000000..768fdfe Binary files /dev/null and b/static/img/photos/other/moon_2-thumb.jpg differ diff --git a/static/img/photos/other/moon_2.jpg b/static/img/photos/other/moon_2.jpg new file mode 100644 index 0000000..71b3542 Binary files /dev/null and b/static/img/photos/other/moon_2.jpg differ diff --git a/static/img/photos/other/my_garden-thumb.jpg b/static/img/photos/other/my_garden-thumb.jpg new file mode 100644 index 0000000..176bc3d Binary files /dev/null and b/static/img/photos/other/my_garden-thumb.jpg differ diff --git a/static/img/photos/other/my_garden.jpg b/static/img/photos/other/my_garden.jpg new file mode 100644 index 0000000..ba6ac91 Binary files /dev/null and b/static/img/photos/other/my_garden.jpg differ diff --git a/static/img/photos/other/new_year__s_eve_i-thumb.jpg b/static/img/photos/other/new_year__s_eve_i-thumb.jpg new file mode 100644 index 0000000..880f1b4 Binary files /dev/null and b/static/img/photos/other/new_year__s_eve_i-thumb.jpg differ diff --git a/static/img/photos/other/new_year__s_eve_i.jpg b/static/img/photos/other/new_year__s_eve_i.jpg new file mode 100644 index 0000000..c83f21a Binary files /dev/null and b/static/img/photos/other/new_year__s_eve_i.jpg differ diff --git a/static/img/photos/other/new_year__s_eve_ii-thumb.jpg b/static/img/photos/other/new_year__s_eve_ii-thumb.jpg new file mode 100644 index 0000000..b1b3f26 Binary files /dev/null and b/static/img/photos/other/new_year__s_eve_ii-thumb.jpg differ diff --git a/static/img/photos/other/new_year__s_eve_ii.jpg b/static/img/photos/other/new_year__s_eve_ii.jpg new file mode 100644 index 0000000..4366919 Binary files /dev/null and b/static/img/photos/other/new_year__s_eve_ii.jpg differ diff --git a/static/img/photos/other/orange-thumb.jpg b/static/img/photos/other/orange-thumb.jpg new file mode 100644 index 0000000..0db8465 Binary files /dev/null and b/static/img/photos/other/orange-thumb.jpg differ diff --git a/static/img/photos/other/orange.jpg b/static/img/photos/other/orange.jpg new file mode 100644 index 0000000..7c5bd95 Binary files /dev/null and b/static/img/photos/other/orange.jpg differ diff --git a/static/img/photos/other/oven_i-thumb.jpg b/static/img/photos/other/oven_i-thumb.jpg new file mode 100644 index 0000000..e96a8a5 Binary files /dev/null and b/static/img/photos/other/oven_i-thumb.jpg differ diff --git a/static/img/photos/other/oven_i.jpg b/static/img/photos/other/oven_i.jpg new file mode 100644 index 0000000..2d05148 Binary files /dev/null and b/static/img/photos/other/oven_i.jpg differ diff --git a/static/img/photos/other/oven_ii-thumb.jpg b/static/img/photos/other/oven_ii-thumb.jpg new file mode 100644 index 0000000..b8053ea Binary files /dev/null and b/static/img/photos/other/oven_ii-thumb.jpg differ diff --git a/static/img/photos/other/oven_ii.jpg b/static/img/photos/other/oven_ii.jpg new file mode 100644 index 0000000..9c63765 Binary files /dev/null and b/static/img/photos/other/oven_ii.jpg differ diff --git a/static/img/photos/other/oven_iii-thumb.jpg b/static/img/photos/other/oven_iii-thumb.jpg new file mode 100644 index 0000000..c8b50af Binary files /dev/null and b/static/img/photos/other/oven_iii-thumb.jpg differ diff --git a/static/img/photos/other/oven_iii.jpg b/static/img/photos/other/oven_iii.jpg new file mode 100644 index 0000000..ebf4161 Binary files /dev/null and b/static/img/photos/other/oven_iii.jpg differ diff --git a/static/img/photos/other/p1010686-thumb.jpg b/static/img/photos/other/p1010686-thumb.jpg new file mode 100644 index 0000000..f786cbc Binary files /dev/null and b/static/img/photos/other/p1010686-thumb.jpg differ diff --git a/static/img/photos/other/p1010686.jpg b/static/img/photos/other/p1010686.jpg new file mode 100644 index 0000000..aa7ca41 Binary files /dev/null and b/static/img/photos/other/p1010686.jpg differ diff --git a/static/img/photos/other/pear-thumb.jpg b/static/img/photos/other/pear-thumb.jpg new file mode 100644 index 0000000..db0c49d Binary files /dev/null and b/static/img/photos/other/pear-thumb.jpg differ diff --git a/static/img/photos/other/pear.jpg b/static/img/photos/other/pear.jpg new file mode 100644 index 0000000..a950a1c Binary files /dev/null and b/static/img/photos/other/pear.jpg differ diff --git a/static/img/photos/other/radioactive_i-thumb.jpg b/static/img/photos/other/radioactive_i-thumb.jpg new file mode 100644 index 0000000..717030d Binary files /dev/null and b/static/img/photos/other/radioactive_i-thumb.jpg differ diff --git a/static/img/photos/other/radioactive_i.jpg b/static/img/photos/other/radioactive_i.jpg new file mode 100644 index 0000000..19617eb Binary files /dev/null and b/static/img/photos/other/radioactive_i.jpg differ diff --git a/static/img/photos/other/radioactive_ii-thumb.jpg b/static/img/photos/other/radioactive_ii-thumb.jpg new file mode 100644 index 0000000..a9341a5 Binary files /dev/null and b/static/img/photos/other/radioactive_ii-thumb.jpg differ diff --git a/static/img/photos/other/radioactive_ii.jpg b/static/img/photos/other/radioactive_ii.jpg new file mode 100644 index 0000000..368aa3b Binary files /dev/null and b/static/img/photos/other/radioactive_ii.jpg differ diff --git a/static/img/photos/other/red_blossoms-thumb.jpg b/static/img/photos/other/red_blossoms-thumb.jpg new file mode 100644 index 0000000..a00449e Binary files /dev/null and b/static/img/photos/other/red_blossoms-thumb.jpg differ diff --git a/static/img/photos/other/red_blossoms.jpg b/static/img/photos/other/red_blossoms.jpg new file mode 100644 index 0000000..42a129c Binary files /dev/null and b/static/img/photos/other/red_blossoms.jpg differ diff --git a/static/img/photos/other/red_can-thumb.jpg b/static/img/photos/other/red_can-thumb.jpg new file mode 100644 index 0000000..a59a01b Binary files /dev/null and b/static/img/photos/other/red_can-thumb.jpg differ diff --git a/static/img/photos/other/red_can.jpg b/static/img/photos/other/red_can.jpg new file mode 100644 index 0000000..3eb7a67 Binary files /dev/null and b/static/img/photos/other/red_can.jpg differ diff --git a/static/img/photos/other/red_flower-thumb.jpg b/static/img/photos/other/red_flower-thumb.jpg new file mode 100644 index 0000000..5e87dae Binary files /dev/null and b/static/img/photos/other/red_flower-thumb.jpg differ diff --git a/static/img/photos/other/red_flower.jpg b/static/img/photos/other/red_flower.jpg new file mode 100644 index 0000000..7bc51ab Binary files /dev/null and b/static/img/photos/other/red_flower.jpg differ diff --git a/static/img/photos/other/red_rose-thumb.jpg b/static/img/photos/other/red_rose-thumb.jpg new file mode 100644 index 0000000..098d7c3 Binary files /dev/null and b/static/img/photos/other/red_rose-thumb.jpg differ diff --git a/static/img/photos/other/red_rose.jpg b/static/img/photos/other/red_rose.jpg new file mode 100644 index 0000000..2722f3e Binary files /dev/null and b/static/img/photos/other/red_rose.jpg differ diff --git a/static/img/photos/other/remstal-thumb.jpg b/static/img/photos/other/remstal-thumb.jpg new file mode 100644 index 0000000..fd8871c Binary files /dev/null and b/static/img/photos/other/remstal-thumb.jpg differ diff --git a/static/img/photos/other/remstal.jpg b/static/img/photos/other/remstal.jpg new file mode 100644 index 0000000..e8a931f Binary files /dev/null and b/static/img/photos/other/remstal.jpg differ diff --git a/static/img/photos/other/rose-thumb.jpg b/static/img/photos/other/rose-thumb.jpg new file mode 100644 index 0000000..b397d2b Binary files /dev/null and b/static/img/photos/other/rose-thumb.jpg differ diff --git a/static/img/photos/other/rose.jpg b/static/img/photos/other/rose.jpg new file mode 100644 index 0000000..af577e5 Binary files /dev/null and b/static/img/photos/other/rose.jpg differ diff --git a/static/img/photos/other/rose_i-thumb.jpg b/static/img/photos/other/rose_i-thumb.jpg new file mode 100644 index 0000000..ec66f70 Binary files /dev/null and b/static/img/photos/other/rose_i-thumb.jpg differ diff --git a/static/img/photos/other/rose_i.jpg b/static/img/photos/other/rose_i.jpg new file mode 100644 index 0000000..5108af7 Binary files /dev/null and b/static/img/photos/other/rose_i.jpg differ diff --git a/static/img/photos/other/rose_ii-thumb.jpg b/static/img/photos/other/rose_ii-thumb.jpg new file mode 100644 index 0000000..2cf87e7 Binary files /dev/null and b/static/img/photos/other/rose_ii-thumb.jpg differ diff --git a/static/img/photos/other/rose_ii.jpg b/static/img/photos/other/rose_ii.jpg new file mode 100644 index 0000000..66dc1a1 Binary files /dev/null and b/static/img/photos/other/rose_ii.jpg differ diff --git a/static/img/photos/other/rose_iii-thumb.jpg b/static/img/photos/other/rose_iii-thumb.jpg new file mode 100644 index 0000000..6b9fbba Binary files /dev/null and b/static/img/photos/other/rose_iii-thumb.jpg differ diff --git a/static/img/photos/other/rose_iii.jpg b/static/img/photos/other/rose_iii.jpg new file mode 100644 index 0000000..7809e50 Binary files /dev/null and b/static/img/photos/other/rose_iii.jpg differ diff --git a/static/img/photos/other/rose_in_sunshine-thumb.jpg b/static/img/photos/other/rose_in_sunshine-thumb.jpg new file mode 100644 index 0000000..f9e49a9 Binary files /dev/null and b/static/img/photos/other/rose_in_sunshine-thumb.jpg differ diff --git a/static/img/photos/other/rose_in_sunshine.jpg b/static/img/photos/other/rose_in_sunshine.jpg new file mode 100644 index 0000000..ce6985a Binary files /dev/null and b/static/img/photos/other/rose_in_sunshine.jpg differ diff --git a/static/img/photos/other/rose_iv-thumb.jpg b/static/img/photos/other/rose_iv-thumb.jpg new file mode 100644 index 0000000..86888e1 Binary files /dev/null and b/static/img/photos/other/rose_iv-thumb.jpg differ diff --git a/static/img/photos/other/rose_iv.jpg b/static/img/photos/other/rose_iv.jpg new file mode 100644 index 0000000..5fe0766 Binary files /dev/null and b/static/img/photos/other/rose_iv.jpg differ diff --git a/static/img/photos/other/rose_v-thumb.jpg b/static/img/photos/other/rose_v-thumb.jpg new file mode 100644 index 0000000..89ec93e Binary files /dev/null and b/static/img/photos/other/rose_v-thumb.jpg differ diff --git a/static/img/photos/other/rose_v.jpg b/static/img/photos/other/rose_v.jpg new file mode 100644 index 0000000..ea012d5 Binary files /dev/null and b/static/img/photos/other/rose_v.jpg differ diff --git a/static/img/photos/other/rose_vi-thumb.jpg b/static/img/photos/other/rose_vi-thumb.jpg new file mode 100644 index 0000000..eee0a44 Binary files /dev/null and b/static/img/photos/other/rose_vi-thumb.jpg differ diff --git a/static/img/photos/other/rose_vi.jpg b/static/img/photos/other/rose_vi.jpg new file mode 100644 index 0000000..5955418 Binary files /dev/null and b/static/img/photos/other/rose_vi.jpg differ diff --git a/static/img/photos/other/roses-thumb.jpg b/static/img/photos/other/roses-thumb.jpg new file mode 100644 index 0000000..d941e76 Binary files /dev/null and b/static/img/photos/other/roses-thumb.jpg differ diff --git a/static/img/photos/other/roses.jpg b/static/img/photos/other/roses.jpg new file mode 100644 index 0000000..b19b6b4 Binary files /dev/null and b/static/img/photos/other/roses.jpg differ diff --git a/static/img/photos/other/sea_gull-thumb.jpg b/static/img/photos/other/sea_gull-thumb.jpg new file mode 100644 index 0000000..c48da66 Binary files /dev/null and b/static/img/photos/other/sea_gull-thumb.jpg differ diff --git a/static/img/photos/other/sea_gull.jpg b/static/img/photos/other/sea_gull.jpg new file mode 100644 index 0000000..fe3db17 Binary files /dev/null and b/static/img/photos/other/sea_gull.jpg differ diff --git a/static/img/photos/other/shining_sun-thumb.jpg b/static/img/photos/other/shining_sun-thumb.jpg new file mode 100644 index 0000000..b625e4b Binary files /dev/null and b/static/img/photos/other/shining_sun-thumb.jpg differ diff --git a/static/img/photos/other/shining_sun.jpg b/static/img/photos/other/shining_sun.jpg new file mode 100644 index 0000000..7f3bc86 Binary files /dev/null and b/static/img/photos/other/shining_sun.jpg differ diff --git a/static/img/photos/other/shining_sunflower-thumb.jpg b/static/img/photos/other/shining_sunflower-thumb.jpg new file mode 100644 index 0000000..d7e7b7d Binary files /dev/null and b/static/img/photos/other/shining_sunflower-thumb.jpg differ diff --git a/static/img/photos/other/shining_sunflower.jpg b/static/img/photos/other/shining_sunflower.jpg new file mode 100644 index 0000000..e5edf0a Binary files /dev/null and b/static/img/photos/other/shining_sunflower.jpg differ diff --git a/static/img/photos/other/small_apples-thumb.jpg b/static/img/photos/other/small_apples-thumb.jpg new file mode 100644 index 0000000..b7d3795 Binary files /dev/null and b/static/img/photos/other/small_apples-thumb.jpg differ diff --git a/static/img/photos/other/small_apples.jpg b/static/img/photos/other/small_apples.jpg new file mode 100644 index 0000000..43b60e9 Binary files /dev/null and b/static/img/photos/other/small_apples.jpg differ diff --git a/static/img/photos/other/small_stream-thumb.jpg b/static/img/photos/other/small_stream-thumb.jpg new file mode 100644 index 0000000..4bde1e5 Binary files /dev/null and b/static/img/photos/other/small_stream-thumb.jpg differ diff --git a/static/img/photos/other/small_stream.jpg b/static/img/photos/other/small_stream.jpg new file mode 100644 index 0000000..e20ab04 Binary files /dev/null and b/static/img/photos/other/small_stream.jpg differ diff --git a/static/img/photos/other/snow_in_the_sunshine-thumb.jpg b/static/img/photos/other/snow_in_the_sunshine-thumb.jpg new file mode 100644 index 0000000..0b31703 Binary files /dev/null and b/static/img/photos/other/snow_in_the_sunshine-thumb.jpg differ diff --git a/static/img/photos/other/snow_in_the_sunshine.jpg b/static/img/photos/other/snow_in_the_sunshine.jpg new file mode 100644 index 0000000..067f969 Binary files /dev/null and b/static/img/photos/other/snow_in_the_sunshine.jpg differ diff --git a/static/img/photos/other/snowdrop-thumb.jpg b/static/img/photos/other/snowdrop-thumb.jpg new file mode 100644 index 0000000..6f5265d Binary files /dev/null and b/static/img/photos/other/snowdrop-thumb.jpg differ diff --git a/static/img/photos/other/snowdrop.jpg b/static/img/photos/other/snowdrop.jpg new file mode 100644 index 0000000..33acd8b Binary files /dev/null and b/static/img/photos/other/snowdrop.jpg differ diff --git a/static/img/photos/other/sparkler-thumb.jpg b/static/img/photos/other/sparkler-thumb.jpg new file mode 100644 index 0000000..42b7139 Binary files /dev/null and b/static/img/photos/other/sparkler-thumb.jpg differ diff --git a/static/img/photos/other/sparkler.jpg b/static/img/photos/other/sparkler.jpg new file mode 100644 index 0000000..9a41b54 Binary files /dev/null and b/static/img/photos/other/sparkler.jpg differ diff --git a/static/img/photos/other/spring-thumb.jpg b/static/img/photos/other/spring-thumb.jpg new file mode 100644 index 0000000..79420a7 Binary files /dev/null and b/static/img/photos/other/spring-thumb.jpg differ diff --git a/static/img/photos/other/spring.jpg b/static/img/photos/other/spring.jpg new file mode 100644 index 0000000..8c374b3 Binary files /dev/null and b/static/img/photos/other/spring.jpg differ diff --git a/static/img/photos/other/stairway-thumb.jpg b/static/img/photos/other/stairway-thumb.jpg new file mode 100644 index 0000000..1ad2de9 Binary files /dev/null and b/static/img/photos/other/stairway-thumb.jpg differ diff --git a/static/img/photos/other/stairway.jpg b/static/img/photos/other/stairway.jpg new file mode 100644 index 0000000..c6dbac2 Binary files /dev/null and b/static/img/photos/other/stairway.jpg differ diff --git a/static/img/photos/other/street_at_night-thumb.jpg b/static/img/photos/other/street_at_night-thumb.jpg new file mode 100644 index 0000000..21385eb Binary files /dev/null and b/static/img/photos/other/street_at_night-thumb.jpg differ diff --git a/static/img/photos/other/street_at_night.jpg b/static/img/photos/other/street_at_night.jpg new file mode 100644 index 0000000..f7c25f8 Binary files /dev/null and b/static/img/photos/other/street_at_night.jpg differ diff --git a/static/img/photos/other/stump-thumb.jpg b/static/img/photos/other/stump-thumb.jpg new file mode 100644 index 0000000..dfc584a Binary files /dev/null and b/static/img/photos/other/stump-thumb.jpg differ diff --git a/static/img/photos/other/stump.jpg b/static/img/photos/other/stump.jpg new file mode 100644 index 0000000..fd184ab Binary files /dev/null and b/static/img/photos/other/stump.jpg differ diff --git a/static/img/photos/other/summer-thumb.jpg b/static/img/photos/other/summer-thumb.jpg new file mode 100644 index 0000000..06a5144 Binary files /dev/null and b/static/img/photos/other/summer-thumb.jpg differ diff --git a/static/img/photos/other/summer.jpg b/static/img/photos/other/summer.jpg new file mode 100644 index 0000000..fe8e176 Binary files /dev/null and b/static/img/photos/other/summer.jpg differ diff --git a/static/img/photos/other/sun_above_remstal-thumb.jpg b/static/img/photos/other/sun_above_remstal-thumb.jpg new file mode 100644 index 0000000..1484334 Binary files /dev/null and b/static/img/photos/other/sun_above_remstal-thumb.jpg differ diff --git a/static/img/photos/other/sun_above_remstal.jpg b/static/img/photos/other/sun_above_remstal.jpg new file mode 100644 index 0000000..5ea48a8 Binary files /dev/null and b/static/img/photos/other/sun_above_remstal.jpg differ diff --git a/static/img/photos/other/sunflower-thumb.jpg b/static/img/photos/other/sunflower-thumb.jpg new file mode 100644 index 0000000..0d43091 Binary files /dev/null and b/static/img/photos/other/sunflower-thumb.jpg differ diff --git a/static/img/photos/other/sunflower.jpg b/static/img/photos/other/sunflower.jpg new file mode 100644 index 0000000..7469d11 Binary files /dev/null and b/static/img/photos/other/sunflower.jpg differ diff --git a/static/img/photos/other/sunny_trees-thumb.jpg b/static/img/photos/other/sunny_trees-thumb.jpg new file mode 100644 index 0000000..e149073 Binary files /dev/null and b/static/img/photos/other/sunny_trees-thumb.jpg differ diff --git a/static/img/photos/other/sunny_trees.jpg b/static/img/photos/other/sunny_trees.jpg new file mode 100644 index 0000000..212e886 Binary files /dev/null and b/static/img/photos/other/sunny_trees.jpg differ diff --git a/static/img/photos/other/sunrise-thumb.jpg b/static/img/photos/other/sunrise-thumb.jpg new file mode 100644 index 0000000..fb31587 Binary files /dev/null and b/static/img/photos/other/sunrise-thumb.jpg differ diff --git a/static/img/photos/other/sunrise.jpg b/static/img/photos/other/sunrise.jpg new file mode 100644 index 0000000..74183ec Binary files /dev/null and b/static/img/photos/other/sunrise.jpg differ diff --git a/static/img/photos/other/sunset_flower-thumb.jpg b/static/img/photos/other/sunset_flower-thumb.jpg new file mode 100644 index 0000000..efdd4a4 Binary files /dev/null and b/static/img/photos/other/sunset_flower-thumb.jpg differ diff --git a/static/img/photos/other/sunset_flower.jpg b/static/img/photos/other/sunset_flower.jpg new file mode 100644 index 0000000..20a8caf Binary files /dev/null and b/static/img/photos/other/sunset_flower.jpg differ diff --git a/static/img/photos/other/swabian_alb-thumb.jpg b/static/img/photos/other/swabian_alb-thumb.jpg new file mode 100644 index 0000000..1ce4612 Binary files /dev/null and b/static/img/photos/other/swabian_alb-thumb.jpg differ diff --git a/static/img/photos/other/swabian_alb.jpg b/static/img/photos/other/swabian_alb.jpg new file mode 100644 index 0000000..c49cefa Binary files /dev/null and b/static/img/photos/other/swabian_alb.jpg differ diff --git a/static/img/photos/other/tasty_walnuts-thumb.jpg b/static/img/photos/other/tasty_walnuts-thumb.jpg new file mode 100644 index 0000000..7d7cd35 Binary files /dev/null and b/static/img/photos/other/tasty_walnuts-thumb.jpg differ diff --git a/static/img/photos/other/tasty_walnuts.jpg b/static/img/photos/other/tasty_walnuts.jpg new file mode 100644 index 0000000..660bb8f Binary files /dev/null and b/static/img/photos/other/tasty_walnuts.jpg differ diff --git a/static/img/photos/other/tent-thumb.jpg b/static/img/photos/other/tent-thumb.jpg new file mode 100644 index 0000000..a903cfd Binary files /dev/null and b/static/img/photos/other/tent-thumb.jpg differ diff --git a/static/img/photos/other/tent.jpg b/static/img/photos/other/tent.jpg new file mode 100644 index 0000000..07873bd Binary files /dev/null and b/static/img/photos/other/tent.jpg differ diff --git a/static/img/photos/other/tomatoes-thumb.jpg b/static/img/photos/other/tomatoes-thumb.jpg new file mode 100644 index 0000000..fde8fed Binary files /dev/null and b/static/img/photos/other/tomatoes-thumb.jpg differ diff --git a/static/img/photos/other/tomatoes.jpg b/static/img/photos/other/tomatoes.jpg new file mode 100644 index 0000000..ca0f75f Binary files /dev/null and b/static/img/photos/other/tomatoes.jpg differ diff --git a/static/img/photos/other/tree-thumb.jpg b/static/img/photos/other/tree-thumb.jpg new file mode 100644 index 0000000..a5e40ad Binary files /dev/null and b/static/img/photos/other/tree-thumb.jpg differ diff --git a/static/img/photos/other/tree.jpg b/static/img/photos/other/tree.jpg new file mode 100644 index 0000000..0869b49 Binary files /dev/null and b/static/img/photos/other/tree.jpg differ diff --git a/static/img/photos/other/tree_8946-thumb.jpg b/static/img/photos/other/tree_8946-thumb.jpg new file mode 100644 index 0000000..16ad77d Binary files /dev/null and b/static/img/photos/other/tree_8946-thumb.jpg differ diff --git a/static/img/photos/other/tree_8946.jpg b/static/img/photos/other/tree_8946.jpg new file mode 100644 index 0000000..e76d70d Binary files /dev/null and b/static/img/photos/other/tree_8946.jpg differ diff --git a/static/img/photos/other/tree_in_autumn-thumb.jpg b/static/img/photos/other/tree_in_autumn-thumb.jpg new file mode 100644 index 0000000..5d806ba Binary files /dev/null and b/static/img/photos/other/tree_in_autumn-thumb.jpg differ diff --git a/static/img/photos/other/tree_in_autumn.jpg b/static/img/photos/other/tree_in_autumn.jpg new file mode 100644 index 0000000..ea803a1 Binary files /dev/null and b/static/img/photos/other/tree_in_autumn.jpg differ diff --git a/static/img/photos/other/tree_in_autumn_sun-thumb.jpg b/static/img/photos/other/tree_in_autumn_sun-thumb.jpg new file mode 100644 index 0000000..135142e Binary files /dev/null and b/static/img/photos/other/tree_in_autumn_sun-thumb.jpg differ diff --git a/static/img/photos/other/tree_in_autumn_sun.jpg b/static/img/photos/other/tree_in_autumn_sun.jpg new file mode 100644 index 0000000..55b1d87 Binary files /dev/null and b/static/img/photos/other/tree_in_autumn_sun.jpg differ diff --git a/static/img/photos/other/trees-thumb.jpg b/static/img/photos/other/trees-thumb.jpg new file mode 100644 index 0000000..f7159b3 Binary files /dev/null and b/static/img/photos/other/trees-thumb.jpg differ diff --git a/static/img/photos/other/trees.jpg b/static/img/photos/other/trees.jpg new file mode 100644 index 0000000..0d39789 Binary files /dev/null and b/static/img/photos/other/trees.jpg differ diff --git a/static/img/photos/other/tridom-thumb.jpg b/static/img/photos/other/tridom-thumb.jpg new file mode 100644 index 0000000..f2388bb Binary files /dev/null and b/static/img/photos/other/tridom-thumb.jpg differ diff --git a/static/img/photos/other/tridom.jpg b/static/img/photos/other/tridom.jpg new file mode 100644 index 0000000..482787d Binary files /dev/null and b/static/img/photos/other/tridom.jpg differ diff --git a/static/img/photos/other/two_candles-thumb.jpg b/static/img/photos/other/two_candles-thumb.jpg new file mode 100644 index 0000000..bf21154 Binary files /dev/null and b/static/img/photos/other/two_candles-thumb.jpg differ diff --git a/static/img/photos/other/two_candles.jpg b/static/img/photos/other/two_candles.jpg new file mode 100644 index 0000000..44b8638 Binary files /dev/null and b/static/img/photos/other/two_candles.jpg differ diff --git a/static/img/photos/other/vine_leaves-thumb.jpg b/static/img/photos/other/vine_leaves-thumb.jpg new file mode 100644 index 0000000..c7ff24c Binary files /dev/null and b/static/img/photos/other/vine_leaves-thumb.jpg differ diff --git a/static/img/photos/other/vine_leaves.jpg b/static/img/photos/other/vine_leaves.jpg new file mode 100644 index 0000000..5e82408 Binary files /dev/null and b/static/img/photos/other/vine_leaves.jpg differ diff --git a/static/img/photos/other/vineyards-thumb.jpg b/static/img/photos/other/vineyards-thumb.jpg new file mode 100644 index 0000000..4be0217 Binary files /dev/null and b/static/img/photos/other/vineyards-thumb.jpg differ diff --git a/static/img/photos/other/vineyards.jpg b/static/img/photos/other/vineyards.jpg new file mode 100644 index 0000000..c1b837e Binary files /dev/null and b/static/img/photos/other/vineyards.jpg differ diff --git a/static/img/photos/other/walnut-thumb.jpg b/static/img/photos/other/walnut-thumb.jpg new file mode 100644 index 0000000..120027d Binary files /dev/null and b/static/img/photos/other/walnut-thumb.jpg differ diff --git a/static/img/photos/other/walnut.jpg b/static/img/photos/other/walnut.jpg new file mode 100644 index 0000000..8955165 Binary files /dev/null and b/static/img/photos/other/walnut.jpg differ diff --git a/static/img/photos/other/water-thumb.jpg b/static/img/photos/other/water-thumb.jpg new file mode 100644 index 0000000..6c01d95 Binary files /dev/null and b/static/img/photos/other/water-thumb.jpg differ diff --git a/static/img/photos/other/water.jpg b/static/img/photos/other/water.jpg new file mode 100644 index 0000000..017116c Binary files /dev/null and b/static/img/photos/other/water.jpg differ diff --git a/static/img/photos/other/water_balloons-thumb.jpg b/static/img/photos/other/water_balloons-thumb.jpg new file mode 100644 index 0000000..df53376 Binary files /dev/null and b/static/img/photos/other/water_balloons-thumb.jpg differ diff --git a/static/img/photos/other/water_balloons.jpg b/static/img/photos/other/water_balloons.jpg new file mode 100644 index 0000000..a09d57c Binary files /dev/null and b/static/img/photos/other/water_balloons.jpg differ diff --git a/static/img/photos/other/wilhelma_i-thumb.jpg b/static/img/photos/other/wilhelma_i-thumb.jpg new file mode 100644 index 0000000..50d4000 Binary files /dev/null and b/static/img/photos/other/wilhelma_i-thumb.jpg differ diff --git a/static/img/photos/other/wilhelma_i.jpg b/static/img/photos/other/wilhelma_i.jpg new file mode 100644 index 0000000..6f7271e Binary files /dev/null and b/static/img/photos/other/wilhelma_i.jpg differ diff --git a/static/img/photos/other/wilhelma_ii-thumb.jpg b/static/img/photos/other/wilhelma_ii-thumb.jpg new file mode 100644 index 0000000..3fc66f0 Binary files /dev/null and b/static/img/photos/other/wilhelma_ii-thumb.jpg differ diff --git a/static/img/photos/other/wilhelma_ii.jpg b/static/img/photos/other/wilhelma_ii.jpg new file mode 100644 index 0000000..9acc726 Binary files /dev/null and b/static/img/photos/other/wilhelma_ii.jpg differ diff --git a/static/img/photos/other/wilhelma_iii-thumb.jpg b/static/img/photos/other/wilhelma_iii-thumb.jpg new file mode 100644 index 0000000..8884cf7 Binary files /dev/null and b/static/img/photos/other/wilhelma_iii-thumb.jpg differ diff --git a/static/img/photos/other/wilhelma_iii.jpg b/static/img/photos/other/wilhelma_iii.jpg new file mode 100644 index 0000000..d95033b Binary files /dev/null and b/static/img/photos/other/wilhelma_iii.jpg differ diff --git a/static/img/photos/other/wilhelma_iv-thumb.jpg b/static/img/photos/other/wilhelma_iv-thumb.jpg new file mode 100644 index 0000000..1124bb8 Binary files /dev/null and b/static/img/photos/other/wilhelma_iv-thumb.jpg differ diff --git a/static/img/photos/other/wilhelma_iv.jpg b/static/img/photos/other/wilhelma_iv.jpg new file mode 100644 index 0000000..63672b3 Binary files /dev/null and b/static/img/photos/other/wilhelma_iv.jpg differ diff --git a/static/img/photos/other/winter_forest-thumb.jpg b/static/img/photos/other/winter_forest-thumb.jpg new file mode 100644 index 0000000..0cde9fc Binary files /dev/null and b/static/img/photos/other/winter_forest-thumb.jpg differ diff --git a/static/img/photos/other/winter_forest.jpg b/static/img/photos/other/winter_forest.jpg new file mode 100644 index 0000000..d234ac4 Binary files /dev/null and b/static/img/photos/other/winter_forest.jpg differ diff --git a/static/img/photos/other/yellow_rose-thumb.jpg b/static/img/photos/other/yellow_rose-thumb.jpg new file mode 100644 index 0000000..adac67a Binary files /dev/null and b/static/img/photos/other/yellow_rose-thumb.jpg differ diff --git a/static/img/photos/other/yellow_rose.jpg b/static/img/photos/other/yellow_rose.jpg new file mode 100644 index 0000000..f591606 Binary files /dev/null and b/static/img/photos/other/yellow_rose.jpg differ diff --git a/static/img/photos/other/yellow_rose_color-thumb.jpg b/static/img/photos/other/yellow_rose_color-thumb.jpg new file mode 100644 index 0000000..97ae068 Binary files /dev/null and b/static/img/photos/other/yellow_rose_color-thumb.jpg differ diff --git a/static/img/photos/other/yellow_rose_color.jpg b/static/img/photos/other/yellow_rose_color.jpg new file mode 100644 index 0000000..d752263 Binary files /dev/null and b/static/img/photos/other/yellow_rose_color.jpg differ diff --git a/static/img/photos/other/yellow_rose_ii-thumb.jpg b/static/img/photos/other/yellow_rose_ii-thumb.jpg new file mode 100644 index 0000000..8c58f27 Binary files /dev/null and b/static/img/photos/other/yellow_rose_ii-thumb.jpg differ diff --git a/static/img/photos/other/yellow_rose_ii.jpg b/static/img/photos/other/yellow_rose_ii.jpg new file mode 100644 index 0000000..3dddf5d Binary files /dev/null and b/static/img/photos/other/yellow_rose_ii.jpg differ diff --git a/static/img/photos/romania-2006.jpg b/static/img/photos/romania-2006.jpg new file mode 100644 index 0000000..2375616 Binary files /dev/null and b/static/img/photos/romania-2006.jpg differ diff --git a/static/img/photos/romania-2006/img_0928-thumb.jpg b/static/img/photos/romania-2006/img_0928-thumb.jpg new file mode 100644 index 0000000..8fb3724 Binary files /dev/null and b/static/img/photos/romania-2006/img_0928-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0928.jpg b/static/img/photos/romania-2006/img_0928.jpg new file mode 100644 index 0000000..c36cd77 Binary files /dev/null and b/static/img/photos/romania-2006/img_0928.jpg differ diff --git a/static/img/photos/romania-2006/img_0929-thumb.jpg b/static/img/photos/romania-2006/img_0929-thumb.jpg new file mode 100644 index 0000000..241f558 Binary files /dev/null and b/static/img/photos/romania-2006/img_0929-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0929.jpg b/static/img/photos/romania-2006/img_0929.jpg new file mode 100644 index 0000000..3ae70a9 Binary files /dev/null and b/static/img/photos/romania-2006/img_0929.jpg differ diff --git a/static/img/photos/romania-2006/img_0931a-thumb.jpg b/static/img/photos/romania-2006/img_0931a-thumb.jpg new file mode 100644 index 0000000..f8e0ede Binary files /dev/null and b/static/img/photos/romania-2006/img_0931a-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0931a.jpg b/static/img/photos/romania-2006/img_0931a.jpg new file mode 100644 index 0000000..3a2fff6 Binary files /dev/null and b/static/img/photos/romania-2006/img_0931a.jpg differ diff --git a/static/img/photos/romania-2006/img_0932-thumb.jpg b/static/img/photos/romania-2006/img_0932-thumb.jpg new file mode 100644 index 0000000..a7a1c18 Binary files /dev/null and b/static/img/photos/romania-2006/img_0932-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0932.jpg b/static/img/photos/romania-2006/img_0932.jpg new file mode 100644 index 0000000..e91b5a5 Binary files /dev/null and b/static/img/photos/romania-2006/img_0932.jpg differ diff --git a/static/img/photos/romania-2006/img_0934-thumb.jpg b/static/img/photos/romania-2006/img_0934-thumb.jpg new file mode 100644 index 0000000..c78531a Binary files /dev/null and b/static/img/photos/romania-2006/img_0934-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0934.jpg b/static/img/photos/romania-2006/img_0934.jpg new file mode 100644 index 0000000..7082243 Binary files /dev/null and b/static/img/photos/romania-2006/img_0934.jpg differ diff --git a/static/img/photos/romania-2006/img_0935-thumb.jpg b/static/img/photos/romania-2006/img_0935-thumb.jpg new file mode 100644 index 0000000..423f5af Binary files /dev/null and b/static/img/photos/romania-2006/img_0935-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0935.jpg b/static/img/photos/romania-2006/img_0935.jpg new file mode 100644 index 0000000..681f96e Binary files /dev/null and b/static/img/photos/romania-2006/img_0935.jpg differ diff --git a/static/img/photos/romania-2006/img_0939-thumb.jpg b/static/img/photos/romania-2006/img_0939-thumb.jpg new file mode 100644 index 0000000..ffa82af Binary files /dev/null and b/static/img/photos/romania-2006/img_0939-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0939.jpg b/static/img/photos/romania-2006/img_0939.jpg new file mode 100644 index 0000000..4fbce1c Binary files /dev/null and b/static/img/photos/romania-2006/img_0939.jpg differ diff --git a/static/img/photos/romania-2006/img_0941-thumb.jpg b/static/img/photos/romania-2006/img_0941-thumb.jpg new file mode 100644 index 0000000..069feca Binary files /dev/null and b/static/img/photos/romania-2006/img_0941-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0941.jpg b/static/img/photos/romania-2006/img_0941.jpg new file mode 100644 index 0000000..b9d0a88 Binary files /dev/null and b/static/img/photos/romania-2006/img_0941.jpg differ diff --git a/static/img/photos/romania-2006/img_0943-thumb.jpg b/static/img/photos/romania-2006/img_0943-thumb.jpg new file mode 100644 index 0000000..0af0ded Binary files /dev/null and b/static/img/photos/romania-2006/img_0943-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0943.jpg b/static/img/photos/romania-2006/img_0943.jpg new file mode 100644 index 0000000..92d31ca Binary files /dev/null and b/static/img/photos/romania-2006/img_0943.jpg differ diff --git a/static/img/photos/romania-2006/img_0944-thumb.jpg b/static/img/photos/romania-2006/img_0944-thumb.jpg new file mode 100644 index 0000000..3be7bc8 Binary files /dev/null and b/static/img/photos/romania-2006/img_0944-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0944.jpg b/static/img/photos/romania-2006/img_0944.jpg new file mode 100644 index 0000000..0559ae3 Binary files /dev/null and b/static/img/photos/romania-2006/img_0944.jpg differ diff --git a/static/img/photos/romania-2006/img_0947-thumb.jpg b/static/img/photos/romania-2006/img_0947-thumb.jpg new file mode 100644 index 0000000..e3311f1 Binary files /dev/null and b/static/img/photos/romania-2006/img_0947-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0947.jpg b/static/img/photos/romania-2006/img_0947.jpg new file mode 100644 index 0000000..9caac41 Binary files /dev/null and b/static/img/photos/romania-2006/img_0947.jpg differ diff --git a/static/img/photos/romania-2006/img_0949-thumb.jpg b/static/img/photos/romania-2006/img_0949-thumb.jpg new file mode 100644 index 0000000..03e2109 Binary files /dev/null and b/static/img/photos/romania-2006/img_0949-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0949.jpg b/static/img/photos/romania-2006/img_0949.jpg new file mode 100644 index 0000000..9ee24b7 Binary files /dev/null and b/static/img/photos/romania-2006/img_0949.jpg differ diff --git a/static/img/photos/romania-2006/img_0956-thumb.jpg b/static/img/photos/romania-2006/img_0956-thumb.jpg new file mode 100644 index 0000000..ca0390c Binary files /dev/null and b/static/img/photos/romania-2006/img_0956-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0956.jpg b/static/img/photos/romania-2006/img_0956.jpg new file mode 100644 index 0000000..c6899ba Binary files /dev/null and b/static/img/photos/romania-2006/img_0956.jpg differ diff --git a/static/img/photos/romania-2006/img_0957-thumb.jpg b/static/img/photos/romania-2006/img_0957-thumb.jpg new file mode 100644 index 0000000..5899a11 Binary files /dev/null and b/static/img/photos/romania-2006/img_0957-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0957.jpg b/static/img/photos/romania-2006/img_0957.jpg new file mode 100644 index 0000000..cf0cc06 Binary files /dev/null and b/static/img/photos/romania-2006/img_0957.jpg differ diff --git a/static/img/photos/romania-2006/img_0960-thumb.jpg b/static/img/photos/romania-2006/img_0960-thumb.jpg new file mode 100644 index 0000000..bad46ec Binary files /dev/null and b/static/img/photos/romania-2006/img_0960-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0960.jpg b/static/img/photos/romania-2006/img_0960.jpg new file mode 100644 index 0000000..2ddfd91 Binary files /dev/null and b/static/img/photos/romania-2006/img_0960.jpg differ diff --git a/static/img/photos/romania-2006/img_0961-thumb.jpg b/static/img/photos/romania-2006/img_0961-thumb.jpg new file mode 100644 index 0000000..85ac9a1 Binary files /dev/null and b/static/img/photos/romania-2006/img_0961-thumb.jpg differ diff --git a/static/img/photos/romania-2006/img_0961.jpg b/static/img/photos/romania-2006/img_0961.jpg new file mode 100644 index 0000000..ef2c3f1 Binary files /dev/null and b/static/img/photos/romania-2006/img_0961.jpg differ diff --git a/static/img/photos/saarland-2018.jpg b/static/img/photos/saarland-2018.jpg new file mode 100644 index 0000000..6b0ef1e Binary files /dev/null and b/static/img/photos/saarland-2018.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_10-03-42_thomas_002-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_10-03-42_thomas_002-thumb.jpg new file mode 100644 index 0000000..2d6697d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_10-03-42_thomas_002-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_10-03-42_thomas_002.jpg b/static/img/photos/saarland-2018/2018-05-19_10-03-42_thomas_002.jpg new file mode 100644 index 0000000..539c0c0 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_10-03-42_thomas_002.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_10-39-02_thomas_006-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_10-39-02_thomas_006-thumb.jpg new file mode 100644 index 0000000..d8acc7a Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_10-39-02_thomas_006-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_10-39-02_thomas_006.jpg b/static/img/photos/saarland-2018/2018-05-19_10-39-02_thomas_006.jpg new file mode 100644 index 0000000..89e6c4f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_10-39-02_thomas_006.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_10-58-34_thomas_008-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_10-58-34_thomas_008-thumb.jpg new file mode 100644 index 0000000..26c1ffc Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_10-58-34_thomas_008-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_10-58-34_thomas_008.jpg b/static/img/photos/saarland-2018/2018-05-19_10-58-34_thomas_008.jpg new file mode 100644 index 0000000..089a5a8 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_10-58-34_thomas_008.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-26-05_thomas_017-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_11-26-05_thomas_017-thumb.jpg new file mode 100644 index 0000000..84ba200 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-26-05_thomas_017-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-26-05_thomas_017.jpg b/static/img/photos/saarland-2018/2018-05-19_11-26-05_thomas_017.jpg new file mode 100644 index 0000000..13b14e4 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-26-05_thomas_017.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-31-01_thomas_019-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_11-31-01_thomas_019-thumb.jpg new file mode 100644 index 0000000..cbbb264 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-31-01_thomas_019-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-31-01_thomas_019.jpg b/static/img/photos/saarland-2018/2018-05-19_11-31-01_thomas_019.jpg new file mode 100644 index 0000000..ed6aeea Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-31-01_thomas_019.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-39-28_thomas_023-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_11-39-28_thomas_023-thumb.jpg new file mode 100644 index 0000000..106fa4f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-39-28_thomas_023-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-39-28_thomas_023.jpg b/static/img/photos/saarland-2018/2018-05-19_11-39-28_thomas_023.jpg new file mode 100644 index 0000000..b3557ba Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-39-28_thomas_023.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-45-54_thomas_025-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_11-45-54_thomas_025-thumb.jpg new file mode 100644 index 0000000..1b25026 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-45-54_thomas_025-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_11-45-54_thomas_025.jpg b/static/img/photos/saarland-2018/2018-05-19_11-45-54_thomas_025.jpg new file mode 100644 index 0000000..ff0fd30 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_11-45-54_thomas_025.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-09-20_thomas_027-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_12-09-20_thomas_027-thumb.jpg new file mode 100644 index 0000000..ad84bd5 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-09-20_thomas_027-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-09-20_thomas_027.jpg b/static/img/photos/saarland-2018/2018-05-19_12-09-20_thomas_027.jpg new file mode 100644 index 0000000..fc9c0e7 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-09-20_thomas_027.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-16-26_thomas_029-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_12-16-26_thomas_029-thumb.jpg new file mode 100644 index 0000000..2e7efea Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-16-26_thomas_029-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-16-26_thomas_029.jpg b/static/img/photos/saarland-2018/2018-05-19_12-16-26_thomas_029.jpg new file mode 100644 index 0000000..d9bb610 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-16-26_thomas_029.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-54-57_thomas_031-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_12-54-57_thomas_031-thumb.jpg new file mode 100644 index 0000000..503dbd0 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-54-57_thomas_031-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-54-57_thomas_031.jpg b/static/img/photos/saarland-2018/2018-05-19_12-54-57_thomas_031.jpg new file mode 100644 index 0000000..45ca000 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-54-57_thomas_031.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-59-25_thomas_035-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_12-59-25_thomas_035-thumb.jpg new file mode 100644 index 0000000..331c40c Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-59-25_thomas_035-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_12-59-25_thomas_035.jpg b/static/img/photos/saarland-2018/2018-05-19_12-59-25_thomas_035.jpg new file mode 100644 index 0000000..d32202e Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_12-59-25_thomas_035.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-01-46_thomas_039-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_13-01-46_thomas_039-thumb.jpg new file mode 100644 index 0000000..3d60145 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-01-46_thomas_039-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-01-46_thomas_039.jpg b/static/img/photos/saarland-2018/2018-05-19_13-01-46_thomas_039.jpg new file mode 100644 index 0000000..9e0dfd0 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-01-46_thomas_039.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-03-09_thomas_041-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_13-03-09_thomas_041-thumb.jpg new file mode 100644 index 0000000..d6c11e3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-03-09_thomas_041-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-03-09_thomas_041.jpg b/static/img/photos/saarland-2018/2018-05-19_13-03-09_thomas_041.jpg new file mode 100644 index 0000000..7b0fa0f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-03-09_thomas_041.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-14-56_thomas_042-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_13-14-56_thomas_042-thumb.jpg new file mode 100644 index 0000000..4ba7f65 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-14-56_thomas_042-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-14-56_thomas_042.jpg b/static/img/photos/saarland-2018/2018-05-19_13-14-56_thomas_042.jpg new file mode 100644 index 0000000..adc3bc2 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-14-56_thomas_042.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-36-21_thomas_044-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_13-36-21_thomas_044-thumb.jpg new file mode 100644 index 0000000..5668c3a Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-36-21_thomas_044-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-36-21_thomas_044.jpg b/static/img/photos/saarland-2018/2018-05-19_13-36-21_thomas_044.jpg new file mode 100644 index 0000000..bacccbe Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-36-21_thomas_044.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-51-18_thomas_046-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_13-51-18_thomas_046-thumb.jpg new file mode 100644 index 0000000..08c5b9f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-51-18_thomas_046-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-51-18_thomas_046.jpg b/static/img/photos/saarland-2018/2018-05-19_13-51-18_thomas_046.jpg new file mode 100644 index 0000000..e3ea405 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-51-18_thomas_046.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-51-41_thomas_047-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_13-51-41_thomas_047-thumb.jpg new file mode 100644 index 0000000..c750287 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-51-41_thomas_047-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_13-51-41_thomas_047.jpg b/static/img/photos/saarland-2018/2018-05-19_13-51-41_thomas_047.jpg new file mode 100644 index 0000000..470518c Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_13-51-41_thomas_047.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_14-17-43_thomas_049-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_14-17-43_thomas_049-thumb.jpg new file mode 100644 index 0000000..52d37a9 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_14-17-43_thomas_049-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_14-17-43_thomas_049.jpg b/static/img/photos/saarland-2018/2018-05-19_14-17-43_thomas_049.jpg new file mode 100644 index 0000000..b83b1f9 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_14-17-43_thomas_049.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_14-40-34_thomas_054-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_14-40-34_thomas_054-thumb.jpg new file mode 100644 index 0000000..4249b5b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_14-40-34_thomas_054-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_14-40-34_thomas_054.jpg b/static/img/photos/saarland-2018/2018-05-19_14-40-34_thomas_054.jpg new file mode 100644 index 0000000..d3298a0 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_14-40-34_thomas_054.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_14-52-49_thomas_056-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_14-52-49_thomas_056-thumb.jpg new file mode 100644 index 0000000..8582f82 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_14-52-49_thomas_056-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_14-52-49_thomas_056.jpg b/static/img/photos/saarland-2018/2018-05-19_14-52-49_thomas_056.jpg new file mode 100644 index 0000000..0273e24 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_14-52-49_thomas_056.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_15-32-23_thomas_062-thumb.jpg b/static/img/photos/saarland-2018/2018-05-19_15-32-23_thomas_062-thumb.jpg new file mode 100644 index 0000000..c46e4d9 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_15-32-23_thomas_062-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-19_15-32-23_thomas_062.jpg b/static/img/photos/saarland-2018/2018-05-19_15-32-23_thomas_062.jpg new file mode 100644 index 0000000..133eb01 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-19_15-32-23_thomas_062.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-03-50_thomas_063-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-03-50_thomas_063-thumb.jpg new file mode 100644 index 0000000..ba69ce3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-03-50_thomas_063-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-03-50_thomas_063.jpg b/static/img/photos/saarland-2018/2018-05-20_11-03-50_thomas_063.jpg new file mode 100644 index 0000000..2f3aaa0 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-03-50_thomas_063.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-04-18_thomas_064-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-04-18_thomas_064-thumb.jpg new file mode 100644 index 0000000..8837233 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-04-18_thomas_064-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-04-18_thomas_064.jpg b/static/img/photos/saarland-2018/2018-05-20_11-04-18_thomas_064.jpg new file mode 100644 index 0000000..589f898 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-04-18_thomas_064.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-09-47_thomas_068-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-09-47_thomas_068-thumb.jpg new file mode 100644 index 0000000..7df17d9 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-09-47_thomas_068-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-09-47_thomas_068.jpg b/static/img/photos/saarland-2018/2018-05-20_11-09-47_thomas_068.jpg new file mode 100644 index 0000000..56ceadf Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-09-47_thomas_068.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-14-58_thomas_071-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-14-58_thomas_071-thumb.jpg new file mode 100644 index 0000000..2bfb65b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-14-58_thomas_071-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-14-58_thomas_071.jpg b/static/img/photos/saarland-2018/2018-05-20_11-14-58_thomas_071.jpg new file mode 100644 index 0000000..9069d95 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-14-58_thomas_071.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-19-38_thomas_074-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-19-38_thomas_074-thumb.jpg new file mode 100644 index 0000000..31dc8ce Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-19-38_thomas_074-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-19-38_thomas_074.jpg b/static/img/photos/saarland-2018/2018-05-20_11-19-38_thomas_074.jpg new file mode 100644 index 0000000..9fcd1a3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-19-38_thomas_074.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-21-30_thomas_077-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-21-30_thomas_077-thumb.jpg new file mode 100644 index 0000000..b083609 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-21-30_thomas_077-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-21-30_thomas_077.jpg b/static/img/photos/saarland-2018/2018-05-20_11-21-30_thomas_077.jpg new file mode 100644 index 0000000..0664482 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-21-30_thomas_077.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-22-25_thomas_079-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-22-25_thomas_079-thumb.jpg new file mode 100644 index 0000000..b059989 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-22-25_thomas_079-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-22-25_thomas_079.jpg b/static/img/photos/saarland-2018/2018-05-20_11-22-25_thomas_079.jpg new file mode 100644 index 0000000..790a669 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-22-25_thomas_079.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-25-43_thomas_083-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-25-43_thomas_083-thumb.jpg new file mode 100644 index 0000000..43b534a Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-25-43_thomas_083-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-25-43_thomas_083.jpg b/static/img/photos/saarland-2018/2018-05-20_11-25-43_thomas_083.jpg new file mode 100644 index 0000000..3e89526 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-25-43_thomas_083.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-29-06_thomas_088-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-29-06_thomas_088-thumb.jpg new file mode 100644 index 0000000..b42ab5b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-29-06_thomas_088-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-29-06_thomas_088.jpg b/static/img/photos/saarland-2018/2018-05-20_11-29-06_thomas_088.jpg new file mode 100644 index 0000000..27744e6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-29-06_thomas_088.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-30-15_thomas_092-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-30-15_thomas_092-thumb.jpg new file mode 100644 index 0000000..2b4c070 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-30-15_thomas_092-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-30-15_thomas_092.jpg b/static/img/photos/saarland-2018/2018-05-20_11-30-15_thomas_092.jpg new file mode 100644 index 0000000..6e28eea Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-30-15_thomas_092.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-36-12_thomas_095-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-36-12_thomas_095-thumb.jpg new file mode 100644 index 0000000..9c555f6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-36-12_thomas_095-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-36-12_thomas_095.jpg b/static/img/photos/saarland-2018/2018-05-20_11-36-12_thomas_095.jpg new file mode 100644 index 0000000..48ca89c Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-36-12_thomas_095.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-36-28_thomas_096-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-36-28_thomas_096-thumb.jpg new file mode 100644 index 0000000..e4bd8af Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-36-28_thomas_096-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-36-28_thomas_096.jpg b/static/img/photos/saarland-2018/2018-05-20_11-36-28_thomas_096.jpg new file mode 100644 index 0000000..7bc7200 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-36-28_thomas_096.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-37-41_thomas_097-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-37-41_thomas_097-thumb.jpg new file mode 100644 index 0000000..8c286f8 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-37-41_thomas_097-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-37-41_thomas_097.jpg b/static/img/photos/saarland-2018/2018-05-20_11-37-41_thomas_097.jpg new file mode 100644 index 0000000..144a7f6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-37-41_thomas_097.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-58-52_thomas_098-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-58-52_thomas_098-thumb.jpg new file mode 100644 index 0000000..10405bf Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-58-52_thomas_098-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-58-52_thomas_098.jpg b/static/img/photos/saarland-2018/2018-05-20_11-58-52_thomas_098.jpg new file mode 100644 index 0000000..57329f4 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-58-52_thomas_098.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-59-03_thomas_100-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_11-59-03_thomas_100-thumb.jpg new file mode 100644 index 0000000..f57b67e Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-59-03_thomas_100-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_11-59-03_thomas_100.jpg b/static/img/photos/saarland-2018/2018-05-20_11-59-03_thomas_100.jpg new file mode 100644 index 0000000..c5c347d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_11-59-03_thomas_100.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-00-38_thomas_101-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-00-38_thomas_101-thumb.jpg new file mode 100644 index 0000000..99604c5 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-00-38_thomas_101-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-00-38_thomas_101.jpg b/static/img/photos/saarland-2018/2018-05-20_12-00-38_thomas_101.jpg new file mode 100644 index 0000000..224397f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-00-38_thomas_101.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-03-22_thomas_102-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-03-22_thomas_102-thumb.jpg new file mode 100644 index 0000000..7622caa Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-03-22_thomas_102-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-03-22_thomas_102.jpg b/static/img/photos/saarland-2018/2018-05-20_12-03-22_thomas_102.jpg new file mode 100644 index 0000000..473d9df Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-03-22_thomas_102.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-12-12_thomas_108-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-12-12_thomas_108-thumb.jpg new file mode 100644 index 0000000..b06b3b5 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-12-12_thomas_108-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-12-12_thomas_108.jpg b/static/img/photos/saarland-2018/2018-05-20_12-12-12_thomas_108.jpg new file mode 100644 index 0000000..79ebbe1 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-12-12_thomas_108.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-19-41_thomas_110-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-19-41_thomas_110-thumb.jpg new file mode 100644 index 0000000..8b30c23 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-19-41_thomas_110-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-19-41_thomas_110.jpg b/static/img/photos/saarland-2018/2018-05-20_12-19-41_thomas_110.jpg new file mode 100644 index 0000000..03f091e Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-19-41_thomas_110.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-31-37_thomas_113-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-31-37_thomas_113-thumb.jpg new file mode 100644 index 0000000..12f893d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-31-37_thomas_113-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-31-37_thomas_113.jpg b/static/img/photos/saarland-2018/2018-05-20_12-31-37_thomas_113.jpg new file mode 100644 index 0000000..ffda648 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-31-37_thomas_113.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-34-17_thomas_116-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-34-17_thomas_116-thumb.jpg new file mode 100644 index 0000000..7c8c6c6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-34-17_thomas_116-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-34-17_thomas_116.jpg b/static/img/photos/saarland-2018/2018-05-20_12-34-17_thomas_116.jpg new file mode 100644 index 0000000..e063395 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-34-17_thomas_116.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-34-34_thomas_118-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-34-34_thomas_118-thumb.jpg new file mode 100644 index 0000000..b4033d7 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-34-34_thomas_118-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-34-34_thomas_118.jpg b/static/img/photos/saarland-2018/2018-05-20_12-34-34_thomas_118.jpg new file mode 100644 index 0000000..16a7b75 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-34-34_thomas_118.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-36-27_thomas_121-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-36-27_thomas_121-thumb.jpg new file mode 100644 index 0000000..377216d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-36-27_thomas_121-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-36-27_thomas_121.jpg b/static/img/photos/saarland-2018/2018-05-20_12-36-27_thomas_121.jpg new file mode 100644 index 0000000..6077097 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-36-27_thomas_121.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-37-38_thomas_126-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-37-38_thomas_126-thumb.jpg new file mode 100644 index 0000000..6905bc8 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-37-38_thomas_126-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-37-38_thomas_126.jpg b/static/img/photos/saarland-2018/2018-05-20_12-37-38_thomas_126.jpg new file mode 100644 index 0000000..f36a683 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-37-38_thomas_126.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-38-01_thomas_127-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-38-01_thomas_127-thumb.jpg new file mode 100644 index 0000000..450efe3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-38-01_thomas_127-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-38-01_thomas_127.jpg b/static/img/photos/saarland-2018/2018-05-20_12-38-01_thomas_127.jpg new file mode 100644 index 0000000..3665ea7 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-38-01_thomas_127.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-38-42_thomas_128-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-38-42_thomas_128-thumb.jpg new file mode 100644 index 0000000..b2254c1 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-38-42_thomas_128-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-38-42_thomas_128.jpg b/static/img/photos/saarland-2018/2018-05-20_12-38-42_thomas_128.jpg new file mode 100644 index 0000000..4e505bd Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-38-42_thomas_128.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-40-19_thomas_130-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_12-40-19_thomas_130-thumb.jpg new file mode 100644 index 0000000..185cab3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-40-19_thomas_130-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_12-40-19_thomas_130.jpg b/static/img/photos/saarland-2018/2018-05-20_12-40-19_thomas_130.jpg new file mode 100644 index 0000000..77113d1 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_12-40-19_thomas_130.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-14-18_thomas_132-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-14-18_thomas_132-thumb.jpg new file mode 100644 index 0000000..9097534 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-14-18_thomas_132-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-14-18_thomas_132.jpg b/static/img/photos/saarland-2018/2018-05-20_13-14-18_thomas_132.jpg new file mode 100644 index 0000000..f0b740d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-14-18_thomas_132.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-25-40_thomas_133-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-25-40_thomas_133-thumb.jpg new file mode 100644 index 0000000..509bfad Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-25-40_thomas_133-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-25-40_thomas_133.jpg b/static/img/photos/saarland-2018/2018-05-20_13-25-40_thomas_133.jpg new file mode 100644 index 0000000..c8e46fc Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-25-40_thomas_133.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-27-03_thomas_134-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-27-03_thomas_134-thumb.jpg new file mode 100644 index 0000000..a356c57 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-27-03_thomas_134-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-27-03_thomas_134.jpg b/static/img/photos/saarland-2018/2018-05-20_13-27-03_thomas_134.jpg new file mode 100644 index 0000000..d0f7988 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-27-03_thomas_134.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-29-33_thomas_138-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-29-33_thomas_138-thumb.jpg new file mode 100644 index 0000000..d2a0381 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-29-33_thomas_138-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-29-33_thomas_138.jpg b/static/img/photos/saarland-2018/2018-05-20_13-29-33_thomas_138.jpg new file mode 100644 index 0000000..e43caeb Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-29-33_thomas_138.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-32-55_thomas_141-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-32-55_thomas_141-thumb.jpg new file mode 100644 index 0000000..0cad400 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-32-55_thomas_141-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-32-55_thomas_141.jpg b/static/img/photos/saarland-2018/2018-05-20_13-32-55_thomas_141.jpg new file mode 100644 index 0000000..7bd4c41 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-32-55_thomas_141.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-36-15_thomas_144-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-36-15_thomas_144-thumb.jpg new file mode 100644 index 0000000..be4fee5 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-36-15_thomas_144-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-36-15_thomas_144.jpg b/static/img/photos/saarland-2018/2018-05-20_13-36-15_thomas_144.jpg new file mode 100644 index 0000000..02b61f6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-36-15_thomas_144.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-37-42_thomas_145-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-37-42_thomas_145-thumb.jpg new file mode 100644 index 0000000..d5390dc Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-37-42_thomas_145-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-37-42_thomas_145.jpg b/static/img/photos/saarland-2018/2018-05-20_13-37-42_thomas_145.jpg new file mode 100644 index 0000000..0b2d03f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-37-42_thomas_145.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-39-21_thomas_146-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-39-21_thomas_146-thumb.jpg new file mode 100644 index 0000000..8557256 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-39-21_thomas_146-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-39-21_thomas_146.jpg b/static/img/photos/saarland-2018/2018-05-20_13-39-21_thomas_146.jpg new file mode 100644 index 0000000..fdb9f7b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-39-21_thomas_146.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-41-04_thomas_147-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-41-04_thomas_147-thumb.jpg new file mode 100644 index 0000000..026dd8f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-41-04_thomas_147-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-41-04_thomas_147.jpg b/static/img/photos/saarland-2018/2018-05-20_13-41-04_thomas_147.jpg new file mode 100644 index 0000000..8612f2d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-41-04_thomas_147.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-52-05_thomas_151-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_13-52-05_thomas_151-thumb.jpg new file mode 100644 index 0000000..1971653 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-52-05_thomas_151-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_13-52-05_thomas_151.jpg b/static/img/photos/saarland-2018/2018-05-20_13-52-05_thomas_151.jpg new file mode 100644 index 0000000..57a6bd4 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_13-52-05_thomas_151.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-01-16_thomas_153-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-01-16_thomas_153-thumb.jpg new file mode 100644 index 0000000..0d9f55f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-01-16_thomas_153-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-01-16_thomas_153.jpg b/static/img/photos/saarland-2018/2018-05-20_14-01-16_thomas_153.jpg new file mode 100644 index 0000000..03ec164 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-01-16_thomas_153.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-01-42_thomas_154-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-01-42_thomas_154-thumb.jpg new file mode 100644 index 0000000..f0e789f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-01-42_thomas_154-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-01-42_thomas_154.jpg b/static/img/photos/saarland-2018/2018-05-20_14-01-42_thomas_154.jpg new file mode 100644 index 0000000..845137c Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-01-42_thomas_154.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-01-59_thomas_155-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-01-59_thomas_155-thumb.jpg new file mode 100644 index 0000000..123c299 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-01-59_thomas_155-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-01-59_thomas_155.jpg b/static/img/photos/saarland-2018/2018-05-20_14-01-59_thomas_155.jpg new file mode 100644 index 0000000..de861bc Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-01-59_thomas_155.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-09-55_thomas_158-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-09-55_thomas_158-thumb.jpg new file mode 100644 index 0000000..6c9a01b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-09-55_thomas_158-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-09-55_thomas_158.jpg b/static/img/photos/saarland-2018/2018-05-20_14-09-55_thomas_158.jpg new file mode 100644 index 0000000..a0ec96e Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-09-55_thomas_158.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-11-17_thomas_159-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-11-17_thomas_159-thumb.jpg new file mode 100644 index 0000000..c29e132 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-11-17_thomas_159-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-11-17_thomas_159.jpg b/static/img/photos/saarland-2018/2018-05-20_14-11-17_thomas_159.jpg new file mode 100644 index 0000000..ba75271 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-11-17_thomas_159.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-17-53_thomas_162-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-17-53_thomas_162-thumb.jpg new file mode 100644 index 0000000..7dabaa6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-17-53_thomas_162-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-17-53_thomas_162.jpg b/static/img/photos/saarland-2018/2018-05-20_14-17-53_thomas_162.jpg new file mode 100644 index 0000000..d26ceb5 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-17-53_thomas_162.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-30-40_thomas_164-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-30-40_thomas_164-thumb.jpg new file mode 100644 index 0000000..114190b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-30-40_thomas_164-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-30-40_thomas_164.jpg b/static/img/photos/saarland-2018/2018-05-20_14-30-40_thomas_164.jpg new file mode 100644 index 0000000..9e1a3ff Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-30-40_thomas_164.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-56-29_thomas_170-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_14-56-29_thomas_170-thumb.jpg new file mode 100644 index 0000000..7205b26 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-56-29_thomas_170-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_14-56-29_thomas_170.jpg b/static/img/photos/saarland-2018/2018-05-20_14-56-29_thomas_170.jpg new file mode 100644 index 0000000..084b453 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_14-56-29_thomas_170.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-00-17_thomas_173-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_15-00-17_thomas_173-thumb.jpg new file mode 100644 index 0000000..3973927 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-00-17_thomas_173-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-00-17_thomas_173.jpg b/static/img/photos/saarland-2018/2018-05-20_15-00-17_thomas_173.jpg new file mode 100644 index 0000000..e887fff Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-00-17_thomas_173.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-04-23_thomas_174-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_15-04-23_thomas_174-thumb.jpg new file mode 100644 index 0000000..6ecb2ab Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-04-23_thomas_174-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-04-23_thomas_174.jpg b/static/img/photos/saarland-2018/2018-05-20_15-04-23_thomas_174.jpg new file mode 100644 index 0000000..46b1984 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-04-23_thomas_174.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-19-32_thomas_175-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_15-19-32_thomas_175-thumb.jpg new file mode 100644 index 0000000..9628d1b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-19-32_thomas_175-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-19-32_thomas_175.jpg b/static/img/photos/saarland-2018/2018-05-20_15-19-32_thomas_175.jpg new file mode 100644 index 0000000..a27d65e Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-19-32_thomas_175.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-19-56_thomas_176-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_15-19-56_thomas_176-thumb.jpg new file mode 100644 index 0000000..feb3485 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-19-56_thomas_176-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-19-56_thomas_176.jpg b/static/img/photos/saarland-2018/2018-05-20_15-19-56_thomas_176.jpg new file mode 100644 index 0000000..4fc0d31 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-19-56_thomas_176.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-21-16_thomas_177-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_15-21-16_thomas_177-thumb.jpg new file mode 100644 index 0000000..8adb756 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-21-16_thomas_177-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-21-16_thomas_177.jpg b/static/img/photos/saarland-2018/2018-05-20_15-21-16_thomas_177.jpg new file mode 100644 index 0000000..96d2a3d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-21-16_thomas_177.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-23-47_thomas_181-thumb.jpg b/static/img/photos/saarland-2018/2018-05-20_15-23-47_thomas_181-thumb.jpg new file mode 100644 index 0000000..a6b89b8 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-23-47_thomas_181-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-20_15-23-47_thomas_181.jpg b/static/img/photos/saarland-2018/2018-05-20_15-23-47_thomas_181.jpg new file mode 100644 index 0000000..ec7b60d Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-20_15-23-47_thomas_181.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_10-48-48_thomas_186-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_10-48-48_thomas_186-thumb.jpg new file mode 100644 index 0000000..efb6784 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_10-48-48_thomas_186-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_10-48-48_thomas_186.jpg b/static/img/photos/saarland-2018/2018-05-21_10-48-48_thomas_186.jpg new file mode 100644 index 0000000..b6003a3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_10-48-48_thomas_186.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_10-57-57_thomas_191-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_10-57-57_thomas_191-thumb.jpg new file mode 100644 index 0000000..e3330d3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_10-57-57_thomas_191-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_10-57-57_thomas_191.jpg b/static/img/photos/saarland-2018/2018-05-21_10-57-57_thomas_191.jpg new file mode 100644 index 0000000..266269a Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_10-57-57_thomas_191.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-05-37_thomas_195-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_11-05-37_thomas_195-thumb.jpg new file mode 100644 index 0000000..fca3c5f Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-05-37_thomas_195-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-05-37_thomas_195.jpg b/static/img/photos/saarland-2018/2018-05-21_11-05-37_thomas_195.jpg new file mode 100644 index 0000000..87d3abd Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-05-37_thomas_195.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-18-05_thomas_207-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_11-18-05_thomas_207-thumb.jpg new file mode 100644 index 0000000..6657770 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-18-05_thomas_207-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-18-05_thomas_207.jpg b/static/img/photos/saarland-2018/2018-05-21_11-18-05_thomas_207.jpg new file mode 100644 index 0000000..21927a4 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-18-05_thomas_207.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-20-08_thomas_209-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_11-20-08_thomas_209-thumb.jpg new file mode 100644 index 0000000..7439ff6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-20-08_thomas_209-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-20-08_thomas_209.jpg b/static/img/photos/saarland-2018/2018-05-21_11-20-08_thomas_209.jpg new file mode 100644 index 0000000..c9747e3 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-20-08_thomas_209.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-20-25_thomas_210-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_11-20-25_thomas_210-thumb.jpg new file mode 100644 index 0000000..b8a75b5 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-20-25_thomas_210-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-20-25_thomas_210.jpg b/static/img/photos/saarland-2018/2018-05-21_11-20-25_thomas_210.jpg new file mode 100644 index 0000000..c96b91b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-20-25_thomas_210.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-25-54_thomas_212-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_11-25-54_thomas_212-thumb.jpg new file mode 100644 index 0000000..779dbf6 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-25-54_thomas_212-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-25-54_thomas_212.jpg b/static/img/photos/saarland-2018/2018-05-21_11-25-54_thomas_212.jpg new file mode 100644 index 0000000..f8b6c6b Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-25-54_thomas_212.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-26-36_thomas_213-thumb.jpg b/static/img/photos/saarland-2018/2018-05-21_11-26-36_thomas_213-thumb.jpg new file mode 100644 index 0000000..fa01b44 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-26-36_thomas_213-thumb.jpg differ diff --git a/static/img/photos/saarland-2018/2018-05-21_11-26-36_thomas_213.jpg b/static/img/photos/saarland-2018/2018-05-21_11-26-36_thomas_213.jpg new file mode 100644 index 0000000..fd7ac16 Binary files /dev/null and b/static/img/photos/saarland-2018/2018-05-21_11-26-36_thomas_213.jpg differ diff --git a/static/img/photos/skifahren-2018.jpg b/static/img/photos/skifahren-2018.jpg new file mode 100644 index 0000000..2ada410 Binary files /dev/null and b/static/img/photos/skifahren-2018.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_094132_6-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_094132_6-thumb.jpg new file mode 100644 index 0000000..67ff8ed Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_094132_6-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_094132_6.jpg b/static/img/photos/skifahren-2018/IMG_20181124_094132_6.jpg new file mode 100644 index 0000000..5ee052c Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_094132_6.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_094139_8-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_094139_8-thumb.jpg new file mode 100644 index 0000000..be87d31 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_094139_8-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_094139_8.jpg b/static/img/photos/skifahren-2018/IMG_20181124_094139_8.jpg new file mode 100644 index 0000000..aef0bd9 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_094139_8.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_100901_0-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_100901_0-thumb.jpg new file mode 100644 index 0000000..0790bed Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_100901_0-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_100901_0.jpg b/static/img/photos/skifahren-2018/IMG_20181124_100901_0.jpg new file mode 100644 index 0000000..eef482d Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_100901_0.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_101152_3-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_101152_3-thumb.jpg new file mode 100644 index 0000000..5a9fea7 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_101152_3-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_101152_3.jpg b/static/img/photos/skifahren-2018/IMG_20181124_101152_3.jpg new file mode 100644 index 0000000..0c855ae Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_101152_3.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_150119_0-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_150119_0-thumb.jpg new file mode 100644 index 0000000..d96ca48 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_150119_0-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_150119_0.jpg b/static/img/photos/skifahren-2018/IMG_20181124_150119_0.jpg new file mode 100644 index 0000000..335bf0a Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_150119_0.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_152347_5-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_152347_5-thumb.jpg new file mode 100644 index 0000000..7f73076 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_152347_5-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_152347_5.jpg b/static/img/photos/skifahren-2018/IMG_20181124_152347_5.jpg new file mode 100644 index 0000000..1576ff2 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_152347_5.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_153109_4-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_153109_4-thumb.jpg new file mode 100644 index 0000000..dc3b0e2 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_153109_4-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_153109_4.jpg b/static/img/photos/skifahren-2018/IMG_20181124_153109_4.jpg new file mode 100644 index 0000000..64b123c Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_153109_4.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_153137_4-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_153137_4-thumb.jpg new file mode 100644 index 0000000..c824c62 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_153137_4-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_153137_4.jpg b/static/img/photos/skifahren-2018/IMG_20181124_153137_4.jpg new file mode 100644 index 0000000..4825088 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_153137_4.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_153927_7-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_153927_7-thumb.jpg new file mode 100644 index 0000000..de57392 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_153927_7-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_153927_7.jpg b/static/img/photos/skifahren-2018/IMG_20181124_153927_7.jpg new file mode 100644 index 0000000..9be017a Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_153927_7.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_160105_1-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_160105_1-thumb.jpg new file mode 100644 index 0000000..033f7f0 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_160105_1-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_160105_1.jpg b/static/img/photos/skifahren-2018/IMG_20181124_160105_1.jpg new file mode 100644 index 0000000..34fbd07 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_160105_1.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_164408_8-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181124_164408_8-thumb.jpg new file mode 100644 index 0000000..8bf4c58 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_164408_8-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181124_164408_8.jpg b/static/img/photos/skifahren-2018/IMG_20181124_164408_8.jpg new file mode 100644 index 0000000..28941e3 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181124_164408_8.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181125_091928_6-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181125_091928_6-thumb.jpg new file mode 100644 index 0000000..f06703e Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181125_091928_6-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181125_091928_6.jpg b/static/img/photos/skifahren-2018/IMG_20181125_091928_6.jpg new file mode 100644 index 0000000..3cc6f7f Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181125_091928_6.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181125_132713_8-thumb.jpg b/static/img/photos/skifahren-2018/IMG_20181125_132713_8-thumb.jpg new file mode 100644 index 0000000..2d7a631 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181125_132713_8-thumb.jpg differ diff --git a/static/img/photos/skifahren-2018/IMG_20181125_132713_8.jpg b/static/img/photos/skifahren-2018/IMG_20181125_132713_8.jpg new file mode 100644 index 0000000..38bf0c3 Binary files /dev/null and b/static/img/photos/skifahren-2018/IMG_20181125_132713_8.jpg differ diff --git a/static/img/photos/skifreizeit-2018.jpg b/static/img/photos/skifreizeit-2018.jpg new file mode 100644 index 0000000..d2a2959 Binary files /dev/null and b/static/img/photos/skifreizeit-2018.jpg differ diff --git a/static/img/photos/skifreizeit-2018/skiing-in-damuels-austria--thumb.jpg b/static/img/photos/skifreizeit-2018/skiing-in-damuels-austria--thumb.jpg new file mode 100644 index 0000000..8b94e14 Binary files /dev/null and b/static/img/photos/skifreizeit-2018/skiing-in-damuels-austria--thumb.jpg differ diff --git a/static/img/photos/skifreizeit-2018/skiing-in-damuels-austria-.jpg b/static/img/photos/skifreizeit-2018/skiing-in-damuels-austria-.jpg new file mode 100644 index 0000000..362b647 Binary files /dev/null and b/static/img/photos/skifreizeit-2018/skiing-in-damuels-austria-.jpg differ diff --git a/static/img/photos/skifreizeit-2018/skiing-in-damuels-warth-and-diedamskopf-thumb.jpg b/static/img/photos/skifreizeit-2018/skiing-in-damuels-warth-and-diedamskopf-thumb.jpg new file mode 100644 index 0000000..e0e49e0 Binary files /dev/null and b/static/img/photos/skifreizeit-2018/skiing-in-damuels-warth-and-diedamskopf-thumb.jpg differ diff --git a/static/img/photos/skifreizeit-2018/skiing-in-damuels-warth-and-diedamskopf.jpg b/static/img/photos/skifreizeit-2018/skiing-in-damuels-warth-and-diedamskopf.jpg new file mode 100644 index 0000000..aae4bcd Binary files /dev/null and b/static/img/photos/skifreizeit-2018/skiing-in-damuels-warth-and-diedamskopf.jpg differ diff --git a/static/img/photos/skiing.jpg b/static/img/photos/skiing.jpg new file mode 100644 index 0000000..8cf6bb3 Binary files /dev/null and b/static/img/photos/skiing.jpg differ diff --git a/static/img/photos/skiing/20171118153322-thumb.jpg b/static/img/photos/skiing/20171118153322-thumb.jpg new file mode 100644 index 0000000..148d576 Binary files /dev/null and b/static/img/photos/skiing/20171118153322-thumb.jpg differ diff --git a/static/img/photos/skiing/20171118153322.jpg b/static/img/photos/skiing/20171118153322.jpg new file mode 100644 index 0000000..72bf8b0 Binary files /dev/null and b/static/img/photos/skiing/20171118153322.jpg differ diff --git a/static/img/photos/skiing/20171118153326-thumb.jpg b/static/img/photos/skiing/20171118153326-thumb.jpg new file mode 100644 index 0000000..756d495 Binary files /dev/null and b/static/img/photos/skiing/20171118153326-thumb.jpg differ diff --git a/static/img/photos/skiing/20171118153326.jpg b/static/img/photos/skiing/20171118153326.jpg new file mode 100644 index 0000000..8d200bf Binary files /dev/null and b/static/img/photos/skiing/20171118153326.jpg differ diff --git a/static/img/photos/skiing/20171118153344-thumb.jpg b/static/img/photos/skiing/20171118153344-thumb.jpg new file mode 100644 index 0000000..139becd Binary files /dev/null and b/static/img/photos/skiing/20171118153344-thumb.jpg differ diff --git a/static/img/photos/skiing/20171118153344.jpg b/static/img/photos/skiing/20171118153344.jpg new file mode 100644 index 0000000..89ecb79 Binary files /dev/null and b/static/img/photos/skiing/20171118153344.jpg differ diff --git a/static/img/photos/skiing/20171118153354-thumb.jpg b/static/img/photos/skiing/20171118153354-thumb.jpg new file mode 100644 index 0000000..4af7f1e Binary files /dev/null and b/static/img/photos/skiing/20171118153354-thumb.jpg differ diff --git a/static/img/photos/skiing/20171118153354.jpg b/static/img/photos/skiing/20171118153354.jpg new file mode 100644 index 0000000..3277475 Binary files /dev/null and b/static/img/photos/skiing/20171118153354.jpg differ diff --git a/static/img/photos/skiing/p1020217-thumb.jpg b/static/img/photos/skiing/p1020217-thumb.jpg new file mode 100644 index 0000000..637883a Binary files /dev/null and b/static/img/photos/skiing/p1020217-thumb.jpg differ diff --git a/static/img/photos/skiing/p1020217.jpg b/static/img/photos/skiing/p1020217.jpg new file mode 100644 index 0000000..de50ed7 Binary files /dev/null and b/static/img/photos/skiing/p1020217.jpg differ diff --git a/static/img/photos/skiing/p1020225-thumb.jpg b/static/img/photos/skiing/p1020225-thumb.jpg new file mode 100644 index 0000000..e57eed3 Binary files /dev/null and b/static/img/photos/skiing/p1020225-thumb.jpg differ diff --git a/static/img/photos/skiing/p1020225.jpg b/static/img/photos/skiing/p1020225.jpg new file mode 100644 index 0000000..dbce7f6 Binary files /dev/null and b/static/img/photos/skiing/p1020225.jpg differ diff --git a/static/img/photos/skiing/p1020232-thumb.jpg b/static/img/photos/skiing/p1020232-thumb.jpg new file mode 100644 index 0000000..a518216 Binary files /dev/null and b/static/img/photos/skiing/p1020232-thumb.jpg differ diff --git a/static/img/photos/skiing/p1020232.jpg b/static/img/photos/skiing/p1020232.jpg new file mode 100644 index 0000000..849072b Binary files /dev/null and b/static/img/photos/skiing/p1020232.jpg differ diff --git a/static/img/photos/skiing/skiing-in-damuels-austria--thumb.jpg b/static/img/photos/skiing/skiing-in-damuels-austria--thumb.jpg new file mode 100644 index 0000000..8b94e14 Binary files /dev/null and b/static/img/photos/skiing/skiing-in-damuels-austria--thumb.jpg differ diff --git a/static/img/photos/skiing/skiing-in-damuels-austria-.jpg b/static/img/photos/skiing/skiing-in-damuels-austria-.jpg new file mode 100644 index 0000000..362b647 Binary files /dev/null and b/static/img/photos/skiing/skiing-in-damuels-austria-.jpg differ diff --git a/static/img/photos/skiing/skiing-in-damuels-warth-and-diedamskopf-thumb.jpg b/static/img/photos/skiing/skiing-in-damuels-warth-and-diedamskopf-thumb.jpg new file mode 100644 index 0000000..e0e49e0 Binary files /dev/null and b/static/img/photos/skiing/skiing-in-damuels-warth-and-diedamskopf-thumb.jpg differ diff --git a/static/img/photos/skiing/skiing-in-damuels-warth-and-diedamskopf.jpg b/static/img/photos/skiing/skiing-in-damuels-warth-and-diedamskopf.jpg new file mode 100644 index 0000000..aae4bcd Binary files /dev/null and b/static/img/photos/skiing/skiing-in-damuels-warth-and-diedamskopf.jpg differ diff --git a/static/img/photos/skiing/sunset-thumb.jpg b/static/img/photos/skiing/sunset-thumb.jpg new file mode 100644 index 0000000..6591582 Binary files /dev/null and b/static/img/photos/skiing/sunset-thumb.jpg differ diff --git a/static/img/photos/skiing/sunset.jpg b/static/img/photos/skiing/sunset.jpg new file mode 100644 index 0000000..69a3f7b Binary files /dev/null and b/static/img/photos/skiing/sunset.jpg differ diff --git a/static/img/photos/sweden-2004.jpg b/static/img/photos/sweden-2004.jpg new file mode 100644 index 0000000..b441e9a Binary files /dev/null and b/static/img/photos/sweden-2004.jpg differ diff --git a/static/img/photos/sweden-2004/img_0017-thumb.jpg b/static/img/photos/sweden-2004/img_0017-thumb.jpg new file mode 100644 index 0000000..5755171 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0017-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0017.jpg b/static/img/photos/sweden-2004/img_0017.jpg new file mode 100644 index 0000000..2b67d81 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0017.jpg differ diff --git a/static/img/photos/sweden-2004/img_0061-thumb.jpg b/static/img/photos/sweden-2004/img_0061-thumb.jpg new file mode 100644 index 0000000..534301e Binary files /dev/null and b/static/img/photos/sweden-2004/img_0061-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0061.jpg b/static/img/photos/sweden-2004/img_0061.jpg new file mode 100644 index 0000000..bb57c00 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0061.jpg differ diff --git a/static/img/photos/sweden-2004/img_0063-thumb.jpg b/static/img/photos/sweden-2004/img_0063-thumb.jpg new file mode 100644 index 0000000..3846ef8 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0063-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0063.jpg b/static/img/photos/sweden-2004/img_0063.jpg new file mode 100644 index 0000000..a3cf850 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0063.jpg differ diff --git a/static/img/photos/sweden-2004/img_0065-thumb.jpg b/static/img/photos/sweden-2004/img_0065-thumb.jpg new file mode 100644 index 0000000..1fba567 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0065-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0065.jpg b/static/img/photos/sweden-2004/img_0065.jpg new file mode 100644 index 0000000..6893821 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0065.jpg differ diff --git a/static/img/photos/sweden-2004/img_0068-thumb.jpg b/static/img/photos/sweden-2004/img_0068-thumb.jpg new file mode 100644 index 0000000..0587c31 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0068-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0068.jpg b/static/img/photos/sweden-2004/img_0068.jpg new file mode 100644 index 0000000..222c2f4 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0068.jpg differ diff --git a/static/img/photos/sweden-2004/img_0100-thumb.jpg b/static/img/photos/sweden-2004/img_0100-thumb.jpg new file mode 100644 index 0000000..a0bd5a2 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0100-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0100.jpg b/static/img/photos/sweden-2004/img_0100.jpg new file mode 100644 index 0000000..f37fd33 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0100.jpg differ diff --git a/static/img/photos/sweden-2004/img_0104-thumb.jpg b/static/img/photos/sweden-2004/img_0104-thumb.jpg new file mode 100644 index 0000000..c039fb9 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0104-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0104.jpg b/static/img/photos/sweden-2004/img_0104.jpg new file mode 100644 index 0000000..9595a46 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0104.jpg differ diff --git a/static/img/photos/sweden-2004/img_0115-thumb.jpg b/static/img/photos/sweden-2004/img_0115-thumb.jpg new file mode 100644 index 0000000..8ec00d4 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0115-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0115.jpg b/static/img/photos/sweden-2004/img_0115.jpg new file mode 100644 index 0000000..0c64305 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0115.jpg differ diff --git a/static/img/photos/sweden-2004/img_0118-thumb.jpg b/static/img/photos/sweden-2004/img_0118-thumb.jpg new file mode 100644 index 0000000..e972786 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0118-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0118.jpg b/static/img/photos/sweden-2004/img_0118.jpg new file mode 100644 index 0000000..bb3d62c Binary files /dev/null and b/static/img/photos/sweden-2004/img_0118.jpg differ diff --git a/static/img/photos/sweden-2004/img_0120-thumb.jpg b/static/img/photos/sweden-2004/img_0120-thumb.jpg new file mode 100644 index 0000000..435ed65 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0120-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0120.jpg b/static/img/photos/sweden-2004/img_0120.jpg new file mode 100644 index 0000000..73c50bd Binary files /dev/null and b/static/img/photos/sweden-2004/img_0120.jpg differ diff --git a/static/img/photos/sweden-2004/img_0151-thumb.jpg b/static/img/photos/sweden-2004/img_0151-thumb.jpg new file mode 100644 index 0000000..8165f20 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0151-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0151.jpg b/static/img/photos/sweden-2004/img_0151.jpg new file mode 100644 index 0000000..0be7f60 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0151.jpg differ diff --git a/static/img/photos/sweden-2004/img_0158-thumb.jpg b/static/img/photos/sweden-2004/img_0158-thumb.jpg new file mode 100644 index 0000000..5098dc2 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0158-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0158.jpg b/static/img/photos/sweden-2004/img_0158.jpg new file mode 100644 index 0000000..9612ba9 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0158.jpg differ diff --git a/static/img/photos/sweden-2004/img_0177-thumb.jpg b/static/img/photos/sweden-2004/img_0177-thumb.jpg new file mode 100644 index 0000000..2122bf1 Binary files /dev/null and b/static/img/photos/sweden-2004/img_0177-thumb.jpg differ diff --git a/static/img/photos/sweden-2004/img_0177.jpg b/static/img/photos/sweden-2004/img_0177.jpg new file mode 100644 index 0000000..89fef6f Binary files /dev/null and b/static/img/photos/sweden-2004/img_0177.jpg differ diff --git a/static/img/photos/sweden-2010.jpg b/static/img/photos/sweden-2010.jpg new file mode 100644 index 0000000..7816fd1 Binary files /dev/null and b/static/img/photos/sweden-2010.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4940-thumb.jpg b/static/img/photos/sweden-2010/_dsc4940-thumb.jpg new file mode 100644 index 0000000..92ed355 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4940-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4940.jpg b/static/img/photos/sweden-2010/_dsc4940.jpg new file mode 100644 index 0000000..bdc91f0 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4940.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4943-thumb.jpg b/static/img/photos/sweden-2010/_dsc4943-thumb.jpg new file mode 100644 index 0000000..9a9421d Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4943-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4943.jpg b/static/img/photos/sweden-2010/_dsc4943.jpg new file mode 100644 index 0000000..54291a2 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4943.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4944-thumb.jpg b/static/img/photos/sweden-2010/_dsc4944-thumb.jpg new file mode 100644 index 0000000..6000b40 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4944-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4944.jpg b/static/img/photos/sweden-2010/_dsc4944.jpg new file mode 100644 index 0000000..453dd77 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4944.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4946-thumb.jpg b/static/img/photos/sweden-2010/_dsc4946-thumb.jpg new file mode 100644 index 0000000..8fea99c Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4946-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4946.jpg b/static/img/photos/sweden-2010/_dsc4946.jpg new file mode 100644 index 0000000..7cd4c73 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4946.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4949-thumb.jpg b/static/img/photos/sweden-2010/_dsc4949-thumb.jpg new file mode 100644 index 0000000..e0a71c2 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4949-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4949.jpg b/static/img/photos/sweden-2010/_dsc4949.jpg new file mode 100644 index 0000000..661bfc7 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4949.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4959-thumb.jpg b/static/img/photos/sweden-2010/_dsc4959-thumb.jpg new file mode 100644 index 0000000..f486836 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4959-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4959.jpg b/static/img/photos/sweden-2010/_dsc4959.jpg new file mode 100644 index 0000000..1a5fee5 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4959.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4962-thumb.jpg b/static/img/photos/sweden-2010/_dsc4962-thumb.jpg new file mode 100644 index 0000000..5d50780 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4962-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4962.jpg b/static/img/photos/sweden-2010/_dsc4962.jpg new file mode 100644 index 0000000..2530270 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4962.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4963-thumb.jpg b/static/img/photos/sweden-2010/_dsc4963-thumb.jpg new file mode 100644 index 0000000..f6b9c28 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4963-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4963.jpg b/static/img/photos/sweden-2010/_dsc4963.jpg new file mode 100644 index 0000000..70967f5 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4963.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4964-thumb.jpg b/static/img/photos/sweden-2010/_dsc4964-thumb.jpg new file mode 100644 index 0000000..f4698ea Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4964-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4964.jpg b/static/img/photos/sweden-2010/_dsc4964.jpg new file mode 100644 index 0000000..18317ff Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4964.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4968-thumb.jpg b/static/img/photos/sweden-2010/_dsc4968-thumb.jpg new file mode 100644 index 0000000..5ef3806 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4968-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4968.jpg b/static/img/photos/sweden-2010/_dsc4968.jpg new file mode 100644 index 0000000..6fddf9e Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4968.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4986-thumb.jpg b/static/img/photos/sweden-2010/_dsc4986-thumb.jpg new file mode 100644 index 0000000..a86f8f8 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4986-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4986.jpg b/static/img/photos/sweden-2010/_dsc4986.jpg new file mode 100644 index 0000000..bd0ec29 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4986.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4987-thumb.jpg b/static/img/photos/sweden-2010/_dsc4987-thumb.jpg new file mode 100644 index 0000000..dee7c43 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4987-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4987.jpg b/static/img/photos/sweden-2010/_dsc4987.jpg new file mode 100644 index 0000000..4cb4e97 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4987.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4990-thumb.jpg b/static/img/photos/sweden-2010/_dsc4990-thumb.jpg new file mode 100644 index 0000000..47de4df Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4990-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc4990.jpg b/static/img/photos/sweden-2010/_dsc4990.jpg new file mode 100644 index 0000000..4aa3353 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc4990.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5001-thumb.jpg b/static/img/photos/sweden-2010/_dsc5001-thumb.jpg new file mode 100644 index 0000000..782d3be Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5001-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5001.jpg b/static/img/photos/sweden-2010/_dsc5001.jpg new file mode 100644 index 0000000..bdf15ea Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5001.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5008-thumb.jpg b/static/img/photos/sweden-2010/_dsc5008-thumb.jpg new file mode 100644 index 0000000..62a967d Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5008-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5008.jpg b/static/img/photos/sweden-2010/_dsc5008.jpg new file mode 100644 index 0000000..2acf142 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5008.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5013-thumb.jpg b/static/img/photos/sweden-2010/_dsc5013-thumb.jpg new file mode 100644 index 0000000..9a2daab Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5013-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5013.jpg b/static/img/photos/sweden-2010/_dsc5013.jpg new file mode 100644 index 0000000..22fd8c8 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5013.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5015-thumb.jpg b/static/img/photos/sweden-2010/_dsc5015-thumb.jpg new file mode 100644 index 0000000..1e9cd5b Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5015-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5015.jpg b/static/img/photos/sweden-2010/_dsc5015.jpg new file mode 100644 index 0000000..326c9b9 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5015.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5016-thumb.jpg b/static/img/photos/sweden-2010/_dsc5016-thumb.jpg new file mode 100644 index 0000000..da2cae1 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5016-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5016.jpg b/static/img/photos/sweden-2010/_dsc5016.jpg new file mode 100644 index 0000000..4adc43c Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5016.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5022-thumb.jpg b/static/img/photos/sweden-2010/_dsc5022-thumb.jpg new file mode 100644 index 0000000..dac0e3e Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5022-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5022.jpg b/static/img/photos/sweden-2010/_dsc5022.jpg new file mode 100644 index 0000000..5befaab Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5022.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5033-thumb.jpg b/static/img/photos/sweden-2010/_dsc5033-thumb.jpg new file mode 100644 index 0000000..22c8e52 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5033-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5033.jpg b/static/img/photos/sweden-2010/_dsc5033.jpg new file mode 100644 index 0000000..4771ba8 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5033.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5034-thumb.jpg b/static/img/photos/sweden-2010/_dsc5034-thumb.jpg new file mode 100644 index 0000000..ba183c8 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5034-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5034.jpg b/static/img/photos/sweden-2010/_dsc5034.jpg new file mode 100644 index 0000000..533ada0 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5034.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5076-thumb.jpg b/static/img/photos/sweden-2010/_dsc5076-thumb.jpg new file mode 100644 index 0000000..79f3964 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5076-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5076.jpg b/static/img/photos/sweden-2010/_dsc5076.jpg new file mode 100644 index 0000000..7d1f108 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5076.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5084-thumb.jpg b/static/img/photos/sweden-2010/_dsc5084-thumb.jpg new file mode 100644 index 0000000..0df7c3d Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5084-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5084.jpg b/static/img/photos/sweden-2010/_dsc5084.jpg new file mode 100644 index 0000000..bde1f51 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5084.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5114-thumb.jpg b/static/img/photos/sweden-2010/_dsc5114-thumb.jpg new file mode 100644 index 0000000..0d567c1 Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5114-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/_dsc5114.jpg b/static/img/photos/sweden-2010/_dsc5114.jpg new file mode 100644 index 0000000..262321b Binary files /dev/null and b/static/img/photos/sweden-2010/_dsc5114.jpg differ diff --git a/static/img/photos/sweden-2010/bar-thumb.jpg b/static/img/photos/sweden-2010/bar-thumb.jpg new file mode 100644 index 0000000..5f189f4 Binary files /dev/null and b/static/img/photos/sweden-2010/bar-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/bar.jpg b/static/img/photos/sweden-2010/bar.jpg new file mode 100644 index 0000000..e542940 Binary files /dev/null and b/static/img/photos/sweden-2010/bar.jpg differ diff --git a/static/img/photos/sweden-2010/range_land-thumb.jpg b/static/img/photos/sweden-2010/range_land-thumb.jpg new file mode 100644 index 0000000..7969a29 Binary files /dev/null and b/static/img/photos/sweden-2010/range_land-thumb.jpg differ diff --git a/static/img/photos/sweden-2010/range_land.jpg b/static/img/photos/sweden-2010/range_land.jpg new file mode 100644 index 0000000..8c37a4c Binary files /dev/null and b/static/img/photos/sweden-2010/range_land.jpg differ diff --git a/static/img/photos/switzerland-2013.jpg b/static/img/photos/switzerland-2013.jpg new file mode 100644 index 0000000..ca6107d Binary files /dev/null and b/static/img/photos/switzerland-2013.jpg differ diff --git a/static/img/photos/switzerland-2013/img_2843-thumb.jpg b/static/img/photos/switzerland-2013/img_2843-thumb.jpg new file mode 100644 index 0000000..86205aa Binary files /dev/null and b/static/img/photos/switzerland-2013/img_2843-thumb.jpg differ diff --git a/static/img/photos/switzerland-2013/img_2843.jpg b/static/img/photos/switzerland-2013/img_2843.jpg new file mode 100644 index 0000000..28ef95d Binary files /dev/null and b/static/img/photos/switzerland-2013/img_2843.jpg differ diff --git a/static/img/photos/switzerland-2013/img_2850-thumb.jpg b/static/img/photos/switzerland-2013/img_2850-thumb.jpg new file mode 100644 index 0000000..f4f7699 Binary files /dev/null and b/static/img/photos/switzerland-2013/img_2850-thumb.jpg differ diff --git a/static/img/photos/switzerland-2013/img_2850.jpg b/static/img/photos/switzerland-2013/img_2850.jpg new file mode 100644 index 0000000..9e97751 Binary files /dev/null and b/static/img/photos/switzerland-2013/img_2850.jpg differ diff --git a/static/img/photos/switzerland-2013/img_2853-thumb.jpg b/static/img/photos/switzerland-2013/img_2853-thumb.jpg new file mode 100644 index 0000000..6d3174a Binary files /dev/null and b/static/img/photos/switzerland-2013/img_2853-thumb.jpg differ diff --git a/static/img/photos/switzerland-2013/img_2853.jpg b/static/img/photos/switzerland-2013/img_2853.jpg new file mode 100644 index 0000000..9a7cb83 Binary files /dev/null and b/static/img/photos/switzerland-2013/img_2853.jpg differ diff --git a/static/img/photos/tirol-2017.jpg b/static/img/photos/tirol-2017.jpg new file mode 100644 index 0000000..aba5b52 Binary files /dev/null and b/static/img/photos/tirol-2017.jpg differ diff --git a/static/img/photos/tirol-2017/20170609_12_24_14_004-thumb.jpg b/static/img/photos/tirol-2017/20170609_12_24_14_004-thumb.jpg new file mode 100644 index 0000000..1fc1dbf Binary files /dev/null and b/static/img/photos/tirol-2017/20170609_12_24_14_004-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170609_12_24_14_004.jpg b/static/img/photos/tirol-2017/20170609_12_24_14_004.jpg new file mode 100644 index 0000000..bfda78a Binary files /dev/null and b/static/img/photos/tirol-2017/20170609_12_24_14_004.jpg differ diff --git a/static/img/photos/tirol-2017/20170609_12_52_34_009-thumb.jpg b/static/img/photos/tirol-2017/20170609_12_52_34_009-thumb.jpg new file mode 100644 index 0000000..a032ffd Binary files /dev/null and b/static/img/photos/tirol-2017/20170609_12_52_34_009-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170609_12_52_34_009.jpg b/static/img/photos/tirol-2017/20170609_12_52_34_009.jpg new file mode 100644 index 0000000..5a40fcd Binary files /dev/null and b/static/img/photos/tirol-2017/20170609_12_52_34_009.jpg differ diff --git a/static/img/photos/tirol-2017/20170609_13_00_41_010-thumb.jpg b/static/img/photos/tirol-2017/20170609_13_00_41_010-thumb.jpg new file mode 100644 index 0000000..1142981 Binary files /dev/null and b/static/img/photos/tirol-2017/20170609_13_00_41_010-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170609_13_00_41_010.jpg b/static/img/photos/tirol-2017/20170609_13_00_41_010.jpg new file mode 100644 index 0000000..b4111ff Binary files /dev/null and b/static/img/photos/tirol-2017/20170609_13_00_41_010.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_10_37_01_012-thumb.jpg b/static/img/photos/tirol-2017/20170610_10_37_01_012-thumb.jpg new file mode 100644 index 0000000..9ee0234 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_10_37_01_012-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_10_37_01_012.jpg b/static/img/photos/tirol-2017/20170610_10_37_01_012.jpg new file mode 100644 index 0000000..ed23d63 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_10_37_01_012.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_02_33_033-thumb.jpg b/static/img/photos/tirol-2017/20170610_11_02_33_033-thumb.jpg new file mode 100644 index 0000000..bd25c15 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_02_33_033-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_02_33_033.jpg b/static/img/photos/tirol-2017/20170610_11_02_33_033.jpg new file mode 100644 index 0000000..10be457 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_02_33_033.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_05_16_034-thumb.jpg b/static/img/photos/tirol-2017/20170610_11_05_16_034-thumb.jpg new file mode 100644 index 0000000..19398ed Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_05_16_034-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_05_16_034.jpg b/static/img/photos/tirol-2017/20170610_11_05_16_034.jpg new file mode 100644 index 0000000..6416e08 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_05_16_034.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_06_48_035-thumb.jpg b/static/img/photos/tirol-2017/20170610_11_06_48_035-thumb.jpg new file mode 100644 index 0000000..5a4d9fa Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_06_48_035-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_06_48_035.jpg b/static/img/photos/tirol-2017/20170610_11_06_48_035.jpg new file mode 100644 index 0000000..100a70f Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_06_48_035.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_52_25_045-thumb.jpg b/static/img/photos/tirol-2017/20170610_11_52_25_045-thumb.jpg new file mode 100644 index 0000000..19cdbb7 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_52_25_045-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_11_52_25_045.jpg b/static/img/photos/tirol-2017/20170610_11_52_25_045.jpg new file mode 100644 index 0000000..528cebc Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_11_52_25_045.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_13_44_54_051-thumb.jpg b/static/img/photos/tirol-2017/20170610_13_44_54_051-thumb.jpg new file mode 100644 index 0000000..1dec1ca Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_13_44_54_051-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_13_44_54_051.jpg b/static/img/photos/tirol-2017/20170610_13_44_54_051.jpg new file mode 100644 index 0000000..4ab5d56 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_13_44_54_051.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_13_47_16_055-thumb.jpg b/static/img/photos/tirol-2017/20170610_13_47_16_055-thumb.jpg new file mode 100644 index 0000000..4177955 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_13_47_16_055-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_13_47_16_055.jpg b/static/img/photos/tirol-2017/20170610_13_47_16_055.jpg new file mode 100644 index 0000000..fdb3f0a Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_13_47_16_055.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_08_33_059-thumb.jpg b/static/img/photos/tirol-2017/20170610_14_08_33_059-thumb.jpg new file mode 100644 index 0000000..abb5f2e Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_08_33_059-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_08_33_059.jpg b/static/img/photos/tirol-2017/20170610_14_08_33_059.jpg new file mode 100644 index 0000000..8019b79 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_08_33_059.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_12_24_063-thumb.jpg b/static/img/photos/tirol-2017/20170610_14_12_24_063-thumb.jpg new file mode 100644 index 0000000..b8bd440 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_12_24_063-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_12_24_063.jpg b/static/img/photos/tirol-2017/20170610_14_12_24_063.jpg new file mode 100644 index 0000000..c1353df Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_12_24_063.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_15_58_065-thumb.jpg b/static/img/photos/tirol-2017/20170610_14_15_58_065-thumb.jpg new file mode 100644 index 0000000..d36cb4b Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_15_58_065-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_15_58_065.jpg b/static/img/photos/tirol-2017/20170610_14_15_58_065.jpg new file mode 100644 index 0000000..f6266cb Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_15_58_065.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_20_48_067-thumb.jpg b/static/img/photos/tirol-2017/20170610_14_20_48_067-thumb.jpg new file mode 100644 index 0000000..a25ce73 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_20_48_067-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_20_48_067.jpg b/static/img/photos/tirol-2017/20170610_14_20_48_067.jpg new file mode 100644 index 0000000..3733f2a Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_20_48_067.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_40_00_073-thumb.jpg b/static/img/photos/tirol-2017/20170610_14_40_00_073-thumb.jpg new file mode 100644 index 0000000..5667a17 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_40_00_073-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_14_40_00_073.jpg b/static/img/photos/tirol-2017/20170610_14_40_00_073.jpg new file mode 100644 index 0000000..5a1b7a5 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_14_40_00_073.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_15_41_42_080-thumb.jpg b/static/img/photos/tirol-2017/20170610_15_41_42_080-thumb.jpg new file mode 100644 index 0000000..d1e12b1 Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_15_41_42_080-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170610_15_41_42_080.jpg b/static/img/photos/tirol-2017/20170610_15_41_42_080.jpg new file mode 100644 index 0000000..ce20e7c Binary files /dev/null and b/static/img/photos/tirol-2017/20170610_15_41_42_080.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_15_33_089-thumb.jpg b/static/img/photos/tirol-2017/20170611_11_15_33_089-thumb.jpg new file mode 100644 index 0000000..d310562 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_15_33_089-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_15_33_089.jpg b/static/img/photos/tirol-2017/20170611_11_15_33_089.jpg new file mode 100644 index 0000000..dac4660 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_15_33_089.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_21_40_098-thumb.jpg b/static/img/photos/tirol-2017/20170611_11_21_40_098-thumb.jpg new file mode 100644 index 0000000..d786732 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_21_40_098-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_21_40_098.jpg b/static/img/photos/tirol-2017/20170611_11_21_40_098.jpg new file mode 100644 index 0000000..735bfaf Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_21_40_098.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_27_05_109-thumb.jpg b/static/img/photos/tirol-2017/20170611_11_27_05_109-thumb.jpg new file mode 100644 index 0000000..4f39935 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_27_05_109-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_27_05_109.jpg b/static/img/photos/tirol-2017/20170611_11_27_05_109.jpg new file mode 100644 index 0000000..16c98a2 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_27_05_109.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_40_26_126-thumb.jpg b/static/img/photos/tirol-2017/20170611_11_40_26_126-thumb.jpg new file mode 100644 index 0000000..4f22f77 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_40_26_126-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_40_26_126.jpg b/static/img/photos/tirol-2017/20170611_11_40_26_126.jpg new file mode 100644 index 0000000..39fd898 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_40_26_126.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_52_02_131-thumb.jpg b/static/img/photos/tirol-2017/20170611_11_52_02_131-thumb.jpg new file mode 100644 index 0000000..2f0d7fe Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_52_02_131-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_52_02_131.jpg b/static/img/photos/tirol-2017/20170611_11_52_02_131.jpg new file mode 100644 index 0000000..fa67d97 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_52_02_131.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_57_22_136-thumb.jpg b/static/img/photos/tirol-2017/20170611_11_57_22_136-thumb.jpg new file mode 100644 index 0000000..d357333 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_57_22_136-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_11_57_22_136.jpg b/static/img/photos/tirol-2017/20170611_11_57_22_136.jpg new file mode 100644 index 0000000..a5ce530 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_11_57_22_136.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_12_04_00_142-thumb.jpg b/static/img/photos/tirol-2017/20170611_12_04_00_142-thumb.jpg new file mode 100644 index 0000000..77e1c11 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_12_04_00_142-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_12_04_00_142.jpg b/static/img/photos/tirol-2017/20170611_12_04_00_142.jpg new file mode 100644 index 0000000..6b0dde1 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_12_04_00_142.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_12_51_17_163-thumb.jpg b/static/img/photos/tirol-2017/20170611_12_51_17_163-thumb.jpg new file mode 100644 index 0000000..949ac85 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_12_51_17_163-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_12_51_17_163.jpg b/static/img/photos/tirol-2017/20170611_12_51_17_163.jpg new file mode 100644 index 0000000..4107e93 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_12_51_17_163.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_28_24_172-thumb.jpg b/static/img/photos/tirol-2017/20170611_13_28_24_172-thumb.jpg new file mode 100644 index 0000000..c11dcf9 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_28_24_172-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_28_24_172.jpg b/static/img/photos/tirol-2017/20170611_13_28_24_172.jpg new file mode 100644 index 0000000..12df584 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_28_24_172.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_33_32_173-thumb.jpg b/static/img/photos/tirol-2017/20170611_13_33_32_173-thumb.jpg new file mode 100644 index 0000000..0d6a52d Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_33_32_173-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_33_32_173.jpg b/static/img/photos/tirol-2017/20170611_13_33_32_173.jpg new file mode 100644 index 0000000..9fa61a2 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_33_32_173.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_34_41_174-thumb.jpg b/static/img/photos/tirol-2017/20170611_13_34_41_174-thumb.jpg new file mode 100644 index 0000000..bd3ca4f Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_34_41_174-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_34_41_174.jpg b/static/img/photos/tirol-2017/20170611_13_34_41_174.jpg new file mode 100644 index 0000000..745dd66 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_34_41_174.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_40_34_175-thumb.jpg b/static/img/photos/tirol-2017/20170611_13_40_34_175-thumb.jpg new file mode 100644 index 0000000..f7acb32 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_40_34_175-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_13_40_34_175.jpg b/static/img/photos/tirol-2017/20170611_13_40_34_175.jpg new file mode 100644 index 0000000..beb6250 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_13_40_34_175.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_14_10_58_177-thumb.jpg b/static/img/photos/tirol-2017/20170611_14_10_58_177-thumb.jpg new file mode 100644 index 0000000..a3d6fb4 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_14_10_58_177-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_14_10_58_177.jpg b/static/img/photos/tirol-2017/20170611_14_10_58_177.jpg new file mode 100644 index 0000000..3860a25 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_14_10_58_177.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_14_54_17_188-thumb.jpg b/static/img/photos/tirol-2017/20170611_14_54_17_188-thumb.jpg new file mode 100644 index 0000000..6c67955 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_14_54_17_188-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_14_54_17_188.jpg b/static/img/photos/tirol-2017/20170611_14_54_17_188.jpg new file mode 100644 index 0000000..d9407b4 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_14_54_17_188.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_15_07_31_191-thumb.jpg b/static/img/photos/tirol-2017/20170611_15_07_31_191-thumb.jpg new file mode 100644 index 0000000..4a0392f Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_15_07_31_191-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_15_07_31_191.jpg b/static/img/photos/tirol-2017/20170611_15_07_31_191.jpg new file mode 100644 index 0000000..c2c4aa4 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_15_07_31_191.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_15_31_52_192-thumb.jpg b/static/img/photos/tirol-2017/20170611_15_31_52_192-thumb.jpg new file mode 100644 index 0000000..e32f0bc Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_15_31_52_192-thumb.jpg differ diff --git a/static/img/photos/tirol-2017/20170611_15_31_52_192.jpg b/static/img/photos/tirol-2017/20170611_15_31_52_192.jpg new file mode 100644 index 0000000..e660608 Binary files /dev/null and b/static/img/photos/tirol-2017/20170611_15_31_52_192.jpg differ diff --git a/static/img/rezepte/2014-12-29-crepes.jpg b/static/img/rezepte/2014-12-29-crepes.jpg new file mode 100644 index 0000000..e3f38d3 Binary files /dev/null and b/static/img/rezepte/2014-12-29-crepes.jpg differ diff --git a/static/img/rezepte/2014-12-29-crepes.thumb.jpg b/static/img/rezepte/2014-12-29-crepes.thumb.jpg new file mode 100644 index 0000000..1ba6242 Binary files /dev/null and b/static/img/rezepte/2014-12-29-crepes.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-feta-kartofflel-gratin.jpg b/static/img/rezepte/2014-12-29-feta-kartofflel-gratin.jpg new file mode 100644 index 0000000..0988856 Binary files /dev/null and b/static/img/rezepte/2014-12-29-feta-kartofflel-gratin.jpg differ diff --git a/static/img/rezepte/2014-12-29-feta-kartofflel-gratin.thumb.jpg b/static/img/rezepte/2014-12-29-feta-kartofflel-gratin.thumb.jpg new file mode 100644 index 0000000..6495a4c Binary files /dev/null and b/static/img/rezepte/2014-12-29-feta-kartofflel-gratin.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-feuerzangenbowle.jpg b/static/img/rezepte/2014-12-29-feuerzangenbowle.jpg new file mode 100644 index 0000000..676cba2 Binary files /dev/null and b/static/img/rezepte/2014-12-29-feuerzangenbowle.jpg differ diff --git a/static/img/rezepte/2014-12-29-feuerzangenbowle.thumb.jpg b/static/img/rezepte/2014-12-29-feuerzangenbowle.thumb.jpg new file mode 100644 index 0000000..8161a26 Binary files /dev/null and b/static/img/rezepte/2014-12-29-feuerzangenbowle.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-hawaiianische-kokos-ingwer-karottensuppe.jpg b/static/img/rezepte/2014-12-29-hawaiianische-kokos-ingwer-karottensuppe.jpg new file mode 100644 index 0000000..9638964 Binary files /dev/null and b/static/img/rezepte/2014-12-29-hawaiianische-kokos-ingwer-karottensuppe.jpg differ diff --git a/static/img/rezepte/2014-12-29-hawaiianische-kokos-ingwer-karottensuppe.thumb.jpg b/static/img/rezepte/2014-12-29-hawaiianische-kokos-ingwer-karottensuppe.thumb.jpg new file mode 100644 index 0000000..b2a979a Binary files /dev/null and b/static/img/rezepte/2014-12-29-hawaiianische-kokos-ingwer-karottensuppe.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-hefezopf.jpg b/static/img/rezepte/2014-12-29-hefezopf.jpg new file mode 100644 index 0000000..36061a5 Binary files /dev/null and b/static/img/rezepte/2014-12-29-hefezopf.jpg differ diff --git a/static/img/rezepte/2014-12-29-hefezopf.thumb.jpg b/static/img/rezepte/2014-12-29-hefezopf.thumb.jpg new file mode 100644 index 0000000..aac4683 Binary files /dev/null and b/static/img/rezepte/2014-12-29-hefezopf.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-honiglebkuchen.jpg b/static/img/rezepte/2014-12-29-honiglebkuchen.jpg new file mode 100644 index 0000000..2c5c089 Binary files /dev/null and b/static/img/rezepte/2014-12-29-honiglebkuchen.jpg differ diff --git a/static/img/rezepte/2014-12-29-honiglebkuchen.thumb.jpg b/static/img/rezepte/2014-12-29-honiglebkuchen.thumb.jpg new file mode 100644 index 0000000..ce04f1b Binary files /dev/null and b/static/img/rezepte/2014-12-29-honiglebkuchen.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-joghurt-schnecken.jpg b/static/img/rezepte/2014-12-29-joghurt-schnecken.jpg new file mode 100644 index 0000000..e80fb37 Binary files /dev/null and b/static/img/rezepte/2014-12-29-joghurt-schnecken.jpg differ diff --git a/static/img/rezepte/2014-12-29-joghurt-schnecken.thumb.jpg b/static/img/rezepte/2014-12-29-joghurt-schnecken.thumb.jpg new file mode 100644 index 0000000..8a29c97 Binary files /dev/null and b/static/img/rezepte/2014-12-29-joghurt-schnecken.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-kuerbissuppe.jpg b/static/img/rezepte/2014-12-29-kuerbissuppe.jpg new file mode 100644 index 0000000..208e4ab Binary files /dev/null and b/static/img/rezepte/2014-12-29-kuerbissuppe.jpg differ diff --git a/static/img/rezepte/2014-12-29-kuerbissuppe.thumb.jpg b/static/img/rezepte/2014-12-29-kuerbissuppe.thumb.jpg new file mode 100644 index 0000000..7fd2f0a Binary files /dev/null and b/static/img/rezepte/2014-12-29-kuerbissuppe.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-lebkuchen-vom-blech.jpg b/static/img/rezepte/2014-12-29-lebkuchen-vom-blech.jpg new file mode 100644 index 0000000..2c4529a Binary files /dev/null and b/static/img/rezepte/2014-12-29-lebkuchen-vom-blech.jpg differ diff --git a/static/img/rezepte/2014-12-29-lebkuchen-vom-blech.thumb.jpg b/static/img/rezepte/2014-12-29-lebkuchen-vom-blech.thumb.jpg new file mode 100644 index 0000000..3c9cc67 Binary files /dev/null and b/static/img/rezepte/2014-12-29-lebkuchen-vom-blech.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-pumpkin-pie.jpg b/static/img/rezepte/2014-12-29-pumpkin-pie.jpg new file mode 100644 index 0000000..4c19d1d Binary files /dev/null and b/static/img/rezepte/2014-12-29-pumpkin-pie.jpg differ diff --git a/static/img/rezepte/2014-12-29-pumpkin-pie.thumb.jpg b/static/img/rezepte/2014-12-29-pumpkin-pie.thumb.jpg new file mode 100644 index 0000000..dec1545 Binary files /dev/null and b/static/img/rezepte/2014-12-29-pumpkin-pie.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-rumkugeln.jpg b/static/img/rezepte/2014-12-29-rumkugeln.jpg new file mode 100644 index 0000000..a9cef48 Binary files /dev/null and b/static/img/rezepte/2014-12-29-rumkugeln.jpg differ diff --git a/static/img/rezepte/2014-12-29-rumkugeln.thumb.jpg b/static/img/rezepte/2014-12-29-rumkugeln.thumb.jpg new file mode 100644 index 0000000..b3901e1 Binary files /dev/null and b/static/img/rezepte/2014-12-29-rumkugeln.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-zitronenkuchen-auf-dem-blech.jpg b/static/img/rezepte/2014-12-29-zitronenkuchen-auf-dem-blech.jpg new file mode 100644 index 0000000..4e75cd8 Binary files /dev/null and b/static/img/rezepte/2014-12-29-zitronenkuchen-auf-dem-blech.jpg differ diff --git a/static/img/rezepte/2014-12-29-zitronenkuchen-auf-dem-blech.thumb.jpg b/static/img/rezepte/2014-12-29-zitronenkuchen-auf-dem-blech.thumb.jpg new file mode 100644 index 0000000..5890ec4 Binary files /dev/null and b/static/img/rezepte/2014-12-29-zitronenkuchen-auf-dem-blech.thumb.jpg differ diff --git a/static/img/rezepte/2014-12-29-zwiebelkuchen.jpg b/static/img/rezepte/2014-12-29-zwiebelkuchen.jpg new file mode 100644 index 0000000..84f19f1 Binary files /dev/null and b/static/img/rezepte/2014-12-29-zwiebelkuchen.jpg differ diff --git a/static/img/rezepte/2014-12-29-zwiebelkuchen.thumb.jpg b/static/img/rezepte/2014-12-29-zwiebelkuchen.thumb.jpg new file mode 100644 index 0000000..1f059aa Binary files /dev/null and b/static/img/rezepte/2014-12-29-zwiebelkuchen.thumb.jpg differ diff --git a/static/img/rezepte/2015-01-01-kirschmuffins.jpg b/static/img/rezepte/2015-01-01-kirschmuffins.jpg new file mode 100644 index 0000000..30f2c24 Binary files /dev/null and b/static/img/rezepte/2015-01-01-kirschmuffins.jpg differ diff --git a/static/img/rezepte/2015-01-01-kirschmuffins.thumb.jpg b/static/img/rezepte/2015-01-01-kirschmuffins.thumb.jpg new file mode 100644 index 0000000..867ca81 Binary files /dev/null and b/static/img/rezepte/2015-01-01-kirschmuffins.thumb.jpg differ diff --git a/static/img/rezepte/2015-01-02-orangensosse.jpg b/static/img/rezepte/2015-01-02-orangensosse.jpg new file mode 100644 index 0000000..4fd91ec Binary files /dev/null and b/static/img/rezepte/2015-01-02-orangensosse.jpg differ diff --git a/static/img/rezepte/2015-01-02-orangensosse.thumb.jpg b/static/img/rezepte/2015-01-02-orangensosse.thumb.jpg new file mode 100644 index 0000000..982316f Binary files /dev/null and b/static/img/rezepte/2015-01-02-orangensosse.thumb.jpg differ diff --git a/static/img/rezepte/2015-04-04-dreh-dich-um-kuchen.jpg b/static/img/rezepte/2015-04-04-dreh-dich-um-kuchen.jpg new file mode 100644 index 0000000..e894bcd Binary files /dev/null and b/static/img/rezepte/2015-04-04-dreh-dich-um-kuchen.jpg differ diff --git a/static/img/rezepte/2015-04-04-dreh-dich-um-kuchen.thumb.jpg b/static/img/rezepte/2015-04-04-dreh-dich-um-kuchen.thumb.jpg new file mode 100644 index 0000000..097ac4b Binary files /dev/null and b/static/img/rezepte/2015-04-04-dreh-dich-um-kuchen.thumb.jpg differ diff --git a/static/img/rezepte/2015-09-21-hummus.jpg b/static/img/rezepte/2015-09-21-hummus.jpg new file mode 100644 index 0000000..776f4c6 Binary files /dev/null and b/static/img/rezepte/2015-09-21-hummus.jpg differ diff --git a/static/img/rezepte/2015-09-21-hummus.thumb.jpg b/static/img/rezepte/2015-09-21-hummus.thumb.jpg new file mode 100644 index 0000000..5d65d47 Binary files /dev/null and b/static/img/rezepte/2015-09-21-hummus.thumb.jpg differ diff --git a/static/img/rezepte/2015-09-21-tomaten-avocado-salat.jpg b/static/img/rezepte/2015-09-21-tomaten-avocado-salat.jpg new file mode 100644 index 0000000..9689bc4 Binary files /dev/null and b/static/img/rezepte/2015-09-21-tomaten-avocado-salat.jpg differ diff --git a/static/img/rezepte/2015-09-21-tomaten-avocado-salat.thumb.jpg b/static/img/rezepte/2015-09-21-tomaten-avocado-salat.thumb.jpg new file mode 100644 index 0000000..729666e Binary files /dev/null and b/static/img/rezepte/2015-09-21-tomaten-avocado-salat.thumb.jpg differ diff --git a/static/img/rezepte/2015-09-24-mediteran-gefuellter-blaetterteig.jpg b/static/img/rezepte/2015-09-24-mediteran-gefuellter-blaetterteig.jpg new file mode 100644 index 0000000..27837cb Binary files /dev/null and b/static/img/rezepte/2015-09-24-mediteran-gefuellter-blaetterteig.jpg differ diff --git a/static/img/rezepte/2015-09-24-mediteran-gefuellter-blaetterteig.thumb.jpg b/static/img/rezepte/2015-09-24-mediteran-gefuellter-blaetterteig.thumb.jpg new file mode 100644 index 0000000..3741f34 Binary files /dev/null and b/static/img/rezepte/2015-09-24-mediteran-gefuellter-blaetterteig.thumb.jpg differ diff --git a/static/img/rezepte/2015-09-27-tiramisu.jpg b/static/img/rezepte/2015-09-27-tiramisu.jpg new file mode 100644 index 0000000..01bb373 Binary files /dev/null and b/static/img/rezepte/2015-09-27-tiramisu.jpg differ diff --git a/static/img/rezepte/2015-09-27-tiramisu.thumb.jpg b/static/img/rezepte/2015-09-27-tiramisu.thumb.jpg new file mode 100644 index 0000000..dd59aab Binary files /dev/null and b/static/img/rezepte/2015-09-27-tiramisu.thumb.jpg differ diff --git a/static/img/rezepte/2015-12-06-schokokuchen.jpg b/static/img/rezepte/2015-12-06-schokokuchen.jpg new file mode 100644 index 0000000..6effa53 Binary files /dev/null and b/static/img/rezepte/2015-12-06-schokokuchen.jpg differ diff --git a/static/img/rezepte/2015-12-06-schokokuchen.thumb.jpg b/static/img/rezepte/2015-12-06-schokokuchen.thumb.jpg new file mode 100644 index 0000000..1e1d108 Binary files /dev/null and b/static/img/rezepte/2015-12-06-schokokuchen.thumb.jpg differ diff --git a/static/img/rezepte/2015-12-17-kuerbislasagne.jpg b/static/img/rezepte/2015-12-17-kuerbislasagne.jpg new file mode 100644 index 0000000..eb3cc07 Binary files /dev/null and b/static/img/rezepte/2015-12-17-kuerbislasagne.jpg differ diff --git a/static/img/rezepte/2015-12-17-kuerbislasagne.thumb.jpg b/static/img/rezepte/2015-12-17-kuerbislasagne.thumb.jpg new file mode 100644 index 0000000..06ea284 Binary files /dev/null and b/static/img/rezepte/2015-12-17-kuerbislasagne.thumb.jpg differ diff --git a/static/img/rezepte/2016-01-04-nudelsalat-mit-macadamianuessen.jpg b/static/img/rezepte/2016-01-04-nudelsalat-mit-macadamianuessen.jpg new file mode 100644 index 0000000..133619e Binary files /dev/null and b/static/img/rezepte/2016-01-04-nudelsalat-mit-macadamianuessen.jpg differ diff --git a/static/img/rezepte/2016-01-04-nudelsalat-mit-macadamianuessen.thumb.jpg b/static/img/rezepte/2016-01-04-nudelsalat-mit-macadamianuessen.thumb.jpg new file mode 100644 index 0000000..f89392f Binary files /dev/null and b/static/img/rezepte/2016-01-04-nudelsalat-mit-macadamianuessen.thumb.jpg differ diff --git a/static/img/rezepte/2016-03-30-jaegermeister-muffins.jpg b/static/img/rezepte/2016-03-30-jaegermeister-muffins.jpg new file mode 100644 index 0000000..38e649f Binary files /dev/null and b/static/img/rezepte/2016-03-30-jaegermeister-muffins.jpg differ diff --git a/static/img/rezepte/2016-03-30-jaegermeister-muffins.thumb.jpg b/static/img/rezepte/2016-03-30-jaegermeister-muffins.thumb.jpg new file mode 100644 index 0000000..ad07780 Binary files /dev/null and b/static/img/rezepte/2016-03-30-jaegermeister-muffins.thumb.jpg differ diff --git a/static/img/rezepte/2016-04-03-kaiserschmarrn.jpg b/static/img/rezepte/2016-04-03-kaiserschmarrn.jpg new file mode 100644 index 0000000..e27eca4 Binary files /dev/null and b/static/img/rezepte/2016-04-03-kaiserschmarrn.jpg differ diff --git a/static/img/rezepte/2016-04-03-kaiserschmarrn.thumb.jpg b/static/img/rezepte/2016-04-03-kaiserschmarrn.thumb.jpg new file mode 100644 index 0000000..5d0a118 Binary files /dev/null and b/static/img/rezepte/2016-04-03-kaiserschmarrn.thumb.jpg differ diff --git a/static/img/rezepte/2016-04-20-herzhafte-muffins.jpg b/static/img/rezepte/2016-04-20-herzhafte-muffins.jpg new file mode 100644 index 0000000..27ea430 Binary files /dev/null and b/static/img/rezepte/2016-04-20-herzhafte-muffins.jpg differ diff --git a/static/img/rezepte/2016-04-20-herzhafte-muffins.thumb.jpg b/static/img/rezepte/2016-04-20-herzhafte-muffins.thumb.jpg new file mode 100644 index 0000000..23e80e0 Binary files /dev/null and b/static/img/rezepte/2016-04-20-herzhafte-muffins.thumb.jpg differ diff --git a/static/img/rezepte/2016-05-16-blaubeerkuchen.jpg b/static/img/rezepte/2016-05-16-blaubeerkuchen.jpg new file mode 100644 index 0000000..29f5df8 Binary files /dev/null and b/static/img/rezepte/2016-05-16-blaubeerkuchen.jpg differ diff --git a/static/img/rezepte/2016-05-16-blaubeerkuchen.thumb.jpg b/static/img/rezepte/2016-05-16-blaubeerkuchen.thumb.jpg new file mode 100644 index 0000000..3b8f732 Binary files /dev/null and b/static/img/rezepte/2016-05-16-blaubeerkuchen.thumb.jpg differ diff --git a/static/img/rezepte/2016-07-10-nimm2-likoer.jpg b/static/img/rezepte/2016-07-10-nimm2-likoer.jpg new file mode 100644 index 0000000..3394395 Binary files /dev/null and b/static/img/rezepte/2016-07-10-nimm2-likoer.jpg differ diff --git a/static/img/rezepte/2016-07-10-nimm2-likoer.thumb.jpg b/static/img/rezepte/2016-07-10-nimm2-likoer.thumb.jpg new file mode 100644 index 0000000..b96985f Binary files /dev/null and b/static/img/rezepte/2016-07-10-nimm2-likoer.thumb.jpg differ diff --git a/static/img/rezepte/2016-07-10-oreo-likoer.jpg b/static/img/rezepte/2016-07-10-oreo-likoer.jpg new file mode 100644 index 0000000..048ad85 Binary files /dev/null and b/static/img/rezepte/2016-07-10-oreo-likoer.jpg differ diff --git a/static/img/rezepte/2016-07-10-oreo-likoer.thumb.jpg b/static/img/rezepte/2016-07-10-oreo-likoer.thumb.jpg new file mode 100644 index 0000000..98d1a3d Binary files /dev/null and b/static/img/rezepte/2016-07-10-oreo-likoer.thumb.jpg differ diff --git a/static/img/rezepte/2016-08-21-knoblauchcremesuppe.jpg b/static/img/rezepte/2016-08-21-knoblauchcremesuppe.jpg new file mode 100644 index 0000000..f1b0b1c Binary files /dev/null and b/static/img/rezepte/2016-08-21-knoblauchcremesuppe.jpg differ diff --git a/static/img/rezepte/2016-08-21-knoblauchcremesuppe.thumb.jpg b/static/img/rezepte/2016-08-21-knoblauchcremesuppe.thumb.jpg new file mode 100644 index 0000000..3be01f7 Binary files /dev/null and b/static/img/rezepte/2016-08-21-knoblauchcremesuppe.thumb.jpg differ diff --git a/static/img/rezepte/2016-09-17-zitronen-cupcakes-mit-waldmeister-frischkaese-creme.jpg b/static/img/rezepte/2016-09-17-zitronen-cupcakes-mit-waldmeister-frischkaese-creme.jpg new file mode 100644 index 0000000..71ea071 Binary files /dev/null and b/static/img/rezepte/2016-09-17-zitronen-cupcakes-mit-waldmeister-frischkaese-creme.jpg differ diff --git a/static/img/rezepte/2016-09-17-zitronen-cupcakes-mit-waldmeister-frischkaese-creme.thumb.jpg b/static/img/rezepte/2016-09-17-zitronen-cupcakes-mit-waldmeister-frischkaese-creme.thumb.jpg new file mode 100644 index 0000000..b2c40ca Binary files /dev/null and b/static/img/rezepte/2016-09-17-zitronen-cupcakes-mit-waldmeister-frischkaese-creme.thumb.jpg differ diff --git a/static/img/rezepte/2016-10-03-burger-rolle.jpg b/static/img/rezepte/2016-10-03-burger-rolle.jpg new file mode 100644 index 0000000..6831e9a Binary files /dev/null and b/static/img/rezepte/2016-10-03-burger-rolle.jpg differ diff --git a/static/img/rezepte/2016-10-03-burger-rolle.thumb.jpg b/static/img/rezepte/2016-10-03-burger-rolle.thumb.jpg new file mode 100644 index 0000000..32f014f Binary files /dev/null and b/static/img/rezepte/2016-10-03-burger-rolle.thumb.jpg differ diff --git a/static/img/rezepte/2016-10-05-pancakes.jpg b/static/img/rezepte/2016-10-05-pancakes.jpg new file mode 100644 index 0000000..e236fba Binary files /dev/null and b/static/img/rezepte/2016-10-05-pancakes.jpg differ diff --git a/static/img/rezepte/2016-10-05-pancakes.thumb.jpg b/static/img/rezepte/2016-10-05-pancakes.thumb.jpg new file mode 100644 index 0000000..568fa8a Binary files /dev/null and b/static/img/rezepte/2016-10-05-pancakes.thumb.jpg differ diff --git a/static/img/rezepte/2016-10-08-suesskartoffelpommes.jpg b/static/img/rezepte/2016-10-08-suesskartoffelpommes.jpg new file mode 100644 index 0000000..e0846b5 Binary files /dev/null and b/static/img/rezepte/2016-10-08-suesskartoffelpommes.jpg differ diff --git a/static/img/rezepte/2016-10-08-suesskartoffelpommes.thumb.jpg b/static/img/rezepte/2016-10-08-suesskartoffelpommes.thumb.jpg new file mode 100644 index 0000000..2131cfb Binary files /dev/null and b/static/img/rezepte/2016-10-08-suesskartoffelpommes.thumb.jpg differ diff --git a/static/img/rezepte/2016-10-08-suesskartoffelquiche.jpg b/static/img/rezepte/2016-10-08-suesskartoffelquiche.jpg new file mode 100644 index 0000000..9981eb8 Binary files /dev/null and b/static/img/rezepte/2016-10-08-suesskartoffelquiche.jpg differ diff --git a/static/img/rezepte/2016-10-08-suesskartoffelquiche.thumb.jpg b/static/img/rezepte/2016-10-08-suesskartoffelquiche.thumb.jpg new file mode 100644 index 0000000..ec0c20d Binary files /dev/null and b/static/img/rezepte/2016-10-08-suesskartoffelquiche.thumb.jpg differ diff --git a/static/img/rezepte/2016-10-16-gefuellter-kuerbis.jpg b/static/img/rezepte/2016-10-16-gefuellter-kuerbis.jpg new file mode 100644 index 0000000..74f8e28 Binary files /dev/null and b/static/img/rezepte/2016-10-16-gefuellter-kuerbis.jpg differ diff --git a/static/img/rezepte/2016-10-16-gefuellter-kuerbis.thumb.jpg b/static/img/rezepte/2016-10-16-gefuellter-kuerbis.thumb.jpg new file mode 100644 index 0000000..6ce0f5a Binary files /dev/null and b/static/img/rezepte/2016-10-16-gefuellter-kuerbis.thumb.jpg differ diff --git a/static/img/rezepte/2016-10-31-cranberry-white-chocholate-cookies.jpg b/static/img/rezepte/2016-10-31-cranberry-white-chocholate-cookies.jpg new file mode 100644 index 0000000..1fe3319 Binary files /dev/null and b/static/img/rezepte/2016-10-31-cranberry-white-chocholate-cookies.jpg differ diff --git a/static/img/rezepte/2016-10-31-cranberry-white-chocholate-cookies.thumb.jpg b/static/img/rezepte/2016-10-31-cranberry-white-chocholate-cookies.thumb.jpg new file mode 100644 index 0000000..28ae395 Binary files /dev/null and b/static/img/rezepte/2016-10-31-cranberry-white-chocholate-cookies.thumb.jpg differ diff --git a/static/img/rezepte/2016-11-01-guacamole.jpg b/static/img/rezepte/2016-11-01-guacamole.jpg new file mode 100644 index 0000000..b80f491 Binary files /dev/null and b/static/img/rezepte/2016-11-01-guacamole.jpg differ diff --git a/static/img/rezepte/2016-11-01-guacamole.thumb.jpg b/static/img/rezepte/2016-11-01-guacamole.thumb.jpg new file mode 100644 index 0000000..798a12e Binary files /dev/null and b/static/img/rezepte/2016-11-01-guacamole.thumb.jpg differ diff --git a/static/img/rezepte/2016-11-01-sour-cream.jpg b/static/img/rezepte/2016-11-01-sour-cream.jpg new file mode 100644 index 0000000..f3264b5 Binary files /dev/null and b/static/img/rezepte/2016-11-01-sour-cream.jpg differ diff --git a/static/img/rezepte/2016-11-01-sour-cream.thumb.jpg b/static/img/rezepte/2016-11-01-sour-cream.thumb.jpg new file mode 100644 index 0000000..0bb58e0 Binary files /dev/null and b/static/img/rezepte/2016-11-01-sour-cream.thumb.jpg differ diff --git a/static/img/rezepte/2017-04-11-eierlikoertorte.jpg b/static/img/rezepte/2017-04-11-eierlikoertorte.jpg new file mode 100644 index 0000000..4bbb89e Binary files /dev/null and b/static/img/rezepte/2017-04-11-eierlikoertorte.jpg differ diff --git a/static/img/rezepte/2017-04-11-eierlikoertorte.thumb.jpg b/static/img/rezepte/2017-04-11-eierlikoertorte.thumb.jpg new file mode 100644 index 0000000..3dabbba Binary files /dev/null and b/static/img/rezepte/2017-04-11-eierlikoertorte.thumb.jpg differ diff --git a/static/img/rezepte/2017-04-11-pide-mit-spinat-und-schafskaese.jpg b/static/img/rezepte/2017-04-11-pide-mit-spinat-und-schafskaese.jpg new file mode 100644 index 0000000..1708e78 Binary files /dev/null and b/static/img/rezepte/2017-04-11-pide-mit-spinat-und-schafskaese.jpg differ diff --git a/static/img/rezepte/2017-04-11-pide-mit-spinat-und-schafskaese.thumb.jpg b/static/img/rezepte/2017-04-11-pide-mit-spinat-und-schafskaese.thumb.jpg new file mode 100644 index 0000000..342ab26 Binary files /dev/null and b/static/img/rezepte/2017-04-11-pide-mit-spinat-und-schafskaese.thumb.jpg differ diff --git a/static/img/rezepte/2017-04-12-champignon-quiche.jpg b/static/img/rezepte/2017-04-12-champignon-quiche.jpg new file mode 100644 index 0000000..80e1db7 Binary files /dev/null and b/static/img/rezepte/2017-04-12-champignon-quiche.jpg differ diff --git a/static/img/rezepte/2017-04-12-champignon-quiche.thumb.jpg b/static/img/rezepte/2017-04-12-champignon-quiche.thumb.jpg new file mode 100644 index 0000000..4ea5cc8 Binary files /dev/null and b/static/img/rezepte/2017-04-12-champignon-quiche.thumb.jpg differ diff --git a/static/img/rezepte/2018-12-02-blumenkohl.jpg b/static/img/rezepte/2018-12-02-blumenkohl.jpg new file mode 100644 index 0000000..c7b796b Binary files /dev/null and b/static/img/rezepte/2018-12-02-blumenkohl.jpg differ diff --git a/static/img/rezepte/2018-12-02-blumenkohl.thumb.jpg b/static/img/rezepte/2018-12-02-blumenkohl.thumb.jpg new file mode 100644 index 0000000..2f3167c Binary files /dev/null and b/static/img/rezepte/2018-12-02-blumenkohl.thumb.jpg differ diff --git a/static/js/load-photoswipe.js b/static/js/load-photoswipe.js new file mode 100644 index 0000000..978c66d --- /dev/null +++ b/static/js/load-photoswipe.js @@ -0,0 +1,80 @@ +/* +Put this file in /static/js/load-photoswipe.js +Documentation and licence at https://github.com/liwenyip/hugo-easy-gallery/ +*/ + +/* Show an alert if this js file has been loaded twice */ +if (window.loadphotoswipejs) { + window.alert("You've loaded load-photoswipe.js twice. See https://github.com/liwenyip/hugo-easy-gallery/issues/6") +} +var loadphotoswipejs = 1 + +/* TODO: Make the share function work */ +$( document ).ready(function() { + /* + Initialise Photoswipe + */ + var items = []; // array of slide objects that will be passed to PhotoSwipe() + // for every figure element on the page: + $('figure').each( function() { + if ($(this).attr('class') == 'no-photoswipe') return true; // ignore any figures where class="no-photoswipe" + // get properties from child a/img/figcaption elements, + var $figure = $(this), + $a = $figure.find('a'), + $img = $figure.find('img'), + $src = $a.attr('href'), + $title = $img.attr('alt'), + $msrc = $img.attr('src'); + // if data-size on tag is set, read it and create an item + if ($a.data('size')) { + var $size = $a.data('size').split('x'); + var item = { + src : $src, + w : $size[0], + h : $size[1], + title : $title, + msrc : $msrc + }; + console.log("Using pre-defined dimensions for " + $src); + // if not, set temp default size then load the image to check actual size + } else { + var item = { + src : $src, + w : 800, // temp default size + h : 600, // temp default size + title : $title, + msrc : $msrc + }; + console.log("Using default dimensions for " + $src); + // load the image to check its dimensions + // update the item as soon as w and h are known (check every 30ms) + var img = new Image(); + img.src = $src; + var wait = setInterval(function() { + var w = img.naturalWidth, + h = img.naturalHeight; + if (w && h) { + clearInterval(wait); + item.w = w; + item.h = h; + console.log("Got actual dimensions for " + img.src); + } + }, 30); + } + // Save the index of this image then add it to the array + var index = items.length; + items.push(item); + // Event handler for click on a figure + $figure.on('click', function(event) { + event.preventDefault(); // prevent the normal behaviour i.e. load the hyperlink + // Get the PSWP element and initialise it with the desired options + var $pswp = $('.pswp')[0]; + var options = { + index: index, + bgOpacity: 0.8, + showHideOpacity: true + } + new PhotoSwipe($pswp, PhotoSwipeUI_Default, items, options).init(); + }); + }); +}); \ No newline at end of file diff --git a/static/stuff/.htaccess b/static/stuff/.htaccess new file mode 100644 index 0000000..5a928f6 --- /dev/null +++ b/static/stuff/.htaccess @@ -0,0 +1 @@ +Options -Indexes diff --git a/static/stuff/htpasswd.php b/static/stuff/htpasswd.php new file mode 100644 index 0000000..8840547 --- /dev/null +++ b/static/stuff/htpasswd.php @@ -0,0 +1,61 @@ + + + + ++ Pro Zeile ein Benutzer mit Passwort, getrennt durch einen Doppelpunkt. +
+ +$line) { + $p = explode(":",trim($line,"\r\n"),2); + if(strlen($p[0]) === 0 || strlen($p[1]) === 0) { + unset($lines[$key]); + continue; + } + $lines[$key] = "".htmlentities($p[0],NULL,"utf-8").":".htmlentities(crypt($p[1],'$5$rounds='.rand(1000,2000).'$'.salt().'$'),NULL,"utf-8").""; + } + echo(".htpasswd
\n".implode("\n",$lines)."\n"); +?> +
.htaccess
++AuthType Basic +AuthName "Administrationsbereich" +AuthUserfile /home/webpages/lima-city/username/html/.htpasswd +Require valid-user+
+ Der Pfad bei AuthUserfile
muss angepasst werden. username muss durch deinen Benutzernamen ersetzt werden und vor .htpasswd
muss evtl. noch das Gewünschte Unterverzeichnis eingefügt werden.
+
+<!DOCTYPE html> +<html> + <head> + <title>Hier gibt es nichts zu sehen...</title> + </head> + <body> + <h1>Hier gibt es nichts zu sehen...</h1> + <p> + ... zumindest keine Dateiliste :-P + </p> + </body> +</html> ++ + diff --git a/themes/AllinOne b/themes/AllinOne deleted file mode 160000 index 1fcd762..0000000 --- a/themes/AllinOne +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1fcd762c21279463cf3ff736b067ef9ed6e03cf0 diff --git a/themes/thomasba/LICENSE b/themes/thomasba/LICENSE new file mode 100644 index 0000000..624b3f3 --- /dev/null +++ b/themes/thomasba/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2018 YOUR_NAME_HERE + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/themes/thomasba/archetypes/default.md b/themes/thomasba/archetypes/default.md new file mode 100644 index 0000000..ac36e06 --- /dev/null +++ b/themes/thomasba/archetypes/default.md @@ -0,0 +1,2 @@ ++++ ++++ diff --git a/themes/thomasba/layouts/404.html b/themes/thomasba/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/themes/thomasba/layouts/_default/baseof.html b/themes/thomasba/layouts/_default/baseof.html new file mode 100644 index 0000000..451a2eb --- /dev/null +++ b/themes/thomasba/layouts/_default/baseof.html @@ -0,0 +1,19 @@ + + + {{ partial "head.html" . }} + + + + {{ block "header" . }} + {{ partial "site-navbar.html" . }} + {{ partial "header.html" . }} + {{ end }} + + {{ block "main" . }} + + {{ end }} + + {{ partial "footer.html" . }} + + + diff --git a/themes/thomasba/layouts/_default/list.html b/themes/thomasba/layouts/_default/list.html new file mode 100644 index 0000000..85a8c19 --- /dev/null +++ b/themes/thomasba/layouts/_default/list.html @@ -0,0 +1,69 @@ +{{ define "main" }} +
auf meiner kleinen Internetseite mit ein paar Blog-Posts, Rezepten und Bildern
++ Die letzten Änderungen: +
+ {{ range (first $latestpostscount .Data.Pages.ByPublishDate.Reverse ) }} + + {{ end }} + ++ {{ range .Pages }} + {{ if .Params.Thumbnail }} + {{.Title}} + {{ else }} + {{.Title}} + {{ end }} + {{ end }} +
+ ++ {{- .Get "caption" -}} + {{- with .Get "attrlink"}}{{ .Get "attr" }}{{ else }}{{ .Get "attr"}}{{ end -}} +
+ {{- end }} +`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `
`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `
`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `