diff --git a/foto/.DS_Store b/foto/.DS_Store
new file mode 100755
index 0000000..e90de05
Binary files /dev/null and b/foto/.DS_Store differ
diff --git a/foto/._.DS_Store b/foto/._.DS_Store
new file mode 100755
index 0000000..28c42fb
Binary files /dev/null and b/foto/._.DS_Store differ
diff --git a/foto/autoload.php b/foto/autoload.php
new file mode 100755
index 0000000..66a8cd1
--- /dev/null
+++ b/foto/autoload.php
@@ -0,0 +1,33 @@
+relative class: ".$relative_class; //die();
+ $file = ($base_dir . str_replace('\\', '/', $relative_class) . '.php');
+ //echo "file: ".$file; //die();
+ // if the file exists, require it
+ if (file_exists($file)) {
+ require $file;
+ }
+});
diff --git a/foto/exceptions.php b/foto/exceptions.php
new file mode 100755
index 0000000..6eff33c
--- /dev/null
+++ b/foto/exceptions.php
@@ -0,0 +1,4 @@
+
diff --git a/foto/init.php b/foto/init.php
new file mode 100755
index 0000000..e44e243
--- /dev/null
+++ b/foto/init.php
@@ -0,0 +1,31 @@
+
+, <; in
+// entsprechende ", <, >, ... gewandelt werden. XSS => cross site scripting
+function e($str) {
+ return (htmlentities($str, ENT_QUOTES, 'UTF-8'));
+}
+
+function date_german($datum) {
+list($jahr, $monat, $tag) = explode("-", $datum);
+return("$tag.$monat.$jahr"); // Ausgabe: 20.10.2013
+}
+// Container dient zur erzeugung von instances nach festgelegten Bauanleitungen (receipts)
+// Hier wird eine neue class gebildet
+
+$container = new App\Core\Container();
+//var_dump($container); // erster Test, ob der code läuft
+
+//$usersRepository = $container->make("usersRepository");
+//var_dump($usersRepository); // zweiter Test, nachdem UsersRepository erzeugt wurde
+
+//var_dump($usersRepository->all()); // dritter Test, alle user auslesen; function aus AbstractRepostory
+
+// nächster Test, finde user "Erik"; function aus init.php
+//var_dump($usersRepository->findByUserName("test"));
+//die();
+?>
diff --git a/foto/public/counter.txt b/foto/public/counter.txt
new file mode 100755
index 0000000..76c0264
--- /dev/null
+++ b/foto/public/counter.txt
@@ -0,0 +1 @@
+10710
\ No newline at end of file
diff --git a/foto/public/index.php b/foto/public/index.php
new file mode 100755
index 0000000..e0432a1
--- /dev/null
+++ b/foto/public/index.php
@@ -0,0 +1,119 @@
+ [
+ 'controller' => 'loginController',
+ 'method' => 'homepages' // show Methode anwenden
+ ],
+ '/login' => [
+ 'controller' => 'loginController',
+ 'method' => 'login' // index Methode anwenden
+ ],
+ '/logout' => [
+ 'controller' => 'loginController',
+ 'method' => 'logout' // index Methode anwenden
+ ],
+ '/index' => [
+ 'controller' => 'loginController',
+ 'method' => 'index' // index Methode anwenden
+ ],
+ '/fotos' => [
+ 'controller' => 'loginController',
+ 'method' => 'fotos' // index Methode anwenden
+ ],
+ '/portfolio' => [
+ 'controller' => 'loginController',
+ 'method' => 'portfolio' // index Methode anwenden
+ ],
+ '/carussel' => [
+ 'controller' => 'loginController',
+ 'method' => 'carussel' // index Methode anwenden
+ ],
+ '/ostfriesland' => [
+ 'controller' => 'loginController',
+ 'method' => 'ostfriesland' // index Methode anwenden
+ ],
+ '/rheinruhr' => [
+ 'controller' => 'loginController',
+ 'method' => 'rheinruhr' // index Methode anwenden
+ ],
+ '/nordpark' => [
+ 'controller' => 'loginController',
+ 'method' => 'nordpark' // index Methode anwenden
+ ],
+ '/natur' => [
+ 'controller' => 'loginController',
+ 'method' => 'natur' // index Methode anwenden
+ ],
+ '/bonsai' => [
+ 'controller' => 'loginController',
+ 'method' => 'bonsai' // index Methode anwenden
+ ],
+ '/familie' => [
+ 'controller' => 'loginController',
+ 'method' => 'familie' // index Methode anwenden
+ ],
+ '/auswahl' => [
+ 'controller' => 'loginController',
+ 'method' => 'auswahl' // index Methode anwenden
+ ],
+ '/grid' => [
+ 'controller' => 'loginController',
+ 'method' => 'grid' // index Methode anwenden
+ ],
+ '/test' => [
+ 'controller' => 'loginController',
+ 'method' => 'test' // index Methode anwenden
+ ],
+ '/australien' => [
+ 'controller' => 'loginController',
+ 'method' => 'australien' // index Methode anwenden
+ ],
+ '/st' => [
+ 'controller' => 'loginController',
+ 'method' => 'st' // index Methode anwenden
+ ],
+ '/se' => [
+ 'controller' => 'loginController',
+ 'method' => 'se' // index Methode anwenden
+ ],
+ '/about' => [
+ 'controller' => 'loginController',
+ 'method' => 'about' // index Methode anwenden
+ ],
+ '/dashboard' => [
+ 'controller' => 'loginController',
+ 'method' => 'dashboard' // dashboard Methode anwenden
+ ],
+ '/impressum' => [
+ 'controller' => 'loginController',
+ 'method' => 'impressum' // index Methode anwenden
+ ],
+ ];
+
+// Wenn in der PATH_INFO eine seite gespeichert wurde (z.B. /index oder /post) kann
+// sie aus dem array $routes ausgelesen werden. Im array ist gespeichert, welcher
+// controller zu verwenden ist und welche Methode des controllers anzuwenden ist
+
+ if (isset($routes[$pathInfo])) { // ist eine PATH_INFO gesetzt?
+ $route = $routes[$pathInfo]; // zwischenspeichern
+ $controller = $container->make($route['controller']); // make für den controller setzen
+ $method = $route['method']; // Methode holen
+ $controller->$method(); // Controller führt Methode aus
+ }
+ else {
+ header("Location: login");
+ }
+?>
diff --git a/foto/src/Core/AbstractController.php b/foto/src/Core/AbstractController.php
new file mode 100755
index 0000000..672b3fb
--- /dev/null
+++ b/foto/src/Core/AbstractController.php
@@ -0,0 +1,14 @@
+
diff --git a/foto/src/Core/AbstractModel.php b/foto/src/Core/AbstractModel.php
new file mode 100755
index 0000000..586f0f9
--- /dev/null
+++ b/foto/src/Core/AbstractModel.php
@@ -0,0 +1,26 @@
+$offset);
+ }
+
+ public function offsetGet ($offset) {
+ return $this->$offset;
+ }
+
+ public function offsetSet ($offset, $value) {
+ $this->$offset = $value;
+ }
+
+ public function offsetUnset ($offset) {
+ unset ($this->$offset);
+ }
+ }
+
+ ?>
diff --git a/foto/src/Core/AbstractRepository.php b/foto/src/Core/AbstractRepository.php
new file mode 100755
index 0000000..a7f13df
--- /dev/null
+++ b/foto/src/Core/AbstractRepository.php
@@ -0,0 +1,36 @@
+pdo = $pdo;
+ }
+
+ abstract public function getTableName();
+ abstract public function getModelName();
+
+ function all() {
+ $table = $this->getTableName();
+ $model = $this->getModelName();
+ $stmt = $this->pdo->query("SELECT * FROM `$table`");
+ $posts = $stmt->fetchALL(PDO::FETCH_CLASS, $model);
+ return $posts;
+ }
+
+ function find($id) {
+ $table = $this->getTableName();
+ $model = $this->getModelName();
+
+ $stmt = $this->pdo->prepare("SELECT * FROM `$table` WHERE id = :id");
+ $stmt->execute(['id' => $id]);
+ $stmt->setFetchMode(PDO::FETCH_CLASS, $model);
+ $post = $stmt->fetch(PDO::FETCH_CLASS);
+ return $post;
+ }
+}
+ ?>
diff --git a/foto/src/Core/Container.php b/foto/src/Core/Container.php
new file mode 100755
index 0000000..b5adb8e
--- /dev/null
+++ b/foto/src/Core/Container.php
@@ -0,0 +1,88 @@
+receips = [
+ 'loginService' => function() {
+ return new LoginService(
+ $this->make('usersRepository')
+ );
+ },
+ 'loginController' => function() {
+ return new LoginController(
+ $this->make('loginService')
+ );
+ },
+ 'postsController' => function() {
+ return new PostsController( //neuer PostsController
+ $this->make('postsRepository'),
+ $this->make('commentsRepository')
+ );
+ },
+ 'usersRepository' => function() {
+ return new UsersRepository(
+ $this->make("pdo")
+ );
+ },
+ 'postsRepository' => function() {
+ return new PostsRepository(
+ $this->make("pdo")
+ );
+ },
+ 'commentsRepository' => function() {
+ return new CommentsRepository(
+ $this->make("pdo")
+ );
+ },
+ 'pdo' => function() {
+ $servername = "mysqle8e6.netcup.net";
+ $port = "3306";
+ $username = "k46054_hbc";
+ $password = "cXZm/E97dKvZy6Cg*";
+ $dbname="k46054_hbc";
+
+ $pdo = new PDO("mysql:host=$servername;dbname=$dbname;port=$port", $username, $password);
+
+ $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
+ return $pdo;
+ }
+/* 'pdo' => function() {
+ $pdo = new PDO(
+ 'mysql:host=localhost;dbname=blog;charset=utf8',
+ 'blog',
+ 'nRwwKR2CqfQuuBb1'
+ );
+ // Attribut wegen Sicherheit auf false setzen
+ $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
+ return $pdo;
+ }
+*/ ];
+ }
+
+ public function make($name) {
+ //echo $name.""; //die();
+ if (!empty($this->instances[$name])){
+ return $this->instances[$name]; // DB-Verbindung besteht
+ }
+ // sonst ERZEUGE return $this->instances[$name
+ if (isset($this->receips[$name])) {
+ $this->instances[$name] = $this->receips[$name]();
+ }
+ //$nam = $this->instances[$name];
+ //var_dump($nam); //die();
+ return $this->instances[$name];
+ }
+}
+?>
diff --git a/foto/src/User/LoginController.php b/foto/src/User/LoginController.php
new file mode 100755
index 0000000..d46a32a
--- /dev/null
+++ b/foto/src/User/LoginController.php
@@ -0,0 +1,127 @@
+loginService = $loginService;
+ }
+
+ public function homepages() {
+ //$this->loginService->check();
+ $this->render("user/homepages", []);
+ }
+ public function index(){
+ $this->loginService->index();
+ $this->render("user/index", []);
+ }
+ public function fotos(){
+ $this->loginService->fotos();
+ $this->render("fotos/fotos", []);
+ }
+ public function portfolio(){
+ $this->loginService->portfolio();
+ $this->render("fotos/portfolio", []);
+ }
+ public function carussel(){
+ $this->loginService->carussel();
+ $this->render("fotos/carussel", []);
+ }
+ public function ostfriesland(){
+ $this->loginService->ostfriesland();
+ $this->render("fotos/ostfriesland", []);
+ }
+ public function rheinruhr(){
+ $this->loginService->rheinruhr();
+ $this->render("fotos/rheinruhr", []);
+ }
+ public function nordpark(){
+ $this->loginService->nordpark();
+ $this->render("fotos/nordpark", []);
+ }
+ public function natur(){
+ $this->loginService->natur();
+ $this->render("fotos/natur", []);
+ }
+ public function bonsai(){
+ $this->loginService->bonsai();
+ $this->render("fotos/bonsai", []);
+ }
+ public function auswahl(){
+ $this->loginService->auswahl();
+ $this->render("fotos/auswahl", []);
+ }
+ public function familie(){
+ $this->loginService->familie();
+ $this->render("fotos/familie", []);
+ }
+ public function grid(){
+ $this->loginService->grid();
+ $this->render("fotos/grid", []);
+ }
+ public function test(){
+ $this->loginService->test();
+ $this->render("fotos/test", []);
+ }
+ public function australien(){
+ $this->loginService->australien();
+ $page = "australien";
+ //$this->loginService->check_permission($page);
+ $this->render("fotos/australien", []);
+ }
+ public function st(){
+ $this->loginService->st();
+ $page = "st";
+ $this->loginService->check_permission($page);
+ $this->render("fotos/st", []);
+ }
+ public function se(){
+ $this->loginService->se();
+ $page = "se";
+ $this->loginService->check_permission($page);
+ $this->render("fotos/se", []);
+ }
+ public function about(){
+ $this->loginService->about();
+ $this->render("fotos/about", []);
+ }
+ public function impressum(){
+ $this->loginService->impressum();
+ $this->render("user/impressum", []);
+ }
+ public function dashboard(){
+ $this->loginService->check();
+ $this->render("user/dashboard", []);
+ }
+ public function logout() {
+ $this->loginService->logout();
+ $_SESSION['seite'] = "";
+ $_SESSION['login'] = "";
+ header("Location: login"); // weiterleitung zum login
+ }
+ public function login(){
+ $error = false;
+ if(!empty($_POST['username']) And !empty($_POST['password'])) {
+ $username = $_POST['username'];
+ $password = $_POST['password'];
+ //echo $username." - ".$password; die();
+ if ($this->loginService->attempt($username, $password)) {
+ $_SESSION['login'] = $username;
+ //echo $_SESSION['login']." - ";
+ //echo $username." -> ".$_SESSION['seite']; die();
+ header ("Location: ".$_SESSION['seite']);
+ //header ("Location: dashboard");
+ return;
+ } else {
+ $error = true;
+ unset($_SESSION['login']);
+ unset($_SESSION['seite']);
+ }
+ }
+ $this->render("user/login", [
+ 'error' => $error // Übergabe an view
+ ]);
+ }
+}
+?>
diff --git a/foto/src/User/LoginService.php b/foto/src/User/LoginService.php
new file mode 100755
index 0000000..e873ea7
--- /dev/null
+++ b/foto/src/User/LoginService.php
@@ -0,0 +1,147 @@
+usersRepository = $usersRepository; // LoginService hat jetzt Zugriff auf DB
+ }
+
+ public function check() {
+ //var_dump($_SESSION);
+ if (isset($_SESSION['login'])) {
+ //die();
+ return true;
+ } else {
+ header("Location: login");
+ //die(); // hier könnte auch eine exeption ausgeführt werden
+ }
+ }
+
+ public function check_permission($page) {
+ if ((isset($_SESSION['login'])) && ($_SESSION['seite']== $page)){
+ return true;
+ } else {
+ header("Location: login");
+ //die(); // hier könnte auch eine exeption ausgeführt werden
+ }
+ }
+
+ public function attempt($username, $password) {
+ $user = $this->usersRepository->findByUserName($username); // user aus db
+ if(empty($user)) {
+ return false; // Nutzer nicht vorhanden
+ }
+ if (password_verify($password, $user->password )) { //echo ("Login erfolgreich!");
+ session_regenerate_id(true);
+ $_SESSION['login']= $user->username;
+ $_SESSION['rechte'] = $user->rechte;
+ $_SESSION['seite'] = $user->seite; // seite, die der angemeldete User aufrufen darf
+ //var_dump($_SESSION); die();
+ return true; // Login erfolgreich
+ } else {
+ return false;
+ }
+ }
+
+ public function index() {
+ unset($_SESSION['login']);
+ unset($_SESSION['seite']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function fotos() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function logout() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function portfolio() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ //var_dump($_GET);
+ if (isset($_GET['carussel'])) {
+ if ($_GET['carussel']== "01"){
+ $_SESSION['carussel'] = "01";
+ } else {$_SESSION['carussel'] = "00";}}
+ //die();
+ }
+
+ public function carussel() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function ostfriesland() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function rheinruhr() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function nordpark() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function natur() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function bonsai() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function auswahl() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function familie() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function grid() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function test() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function australien() {
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function st() {
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function se() {
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function about() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+ public function impressum() {
+ unset($_SESSION['login']);
+ session_regenerate_id(true); // nicht zwingend aber schadet nicht
+ }
+
+}
+?>
diff --git a/foto/src/User/UserModel.php b/foto/src/User/UserModel.php
new file mode 100755
index 0000000..14c92ae
--- /dev/null
+++ b/foto/src/User/UserModel.php
@@ -0,0 +1,22 @@
+
diff --git a/foto/src/User/UsersRepository.php b/foto/src/User/UsersRepository.php
new file mode 100755
index 0000000..ccbc411
--- /dev/null
+++ b/foto/src/User/UsersRepository.php
@@ -0,0 +1,30 @@
+getTableName();
+ $model = $this->getModelName();
+
+ //echo $table.""; echo $username;
+
+ $stmt = $this->pdo->prepare("SELECT * FROM `$table` WHERE username = :username");
+ $stmt->execute(['username' => $username]);
+ $stmt->setFetchMode(PDO::FETCH_CLASS, $model);
+ $user = $stmt->fetch(PDO::FETCH_CLASS);
+ //var_dump ($user); die();
+ return $user;
+ }
+ }
+?>
diff --git a/foto/views/css/foto_nav.css b/foto/views/css/foto_nav.css
new file mode 100755
index 0000000..7fb62de
--- /dev/null
+++ b/foto/views/css/foto_nav.css
@@ -0,0 +1,66 @@
+
diff --git a/foto/views/css/gallery.css b/foto/views/css/gallery.css
new file mode 100755
index 0000000..f04c196
--- /dev/null
+++ b/foto/views/css/gallery.css
@@ -0,0 +1,143 @@
+
diff --git a/foto/views/css/gallery_1.css b/foto/views/css/gallery_1.css
new file mode 100755
index 0000000..4f2a3ca
--- /dev/null
+++ b/foto/views/css/gallery_1.css
@@ -0,0 +1,144 @@
+
diff --git a/foto/views/css/gallery_vorschau.css b/foto/views/css/gallery_vorschau.css
new file mode 100755
index 0000000..cc3112b
--- /dev/null
+++ b/foto/views/css/gallery_vorschau.css
@@ -0,0 +1,97 @@
+
diff --git a/foto/views/css/image_grid.css b/foto/views/css/image_grid.css
new file mode 100755
index 0000000..bac6ec8
--- /dev/null
+++ b/foto/views/css/image_grid.css
@@ -0,0 +1,55 @@
+
+
diff --git a/foto/views/css/navi.css b/foto/views/css/navi.css
new file mode 100755
index 0000000..13f4ecc
--- /dev/null
+++ b/foto/views/css/navi.css
@@ -0,0 +1,68 @@
+
diff --git a/foto/views/css/style.css b/foto/views/css/style.css
new file mode 100755
index 0000000..0df2dad
--- /dev/null
+++ b/foto/views/css/style.css
@@ -0,0 +1,78 @@
+.navbar {
+ margin-bottom: 0px;
+}
+
+.navbar-inverse .navbar-brand {
+ font-size: 2em;
+ color: #fff;
+}
+
+.navbar-inverse .navbar-brand:hover {
+ color: #ccc;
+}
+
+.navbar-brand .logo {
+ color: #5cb85c;
+}
+
+.main-container {
+ margin-top: 20px;
+}
+
+.registration-form {
+ max-width: 450px;
+ margin: 0 auto;
+}
+
+.small-container-500 {
+ max-width: 500px;
+ padding: 15px;
+ margin: 0 auto;
+}
+
+.small-container-330 {
+ max-width: 330px;
+ padding: 15px;
+ margin: 0 auto;
+}
+
+
+.small-container .small-container-heading,
+.small-container .checkbox {
+ margin-bottom: 10px;
+}
+.small-container .checkbox {
+ font-weight: normal;
+}
+.small-container .form-control {
+ position: relative;
+ height: auto;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ padding: 10px;
+ font-size: 16px;
+}
+.small-container .form-control:focus {
+ z-index: 2;
+}
+
+/* Signin */
+.form-signin input[type="email"] {
+ margin-bottom: -1px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+.form-signin input[type="password"] {
+ margin-bottom: 10px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+}
+.login td {
+ padding-right: 2px;
+ padding-left: 2px;
+}
+
+.login {
+ color: #fff;
+}
\ No newline at end of file
diff --git a/foto/views/fotos/about.php b/foto/views/fotos/about.php
new file mode 100755
index 0000000..df1a3f8
--- /dev/null
+++ b/foto/views/fotos/about.php
@@ -0,0 +1,90 @@
+
+
+
+
alt="Eye catcher" style="width:100%; margin-top:50px">
+
+
+
+ Über mich - Persönliches
+
+
+
+
+
+
+
Wer bin ich
+ alt="... das bin ich" style="float:right; margin:20px;">
+
Ich heiße Harald und bin Jahrgang 1949. Aufgewachsen bin ich in einem kleinen Dorf in Ostfriesland.
+ Nach meiner Schulzeit folgte eine Ausbildung zum Elektromechaniker und Elektroniker,
+ eine gute Vorraussetzung für das anschließende Studium der Nachrichtentechnik / Informatik.
+
+
Meine erste Arbeitsstelle führte mich ins Ruhrgebiet nach Duisburg, wo ich auch heute noch wohne.
+ Zunächst arbeitete ich als Entwicklungsingenieur; später erweiterte sich mein Verantwortungsbereich
+ in verschiedenen Unternehmen. Bis zu meiner Pensionierung habe ich verschiedene Managementaufgaben
+ in verantwortlicher Position wahrgenommen - heute arbeite ich noch gelegentlich als Consultant/Berater.
+
+
Ich lebe gerne im Ruhrgebiet, bin aber meiner Heimat Ostfriesland noch immer sehr verbunden.
+
+
+
Meine Hobbies
+
+
Fotografie
+
Mein Interesse an der Fotografie begann in meinen Kindertagen,
+ ein Onkel von mir besaß als einziger in der Familie eine Kamera.
+ Seine Bilder waren begehrt - meine Neugier war geweckt.
+
Meine ersten eigenen Fotos habe ich mit einer geschenkten einfachen Rollfilmkamera gemacht. Von den
+ Geldgeschenken zu meiner Konfirmation konnte ich dann endlich meine erste Spiegelreflex-Kamera kaufen -
+ eine Yashika mit drei Wechselobjektiven.
+
Ein paar Jahre später habe ich alles verkauft und meine erste Nikon gekauft - eine 801S.
+ Weitere analoge Nikon Kameras folgten: F3 - F4 - F5.
+
Der Einstieg in die digitale Welt began mit einer Nikon D200 - danach folgte die D300
+ und dann endlich die erste Vollformat, eine D3 - meine aktuelle Kamera ist eine D4s.
+
Parallel zu den Kameras habe ich die Anzahl und Qualität meiner Objektive stetig erweitert,
+ so dass ich heute über professionelles Equipment verfüge.
+
Meiner frühen Leidenschaft ist zu verdanken, dass es überhaupt Fotos von meinen Großeltern und
+ vielen anderen Personen aus meinem Umfeld gibt.
+
+
Möbelbau
+
In einem zweiten Hobby beschäftige ich mich mit der Bearbeitung von Holz. In einer kleinen,
+ gut ausgestatteten Werkstatt, baue ich unter anderem Möbel sowie Gebrauchsgegenstände aus Holz.
+ Dieses Hobby pflege ich vornehmlich in der kalten Jahreszeit.
+
Gleichgesinnte können gern Kontakt zu mir aufnehmen - eine kleine Fachsimpelei ist immer willkommen.
+
+
Bonsai Bäume
+
Nachdem ich vor vielen Jahren den ersten Bonsai gesehen habe, wollte ich unbedingt mehr
+ über die kleinen Bäume erfahren und habe mich eingelesen. Zum Gebutstag bekam ich meinen ersten Bonsai geschenkt,
+ das ist jetzt 40 Jahre her. Leider hat der Baum den ersten Winter nicht überlebt - also war weiteres Wissen notwendig!
+
Nach einem Bonsai-Gestaltungskurs bin ich dann wieder mehr in das Thema Bonsai eingetaucht - inzwischen
+ besitze ich ca. 20 Exemplare, die alle von mir selber gezogen wurden.
+ Der Älteste ist inzwischen über dreißig Jahre alt. Im Portfolio werde ich die Bäume noch einzeln vorstellen.
+
+
Mein Garten
+
Als weiteres Hobby pflege ich einen großen Garten, der überwiegend sehr pflegeleicht angelegt ist.
+ Damit steht das Relaxen in der warmen Jahreszeit im Vordergrund. Die zuvor erwähnten Bonsais
+ sind in einem separaten Bereich angeordnet und sind ein besonderer Blickfang. Natürlich steht der Garten in Verbindung
+ mit der Fotografie - es gibt dort viele tolle Motive.
+
+
Mein Stammbaum
+
Als jüngstes Hobby beschäftige ich mit meiner Familie und deren Herkunft. Während der letzten Jahre habe ich
+ allerlei Daten zu einzelnen Personen notiert, die jetzt in einer entsprechneden SQL-Datenbank
+ gespeichert wurden. Die Darstellung der verschiedenen Sichten erfolgt auf eigens dafür entwickelten Seiten.
+ Dieser Bereich ist privat, kann aber mit entsprechnder Kennung und Passwort eingesehen werden - sprechen Sie mich an.
+
+
+
+
+
+
+
+
diff --git a/foto/views/fotos/australien.php b/foto/views/fotos/australien.php
new file mode 100755
index 0000000..2cc8abb
--- /dev/null
+++ b/foto/views/fotos/australien.php
@@ -0,0 +1,67 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/auswahl.php b/foto/views/fotos/auswahl.php
new file mode 100755
index 0000000..f177b3f
--- /dev/null
+++ b/foto/views/fotos/auswahl.php
@@ -0,0 +1,37 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/bonsai.php b/foto/views/fotos/bonsai.php
new file mode 100755
index 0000000..eabf264
--- /dev/null
+++ b/foto/views/fotos/bonsai.php
@@ -0,0 +1,29 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/carussel.php b/foto/views/fotos/carussel.php
new file mode 100755
index 0000000..067545b
--- /dev/null
+++ b/foto/views/fotos/carussel.php
@@ -0,0 +1,32 @@
+
+
+
+
diff --git a/foto/views/fotos/familie.php b/foto/views/fotos/familie.php
new file mode 100755
index 0000000..0df4c3d
--- /dev/null
+++ b/foto/views/fotos/familie.php
@@ -0,0 +1,28 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/fotos.php b/foto/views/fotos/fotos.php
new file mode 100755
index 0000000..aa29d97
--- /dev/null
+++ b/foto/views/fotos/fotos.php
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+ Fotografie und mehr ...
+
+
+
+
+
+
+
Die Idee zu dieser Foto-Homepage ist mir gekommen, als mich immer wieder Leute fragten,
+ wann und wo sie denn mal Bilder von mir sehen könnten.
+ Außerdem hat es mich gereizt, eine eigene Foto-Homepage zu erstellen -
+ also habe ich mich mit den Werkzeugen vertraut gemacht, einen PHP-Kurs absolviert und
+ erste Entwürfe gestartet. Noch ist nicht alles komplett fertig,
+ aber erste Seiten sind erstellt.
+
Auf der Seite About me erfahren Sie
+ etwas persönliches über mich, unter anderem wie ich zum Fotografieren gekommen bin.
+ Dort stelle ich auch meine heutige Ausrüstung vor.
+ Außerdem finden Sie hier ein Formular zur Kontaktaufnahme vor - dieses Formular ist momentan deaktiviert,
+ weil von meine Seite gehackt wurde und Spam E-Mails versendet wurden.
+
Im Portfolio erhalten Sie einen Überblick zu verschiedenen Themen
+ und ausgesuchten Fotos. Eine Auswahl der besten Fotos finden Sie unter
+ Auswahl .
+
+
Meiner ursprünglichen Heimat Ostfriesland und dem
+ Rhein / Ruhrgebiet habe ich jeweils eine Seite gewidmet.
+ Hier erwarten Sie Landschaftsbilder und Impressionen aus Ostfriesland und Fotos zur Industriegeschichte aus dem Rhein/Ruhrgebiet.
+
Genießen Sie die Zeit während des virtuellen Spaziergangs.
+
Viel Vergnügen dabei wünscht Ihnen Harald Börgmann
+
+
+
+
+
+
diff --git a/foto/views/fotos/grid.php b/foto/views/fotos/grid.php
new file mode 100755
index 0000000..5d94d23
--- /dev/null
+++ b/foto/views/fotos/grid.php
@@ -0,0 +1,30 @@
+
+
+
+
diff --git a/foto/views/fotos/grid_org.php b/foto/views/fotos/grid_org.php
new file mode 100755
index 0000000..3e8c2ed
--- /dev/null
+++ b/foto/views/fotos/grid_org.php
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+
+
";
+ echo $path_img."02.jpg\">";
+ echo $path_img."03.jpg\">";
+ echo $path_img."04.jpg\">";
+ echo $path_img."05.jpg\">";
+ echo $path_img."06.jpg\">";
+ echo $path_img."07.jpg\">";
+ echo $path_img."08.jpg\">";?>
+
+
";
+ echo $path_img."10.jpg\">";
+ echo $path_img."11.jpg\">";
+ echo $path_img."12.jpg\">";
+ echo $path_img."13.jpg\">";
+ echo $path_img."14.jpg\">";
+ echo $path_img."15.jpg\">";?>
+
+
";
+ echo $path_img."17.jpg\">";
+ echo $path_img."18.jpg\">";
+ echo $path_img."19.jpg\">";
+ echo $path_img."20.jpg\">";
+ echo $path_img."21.jpg\">";
+ echo $path_img."22.jpg\">";
+ echo $path_img."23.jpg\">";
+ echo $path_img."24.jpg\">";?>
+
+
";
+ echo $path_img."26.jpg\">";
+ echo $path_img."27.jpg\">";
+ echo $path_img."28.jpg\">";
+ echo $path_img."29.jpg\">";
+ echo $path_img."30.jpg\">";
+ echo $path_img."31.jpg\">";
+ echo $path_img."32.jpg\">";?>
+
+
+
+
+
+
+
diff --git a/foto/views/fotos/index.php b/foto/views/fotos/index.php
new file mode 100755
index 0000000..6b844b4
--- /dev/null
+++ b/foto/views/fotos/index.php
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+ Fotografie und mehr ...
+
+
+
+
+
+
+
Die Idee zu dieser Foto-Homepage ist mir gekommen, als mich immer wieder Leute fragten,
+ wann und wo sie denn mal Bilder von mir sehen könnten.
+ Außerdem hat es mich gereizt, eine eigene Foto-Homepage zu erstellen -
+ also habe ich mich mit den Werkzeugen vertraut gemacht, einen PHP-Kurs absolviert und
+ erste Entwürfe gestartet. Noch ist nicht alles komplett fertig,
+ aber erste Seiten sind erstellt.
+
Auf der Seite About me erfahren Sie
+ etwas persönliches über mich, unter anderem wie ich zum Fotografieren gekommen bin.
+ Dort stelle ich auch meine heutige Ausrüstung vor.
+ Außerdem finden Sie hier ein Formular zur Kontaktaufnahme vor - dieses Formular ist momentan deaktiviert,
+ weil von meine Seite gehackt wurde und Spam E-Mails versendet wurden.
+
Im Portfolio erhalten Sie einen Überblick zu verschiedenen Themen
+ und ausgesuchten Fotos. Eine Auswahl der besten Fotos finden Sie unter
+ Auswahl .
+
+
Meiner ursprünglichen Heimat Ostfriesland und dem
+ Rhein / Ruhrgebiet habe ich jeweils eine Seite gewidmet.
+ Hier erwarten Sie Landschaftsbilder und Impressionen aus Ostfriesland und Fotos zur Industriegeschichte aus dem Rhein/Ruhrgebiet.
+
Genießen Sie die Zeit während des virtuellen Spaziergangs.
+
Viel Vergnügen dabei wünscht Ihnen Harald Börgmann
+
+
+
+
+
+
diff --git a/foto/views/fotos/natur.php b/foto/views/fotos/natur.php
new file mode 100755
index 0000000..7e79e26
--- /dev/null
+++ b/foto/views/fotos/natur.php
@@ -0,0 +1,55 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/nordpark.php b/foto/views/fotos/nordpark.php
new file mode 100755
index 0000000..e4c611f
--- /dev/null
+++ b/foto/views/fotos/nordpark.php
@@ -0,0 +1,36 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/ostfriesland.php b/foto/views/fotos/ostfriesland.php
new file mode 100755
index 0000000..cbaf226
--- /dev/null
+++ b/foto/views/fotos/ostfriesland.php
@@ -0,0 +1,60 @@
+
+
+
+
+
diff --git a/foto/views/fotos/portfolio.php b/foto/views/fotos/portfolio.php
new file mode 100755
index 0000000..c6fd5ad
--- /dev/null
+++ b/foto/views/fotos/portfolio.php
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+ Übersicht Portfolio
+
+
+
+
+
+
+
+
+
+
+
+
+ Alle Bilder unterliegen meinem Copyright.
+ Manche sind mit Wasserzeichen oder meiner Signatur versehen.
+ Die Bilder dürfen ohne meine Erlaubnis nicht verwendet werden.
+
+
+
diff --git a/foto/views/fotos/portfolio_1.php b/foto/views/fotos/portfolio_1.php
new file mode 100755
index 0000000..3f2b79d
--- /dev/null
+++ b/foto/views/fotos/portfolio_1.php
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+ Übersicht Portfolio
+
+
+
+
+
+
+
+
+
+
+
+
+ Alle Bilder unterliegen meinem Copyright.
+ Manche sind mit Wasserzeichen oder meiner Signatur versehen.
+ Die Bilder dürfen ohne meine Erlaubnis nicht verwendet werden.
+
+
+
diff --git a/foto/views/fotos/pw_vergessen.php b/foto/views/fotos/pw_vergessen.php
new file mode 100755
index 0000000..db44838
--- /dev/null
+++ b/foto/views/fotos/pw_vergessen.php
@@ -0,0 +1,89 @@
+
+
+ "
+?>
+
+
Passwort vergessen
+
+Bitte eine E-Mail-Adresse eintragen";
+ } else {
+ $statement = $this->pdo->prepare("SELECT * FROM users WHERE email = :email");
+ $result = $statement->execute(array('email' => $_POST['email']));
+ $user = $statement->fetch();
+
+ if($user === false) {
+ $error = "Kein Benutzer gefunden ";
+ } else {
+
+ $passwortcode = random_string();
+ $statement = $pdo->prepare("UPDATE users SET passwortcode = :passwortcode, passwortcode_time = NOW() WHERE id = :userid");
+ $result = $statement->execute(array('passwortcode' => sha1($passwortcode), 'userid' => $user['id']));
+
+ $empfaenger = $user['email'];
+ $cc = ('info@hboergmann.de');
+ $betreff = "Neues Passwort für deinen Account auf https://hboergmann.de"; //Ersetzt hier den Domain-Namen
+ $from = ("From: Vorname Nachname ");
+ $url_passwortcode = getSiteURL().'passwortzuruecksetzen.php?userid='.$user['id'].'&code='.$passwortcode; //Setzt hier eure richtige Domain ein
+ $text = "Test";'Hallo '.$user['vorname'].
+ ', für deinen Account auf hboergmann.de wurde nach einem neuen Passwort gefragt. Um ein neues Passwort zu vergeben,
+ rufe innerhalb der nächsten 24 Stunden die folgende Website auf: '.$url_passwortcode.'
+ Sollte dir dein Passwort wieder eingefallen sein oder hast du dies nicht angefordert, so bitte ignoriere diese E-Mail.
+ Viele Grüße, Harald Boergmann';
+
+ //echo $text;
+
+ mail($empfaenger, $betreff, $text, $from);
+// if($cc==true){
+ mail($cc, $betreff, $text, $from);
+// }
+
+ //echo (" ");
+ //echo ($empfaenger.' - '.$betreff.' - '.$from.' - '.$text.' - '. $url_passwortcode);
+
+ echo "Ein Link um dein Passwort zurückzusetzen wurde an deine E-Mail-Adresse: ".$empfaenger." gesendet.
+ *** Bitte schaue auch in deinem Spam-Ordner nach ***";
+ $showForm = false;
+ }
+ }
+}
+
+if($showForm):
+?>
+ Gib hier deine E-Mail-Adresse ein, um ein neues Passwort anzufordern.
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/fotos/rheinruhr.php b/foto/views/fotos/rheinruhr.php
new file mode 100755
index 0000000..8165543
--- /dev/null
+++ b/foto/views/fotos/rheinruhr.php
@@ -0,0 +1,69 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/se.php b/foto/views/fotos/se.php
new file mode 100755
index 0000000..88f453e
--- /dev/null
+++ b/foto/views/fotos/se.php
@@ -0,0 +1,45 @@
+
+
+
+
+
diff --git a/foto/views/fotos/st.php b/foto/views/fotos/st.php
new file mode 100755
index 0000000..07e511b
--- /dev/null
+++ b/foto/views/fotos/st.php
@@ -0,0 +1,48 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/test.php b/foto/views/fotos/test.php
new file mode 100755
index 0000000..0df4c3d
--- /dev/null
+++ b/foto/views/fotos/test.php
@@ -0,0 +1,28 @@
+
+
+
+
+
+
diff --git a/foto/views/fotos/test_grid.php b/foto/views/fotos/test_grid.php
new file mode 100755
index 0000000..90b8b59
--- /dev/null
+++ b/foto/views/fotos/test_grid.php
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/fotos/test_new.php b/foto/views/fotos/test_new.php
new file mode 100755
index 0000000..7470cf2
--- /dev/null
+++ b/foto/views/fotos/test_new.php
@@ -0,0 +1,211 @@
+
+
+
+
+
+ ";
+ echo $files = __DIR__ . "/../images/test/portrait/";
+ echo "";
+ $allebilder = scandir($files);
+
+ var_dump($allebilder);
+ echo $allebilder['3'];?>
+
+
+
+ Slideshow Gallery
+
+
+
+
+
1 / 6
+
+
+
+
+
2 / 6
+
+
+
+
+
3 / 6
+
+
+
+
+
4 / 6
+
+
+
+
+
5 / 6
+
+
+
+
+
6 / 6
+
+
+
+
❮
+
❯
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/images/australien/1_hotel/01_hinflug_1.jpg b/foto/views/images/australien/1_hotel/01_hinflug_1.jpg
new file mode 100755
index 0000000..7e80acf
Binary files /dev/null and b/foto/views/images/australien/1_hotel/01_hinflug_1.jpg differ
diff --git a/foto/views/images/australien/1_hotel/02_hinflug.jpg b/foto/views/images/australien/1_hotel/02_hinflug.jpg
new file mode 100755
index 0000000..150c7c9
Binary files /dev/null and b/foto/views/images/australien/1_hotel/02_hinflug.jpg differ
diff --git a/foto/views/images/australien/1_hotel/03_speisesaal_1.jpg b/foto/views/images/australien/1_hotel/03_speisesaal_1.jpg
new file mode 100755
index 0000000..8706b00
Binary files /dev/null and b/foto/views/images/australien/1_hotel/03_speisesaal_1.jpg differ
diff --git a/foto/views/images/australien/1_hotel/04_drea_tanzt.jpg b/foto/views/images/australien/1_hotel/04_drea_tanzt.jpg
new file mode 100755
index 0000000..78133ec
Binary files /dev/null and b/foto/views/images/australien/1_hotel/04_drea_tanzt.jpg differ
diff --git a/foto/views/images/australien/1_hotel/05_drea_tanzt.jpg b/foto/views/images/australien/1_hotel/05_drea_tanzt.jpg
new file mode 100755
index 0000000..19eabc4
Binary files /dev/null and b/foto/views/images/australien/1_hotel/05_drea_tanzt.jpg differ
diff --git a/foto/views/images/australien/1_hotel/06_Drea_tanzt.jpg b/foto/views/images/australien/1_hotel/06_Drea_tanzt.jpg
new file mode 100755
index 0000000..49d2239
Binary files /dev/null and b/foto/views/images/australien/1_hotel/06_Drea_tanzt.jpg differ
diff --git a/foto/views/images/australien/1_hotel/07_drea_in_schlucht.jpg b/foto/views/images/australien/1_hotel/07_drea_in_schlucht.jpg
new file mode 100755
index 0000000..4cdbbf8
Binary files /dev/null and b/foto/views/images/australien/1_hotel/07_drea_in_schlucht.jpg differ
diff --git a/foto/views/images/australien/2_sydney/01_abend_am_meeer.jpg b/foto/views/images/australien/2_sydney/01_abend_am_meeer.jpg
new file mode 100755
index 0000000..8edcd63
Binary files /dev/null and b/foto/views/images/australien/2_sydney/01_abend_am_meeer.jpg differ
diff --git a/foto/views/images/australien/2_sydney/02_am_meer.jpg b/foto/views/images/australien/2_sydney/02_am_meer.jpg
new file mode 100755
index 0000000..84d083b
Binary files /dev/null and b/foto/views/images/australien/2_sydney/02_am_meer.jpg differ
diff --git a/foto/views/images/australien/2_sydney/03_drea_entsteigt_Meer.jpg b/foto/views/images/australien/2_sydney/03_drea_entsteigt_Meer.jpg
new file mode 100755
index 0000000..a0abad1
Binary files /dev/null and b/foto/views/images/australien/2_sydney/03_drea_entsteigt_Meer.jpg differ
diff --git a/foto/views/images/australien/2_sydney/04_am_abend.jpg b/foto/views/images/australien/2_sydney/04_am_abend.jpg
new file mode 100755
index 0000000..b5124b0
Binary files /dev/null and b/foto/views/images/australien/2_sydney/04_am_abend.jpg differ
diff --git a/foto/views/images/australien/2_sydney/05_skyline.jpg b/foto/views/images/australien/2_sydney/05_skyline.jpg
new file mode 100755
index 0000000..bea9af3
Binary files /dev/null and b/foto/views/images/australien/2_sydney/05_skyline.jpg differ
diff --git a/foto/views/images/australien/2_sydney/06_skyline.jpg b/foto/views/images/australien/2_sydney/06_skyline.jpg
new file mode 100755
index 0000000..d831aab
Binary files /dev/null and b/foto/views/images/australien/2_sydney/06_skyline.jpg differ
diff --git a/foto/views/images/australien/2_sydney/07_skyline.jpg b/foto/views/images/australien/2_sydney/07_skyline.jpg
new file mode 100755
index 0000000..06c4599
Binary files /dev/null and b/foto/views/images/australien/2_sydney/07_skyline.jpg differ
diff --git a/foto/views/images/australien/2_sydney/08_drea_am_Wasser.jpg b/foto/views/images/australien/2_sydney/08_drea_am_Wasser.jpg
new file mode 100755
index 0000000..adb705a
Binary files /dev/null and b/foto/views/images/australien/2_sydney/08_drea_am_Wasser.jpg differ
diff --git a/foto/views/images/australien/2_sydney/09_drea_vor_Brücke_1.jpg b/foto/views/images/australien/2_sydney/09_drea_vor_Brücke_1.jpg
new file mode 100755
index 0000000..14e0ebe
Binary files /dev/null and b/foto/views/images/australien/2_sydney/09_drea_vor_Brücke_1.jpg differ
diff --git a/foto/views/images/australien/2_sydney/10_drea_vor_oper.jpg b/foto/views/images/australien/2_sydney/10_drea_vor_oper.jpg
new file mode 100755
index 0000000..75974f1
Binary files /dev/null and b/foto/views/images/australien/2_sydney/10_drea_vor_oper.jpg differ
diff --git a/foto/views/images/australien/2_sydney/11_skuriles.jpg b/foto/views/images/australien/2_sydney/11_skuriles.jpg
new file mode 100755
index 0000000..6f6d7d4
Binary files /dev/null and b/foto/views/images/australien/2_sydney/11_skuriles.jpg differ
diff --git a/foto/views/images/australien/2_sydney/12_skuriles.jpg b/foto/views/images/australien/2_sydney/12_skuriles.jpg
new file mode 100755
index 0000000..6ecd79d
Binary files /dev/null and b/foto/views/images/australien/2_sydney/12_skuriles.jpg differ
diff --git a/foto/views/images/australien/2_sydney/13_skuriles.jpg b/foto/views/images/australien/2_sydney/13_skuriles.jpg
new file mode 100755
index 0000000..1f49576
Binary files /dev/null and b/foto/views/images/australien/2_sydney/13_skuriles.jpg differ
diff --git a/foto/views/images/australien/3_buildings/01_brücke.jpg b/foto/views/images/australien/3_buildings/01_brücke.jpg
new file mode 100755
index 0000000..ac061c1
Binary files /dev/null and b/foto/views/images/australien/3_buildings/01_brücke.jpg differ
diff --git a/foto/views/images/australien/3_buildings/02_hafen_bei_Nacht.jpg b/foto/views/images/australien/3_buildings/02_hafen_bei_Nacht.jpg
new file mode 100755
index 0000000..91293b1
Binary files /dev/null and b/foto/views/images/australien/3_buildings/02_hafen_bei_Nacht.jpg differ
diff --git a/foto/views/images/australien/3_buildings/03_hafen.jpg b/foto/views/images/australien/3_buildings/03_hafen.jpg
new file mode 100755
index 0000000..265c400
Binary files /dev/null and b/foto/views/images/australien/3_buildings/03_hafen.jpg differ
diff --git a/foto/views/images/australien/3_buildings/04_opera.jpg b/foto/views/images/australien/3_buildings/04_opera.jpg
new file mode 100755
index 0000000..5538aff
Binary files /dev/null and b/foto/views/images/australien/3_buildings/04_opera.jpg differ
diff --git a/foto/views/images/australien/3_buildings/05_opera.jpg b/foto/views/images/australien/3_buildings/05_opera.jpg
new file mode 100755
index 0000000..69e3338
Binary files /dev/null and b/foto/views/images/australien/3_buildings/05_opera.jpg differ
diff --git a/foto/views/images/australien/3_buildings/06_queen_victoria_B.jpg b/foto/views/images/australien/3_buildings/06_queen_victoria_B.jpg
new file mode 100755
index 0000000..e0c84d4
Binary files /dev/null and b/foto/views/images/australien/3_buildings/06_queen_victoria_B.jpg differ
diff --git a/foto/views/images/australien/3_buildings/07_blick_nach_oben.jpg b/foto/views/images/australien/3_buildings/07_blick_nach_oben.jpg
new file mode 100755
index 0000000..e1efe7c
Binary files /dev/null and b/foto/views/images/australien/3_buildings/07_blick_nach_oben.jpg differ
diff --git a/foto/views/images/australien/3_buildings/08_skyline_sydney.jpg b/foto/views/images/australien/3_buildings/08_skyline_sydney.jpg
new file mode 100755
index 0000000..859a4ce
Binary files /dev/null and b/foto/views/images/australien/3_buildings/08_skyline_sydney.jpg differ
diff --git a/foto/views/images/australien/3_buildings/09_sydney_bridge.jpg b/foto/views/images/australien/3_buildings/09_sydney_bridge.jpg
new file mode 100755
index 0000000..22521ff
Binary files /dev/null and b/foto/views/images/australien/3_buildings/09_sydney_bridge.jpg differ
diff --git a/foto/views/images/australien/3_buildings/10_sydney_harbour.jpg b/foto/views/images/australien/3_buildings/10_sydney_harbour.jpg
new file mode 100755
index 0000000..519aa6a
Binary files /dev/null and b/foto/views/images/australien/3_buildings/10_sydney_harbour.jpg differ
diff --git a/foto/views/images/australien/3_buildings/11_sydney_opera.jpg b/foto/views/images/australien/3_buildings/11_sydney_opera.jpg
new file mode 100755
index 0000000..1541fa4
Binary files /dev/null and b/foto/views/images/australien/3_buildings/11_sydney_opera.jpg differ
diff --git a/foto/views/images/australien/3_buildings/12_clock.jpg b/foto/views/images/australien/3_buildings/12_clock.jpg
new file mode 100755
index 0000000..d8c9c2e
Binary files /dev/null and b/foto/views/images/australien/3_buildings/12_clock.jpg differ
diff --git a/foto/views/images/australien/3_buildings/13_blumenkorb.jpg b/foto/views/images/australien/3_buildings/13_blumenkorb.jpg
new file mode 100755
index 0000000..563aa6b
Binary files /dev/null and b/foto/views/images/australien/3_buildings/13_blumenkorb.jpg differ
diff --git a/foto/views/images/australien/4_nature/01_sun_at_night.jpg b/foto/views/images/australien/4_nature/01_sun_at_night.jpg
new file mode 100755
index 0000000..3ccfb6a
Binary files /dev/null and b/foto/views/images/australien/4_nature/01_sun_at_night.jpg differ
diff --git a/foto/views/images/australien/4_nature/02_river_bed.jpg b/foto/views/images/australien/4_nature/02_river_bed.jpg
new file mode 100755
index 0000000..b8dad37
Binary files /dev/null and b/foto/views/images/australien/4_nature/02_river_bed.jpg differ
diff --git a/foto/views/images/australien/4_nature/03_koala.jpg b/foto/views/images/australien/4_nature/03_koala.jpg
new file mode 100755
index 0000000..17c3c58
Binary files /dev/null and b/foto/views/images/australien/4_nature/03_koala.jpg differ
diff --git a/foto/views/images/australien/4_nature/04_mountains.jpg b/foto/views/images/australien/4_nature/04_mountains.jpg
new file mode 100755
index 0000000..f77c222
Binary files /dev/null and b/foto/views/images/australien/4_nature/04_mountains.jpg differ
diff --git a/foto/views/images/australien/4_nature/05_pengioms.jpg b/foto/views/images/australien/4_nature/05_pengioms.jpg
new file mode 100755
index 0000000..cffcaf7
Binary files /dev/null and b/foto/views/images/australien/4_nature/05_pengioms.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/01_overlook.jpg b/foto/views/images/australien/5_alicesprings/01_overlook.jpg
new file mode 100755
index 0000000..6aaa75c
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/01_overlook.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/02_mountains.jpg b/foto/views/images/australien/5_alicesprings/02_mountains.jpg
new file mode 100755
index 0000000..eaf0d40
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/02_mountains.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/03_didgeridoo.jpg b/foto/views/images/australien/5_alicesprings/03_didgeridoo.jpg
new file mode 100755
index 0000000..7cada19
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/03_didgeridoo.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/04_museum.jpg b/foto/views/images/australien/5_alicesprings/04_museum.jpg
new file mode 100755
index 0000000..9dfb875
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/04_museum.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/05_museum.jpg b/foto/views/images/australien/5_alicesprings/05_museum.jpg
new file mode 100755
index 0000000..f4623bc
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/05_museum.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/06_hill.jpg b/foto/views/images/australien/5_alicesprings/06_hill.jpg
new file mode 100755
index 0000000..b533470
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/06_hill.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/07_landscape.jpg b/foto/views/images/australien/5_alicesprings/07_landscape.jpg
new file mode 100755
index 0000000..ba3653f
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/07_landscape.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/08_baby.jpg b/foto/views/images/australien/5_alicesprings/08_baby.jpg
new file mode 100755
index 0000000..34eb7f2
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/08_baby.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/09_baby.jpg b/foto/views/images/australien/5_alicesprings/09_baby.jpg
new file mode 100755
index 0000000..380a50c
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/09_baby.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/10_drea_and_ostrich.jpg b/foto/views/images/australien/5_alicesprings/10_drea_and_ostrich.jpg
new file mode 100755
index 0000000..f4ece85
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/10_drea_and_ostrich.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/11_far_away.jpg b/foto/views/images/australien/5_alicesprings/11_far_away.jpg
new file mode 100755
index 0000000..e87e3f4
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/11_far_away.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/12_lost_camel.jpg b/foto/views/images/australien/5_alicesprings/12_lost_camel.jpg
new file mode 100755
index 0000000..9603d25
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/12_lost_camel.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/13_hotel.jpg b/foto/views/images/australien/5_alicesprings/13_hotel.jpg
new file mode 100755
index 0000000..8cfe85a
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/13_hotel.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/14_hotel.jpg b/foto/views/images/australien/5_alicesprings/14_hotel.jpg
new file mode 100755
index 0000000..8d86eb0
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/14_hotel.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/15_pool.jpg b/foto/views/images/australien/5_alicesprings/15_pool.jpg
new file mode 100755
index 0000000..1da8772
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/15_pool.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/16_roger.jpg b/foto/views/images/australien/5_alicesprings/16_roger.jpg
new file mode 100755
index 0000000..f302aba
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/16_roger.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/17_stones.jpg b/foto/views/images/australien/5_alicesprings/17_stones.jpg
new file mode 100755
index 0000000..e01b87d
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/17_stones.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/18_sighns.jpg b/foto/views/images/australien/5_alicesprings/18_sighns.jpg
new file mode 100755
index 0000000..9ff294e
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/18_sighns.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/19_ostrich_small.jpg b/foto/views/images/australien/5_alicesprings/19_ostrich_small.jpg
new file mode 100755
index 0000000..34f6d93
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/19_ostrich_small.jpg differ
diff --git a/foto/views/images/australien/5_alicesprings/20_ostrich.jpg b/foto/views/images/australien/5_alicesprings/20_ostrich.jpg
new file mode 100755
index 0000000..cd94c42
Binary files /dev/null and b/foto/views/images/australien/5_alicesprings/20_ostrich.jpg differ
diff --git a/foto/views/images/australien/6_landmarks/Ayers_Rock.jpg b/foto/views/images/australien/6_landmarks/Ayers_Rock.jpg
new file mode 100755
index 0000000..eaf805b
Binary files /dev/null and b/foto/views/images/australien/6_landmarks/Ayers_Rock.jpg differ
diff --git a/foto/views/images/australien/6_landmarks/Ayers_Rock_1.jpg b/foto/views/images/australien/6_landmarks/Ayers_Rock_1.jpg
new file mode 100755
index 0000000..50c0e8e
Binary files /dev/null and b/foto/views/images/australien/6_landmarks/Ayers_Rock_1.jpg differ
diff --git a/foto/views/images/australien/6_landmarks/Drea_vor_Uluru.jpg b/foto/views/images/australien/6_landmarks/Drea_vor_Uluru.jpg
new file mode 100755
index 0000000..06e4401
Binary files /dev/null and b/foto/views/images/australien/6_landmarks/Drea_vor_Uluru.jpg differ
diff --git a/foto/views/images/australien/7_singapure/01_singapure.jpg b/foto/views/images/australien/7_singapure/01_singapure.jpg
new file mode 100755
index 0000000..fc000f8
Binary files /dev/null and b/foto/views/images/australien/7_singapure/01_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/02_singapure.jpg b/foto/views/images/australien/7_singapure/02_singapure.jpg
new file mode 100755
index 0000000..d25b56b
Binary files /dev/null and b/foto/views/images/australien/7_singapure/02_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/03_singapure.jpg b/foto/views/images/australien/7_singapure/03_singapure.jpg
new file mode 100755
index 0000000..91c4053
Binary files /dev/null and b/foto/views/images/australien/7_singapure/03_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/04_singapure.jpg b/foto/views/images/australien/7_singapure/04_singapure.jpg
new file mode 100755
index 0000000..c92f478
Binary files /dev/null and b/foto/views/images/australien/7_singapure/04_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/05_singapure.jpg b/foto/views/images/australien/7_singapure/05_singapure.jpg
new file mode 100755
index 0000000..ae4e98c
Binary files /dev/null and b/foto/views/images/australien/7_singapure/05_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/06_singapure.jpg b/foto/views/images/australien/7_singapure/06_singapure.jpg
new file mode 100755
index 0000000..a58baad
Binary files /dev/null and b/foto/views/images/australien/7_singapure/06_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/07_singapure.jpg b/foto/views/images/australien/7_singapure/07_singapure.jpg
new file mode 100755
index 0000000..7c167c5
Binary files /dev/null and b/foto/views/images/australien/7_singapure/07_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/08_singapure.jpg b/foto/views/images/australien/7_singapure/08_singapure.jpg
new file mode 100755
index 0000000..d5f47fd
Binary files /dev/null and b/foto/views/images/australien/7_singapure/08_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/09_singapure.jpg b/foto/views/images/australien/7_singapure/09_singapure.jpg
new file mode 100755
index 0000000..82b6e96
Binary files /dev/null and b/foto/views/images/australien/7_singapure/09_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/10_singapure.jpg b/foto/views/images/australien/7_singapure/10_singapure.jpg
new file mode 100755
index 0000000..d2eb80f
Binary files /dev/null and b/foto/views/images/australien/7_singapure/10_singapure.jpg differ
diff --git a/foto/views/images/australien/7_singapure/11_moped.jpg b/foto/views/images/australien/7_singapure/11_moped.jpg
new file mode 100755
index 0000000..12c83e3
Binary files /dev/null and b/foto/views/images/australien/7_singapure/11_moped.jpg differ
diff --git a/foto/views/images/australien/7_singapure/12_haus.jpg b/foto/views/images/australien/7_singapure/12_haus.jpg
new file mode 100755
index 0000000..9f01914
Binary files /dev/null and b/foto/views/images/australien/7_singapure/12_haus.jpg differ
diff --git a/foto/views/images/australien/7_singapure/13_haus.jpg b/foto/views/images/australien/7_singapure/13_haus.jpg
new file mode 100755
index 0000000..d73c61b
Binary files /dev/null and b/foto/views/images/australien/7_singapure/13_haus.jpg differ
diff --git a/foto/views/images/australien/7_singapure/14_haus.jpg b/foto/views/images/australien/7_singapure/14_haus.jpg
new file mode 100755
index 0000000..67fe2ea
Binary files /dev/null and b/foto/views/images/australien/7_singapure/14_haus.jpg differ
diff --git a/foto/views/images/australien/7_singapure/15_bild.jpg b/foto/views/images/australien/7_singapure/15_bild.jpg
new file mode 100755
index 0000000..06397e6
Binary files /dev/null and b/foto/views/images/australien/7_singapure/15_bild.jpg differ
diff --git a/foto/views/images/australien/7_singapure/16_bild.jpg b/foto/views/images/australien/7_singapure/16_bild.jpg
new file mode 100755
index 0000000..1316834
Binary files /dev/null and b/foto/views/images/australien/7_singapure/16_bild.jpg differ
diff --git a/foto/views/images/australien/7_singapure/17_haus.jpg b/foto/views/images/australien/7_singapure/17_haus.jpg
new file mode 100755
index 0000000..862f450
Binary files /dev/null and b/foto/views/images/australien/7_singapure/17_haus.jpg differ
diff --git a/foto/views/images/australien/7_singapure/18_kuh.jpg b/foto/views/images/australien/7_singapure/18_kuh.jpg
new file mode 100755
index 0000000..5db14f4
Binary files /dev/null and b/foto/views/images/australien/7_singapure/18_kuh.jpg differ
diff --git a/foto/views/images/australien/7_singapure/18_kuh.psd b/foto/views/images/australien/7_singapure/18_kuh.psd
new file mode 100755
index 0000000..b8ef680
Binary files /dev/null and b/foto/views/images/australien/7_singapure/18_kuh.psd differ
diff --git a/foto/views/images/australien/7_singapure/19_wandbild.jpg b/foto/views/images/australien/7_singapure/19_wandbild.jpg
new file mode 100755
index 0000000..f57a88d
Binary files /dev/null and b/foto/views/images/australien/7_singapure/19_wandbild.jpg differ
diff --git a/foto/views/images/australien/7_singapure/20_hausfront.jpg b/foto/views/images/australien/7_singapure/20_hausfront.jpg
new file mode 100755
index 0000000..42929db
Binary files /dev/null and b/foto/views/images/australien/7_singapure/20_hausfront.jpg differ
diff --git a/foto/views/images/australien/7_singapure/21_mbs.jpg b/foto/views/images/australien/7_singapure/21_mbs.jpg
new file mode 100755
index 0000000..84d2a8b
Binary files /dev/null and b/foto/views/images/australien/7_singapure/21_mbs.jpg differ
diff --git a/foto/views/images/australien/7_singapure/22_city.jpg b/foto/views/images/australien/7_singapure/22_city.jpg
new file mode 100755
index 0000000..8345e3e
Binary files /dev/null and b/foto/views/images/australien/7_singapure/22_city.jpg differ
diff --git a/foto/views/images/australien/7_singapure/22_hochhaus.jpg b/foto/views/images/australien/7_singapure/22_hochhaus.jpg
new file mode 100755
index 0000000..7110684
Binary files /dev/null and b/foto/views/images/australien/7_singapure/22_hochhaus.jpg differ
diff --git a/foto/views/images/australien/7_singapure/23_hochhaus.jpg b/foto/views/images/australien/7_singapure/23_hochhaus.jpg
new file mode 100755
index 0000000..0a0d3c3
Binary files /dev/null and b/foto/views/images/australien/7_singapure/23_hochhaus.jpg differ
diff --git a/foto/views/images/australien/7_singapure/24_wohnen.jpg b/foto/views/images/australien/7_singapure/24_wohnen.jpg
new file mode 100755
index 0000000..5a734bf
Binary files /dev/null and b/foto/views/images/australien/7_singapure/24_wohnen.jpg differ
diff --git a/foto/views/images/australien/7_singapure/25_stadt.jpg b/foto/views/images/australien/7_singapure/25_stadt.jpg
new file mode 100755
index 0000000..a2e96f6
Binary files /dev/null and b/foto/views/images/australien/7_singapure/25_stadt.jpg differ
diff --git a/foto/views/images/australien/7_singapure/26_haus.jpg b/foto/views/images/australien/7_singapure/26_haus.jpg
new file mode 100755
index 0000000..46f1abe
Binary files /dev/null and b/foto/views/images/australien/7_singapure/26_haus.jpg differ
diff --git a/foto/views/images/australien/7_singapure/27_city.psd b/foto/views/images/australien/7_singapure/27_city.psd
new file mode 100755
index 0000000..899fa7e
Binary files /dev/null and b/foto/views/images/australien/7_singapure/27_city.psd differ
diff --git a/foto/views/images/australien/7_singapure/28_city.jpg b/foto/views/images/australien/7_singapure/28_city.jpg
new file mode 100755
index 0000000..f5f9f8b
Binary files /dev/null and b/foto/views/images/australien/7_singapure/28_city.jpg differ
diff --git a/foto/views/images/australien/7_singapure/29_city.jpg b/foto/views/images/australien/7_singapure/29_city.jpg
new file mode 100755
index 0000000..67cd598
Binary files /dev/null and b/foto/views/images/australien/7_singapure/29_city.jpg differ
diff --git a/foto/views/images/australien/7_singapure/30_city.jpg b/foto/views/images/australien/7_singapure/30_city.jpg
new file mode 100755
index 0000000..ebfb436
Binary files /dev/null and b/foto/views/images/australien/7_singapure/30_city.jpg differ
diff --git a/foto/views/images/australien/7_singapure/31_landmark.jpg b/foto/views/images/australien/7_singapure/31_landmark.jpg
new file mode 100755
index 0000000..42ec35b
Binary files /dev/null and b/foto/views/images/australien/7_singapure/31_landmark.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_0010.jpg b/foto/views/images/auswahl/auswahl/DSC_0010.jpg
new file mode 100755
index 0000000..70a2de8
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_0010.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_0011.jpg b/foto/views/images/auswahl/auswahl/DSC_0011.jpg
new file mode 100755
index 0000000..88612b3
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_0011.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_0036.jpg b/foto/views/images/auswahl/auswahl/DSC_0036.jpg
new file mode 100755
index 0000000..fb7046a
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_0036.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_0051.jpg b/foto/views/images/auswahl/auswahl/DSC_0051.jpg
new file mode 100755
index 0000000..13213fd
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_0051.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_0364.jpg b/foto/views/images/auswahl/auswahl/DSC_0364.jpg
new file mode 100755
index 0000000..3a9f80f
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_0364.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_0729.jpg b/foto/views/images/auswahl/auswahl/DSC_0729.jpg
new file mode 100755
index 0000000..a0e58d0
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_0729.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_0733.jpg b/foto/views/images/auswahl/auswahl/DSC_0733.jpg
new file mode 100755
index 0000000..0b81fa7
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_0733.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_1020.jpg b/foto/views/images/auswahl/auswahl/DSC_1020.jpg
new file mode 100755
index 0000000..075235a
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_1020.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_2890_Rinder.jpg b/foto/views/images/auswahl/auswahl/DSC_2890_Rinder.jpg
new file mode 100755
index 0000000..536a5b7
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_2890_Rinder.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_9570.jpg b/foto/views/images/auswahl/auswahl/DSC_9570.jpg
new file mode 100755
index 0000000..2c8b1a9
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_9570.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_9572.jpg b/foto/views/images/auswahl/auswahl/DSC_9572.jpg
new file mode 100755
index 0000000..bcf5a5a
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_9572.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_9584.jpg b/foto/views/images/auswahl/auswahl/DSC_9584.jpg
new file mode 100755
index 0000000..9a32855
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_9584.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/DSC_9619.jpg b/foto/views/images/auswahl/auswahl/DSC_9619.jpg
new file mode 100755
index 0000000..b8c0203
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/DSC_9619.jpg differ
diff --git a/foto/views/images/auswahl/auswahl/kaktus.jpg b/foto/views/images/auswahl/auswahl/kaktus.jpg
new file mode 100755
index 0000000..d8536e4
Binary files /dev/null and b/foto/views/images/auswahl/auswahl/kaktus.jpg differ
diff --git a/foto/views/images/auswahl/kurioses/DSC_1013.jpg b/foto/views/images/auswahl/kurioses/DSC_1013.jpg
new file mode 100755
index 0000000..13635a7
Binary files /dev/null and b/foto/views/images/auswahl/kurioses/DSC_1013.jpg differ
diff --git a/foto/views/images/auswahl/kurioses/_DSC4231.jpg b/foto/views/images/auswahl/kurioses/_DSC4231.jpg
new file mode 100755
index 0000000..295031d
Binary files /dev/null and b/foto/views/images/auswahl/kurioses/_DSC4231.jpg differ
diff --git a/foto/views/images/auswahl/kurioses/_DSC4236.jpg b/foto/views/images/auswahl/kurioses/_DSC4236.jpg
new file mode 100755
index 0000000..0af191c
Binary files /dev/null and b/foto/views/images/auswahl/kurioses/_DSC4236.jpg differ
diff --git a/foto/views/images/auswahl/kurioses/b_DSC_0203.jpg b/foto/views/images/auswahl/kurioses/b_DSC_0203.jpg
new file mode 100755
index 0000000..89a52d5
Binary files /dev/null and b/foto/views/images/auswahl/kurioses/b_DSC_0203.jpg differ
diff --git a/foto/views/images/auswahl/kurioses/b_DSC_0204.jpg b/foto/views/images/auswahl/kurioses/b_DSC_0204.jpg
new file mode 100755
index 0000000..f700e0d
Binary files /dev/null and b/foto/views/images/auswahl/kurioses/b_DSC_0204.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0022.jpg b/foto/views/images/auswahl/sammlung/DSC_0022.jpg
new file mode 100755
index 0000000..8fc5f61
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0022.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0025.jpg b/foto/views/images/auswahl/sammlung/DSC_0025.jpg
new file mode 100755
index 0000000..40293ec
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0025.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0030.jpg b/foto/views/images/auswahl/sammlung/DSC_0030.jpg
new file mode 100755
index 0000000..980e9f3
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0030.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0031.jpg b/foto/views/images/auswahl/sammlung/DSC_0031.jpg
new file mode 100755
index 0000000..d25efac
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0031.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0034.jpg b/foto/views/images/auswahl/sammlung/DSC_0034.jpg
new file mode 100755
index 0000000..dface1e
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0034.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0036.jpg b/foto/views/images/auswahl/sammlung/DSC_0036.jpg
new file mode 100755
index 0000000..41f3a08
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0036.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0056.jpg b/foto/views/images/auswahl/sammlung/DSC_0056.jpg
new file mode 100755
index 0000000..d24a379
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0056.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0066.jpg b/foto/views/images/auswahl/sammlung/DSC_0066.jpg
new file mode 100755
index 0000000..d02f17d
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0066.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0067.jpg b/foto/views/images/auswahl/sammlung/DSC_0067.jpg
new file mode 100755
index 0000000..4bf6580
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0067.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0073.jpg b/foto/views/images/auswahl/sammlung/DSC_0073.jpg
new file mode 100755
index 0000000..afa5562
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0073.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0074.jpg b/foto/views/images/auswahl/sammlung/DSC_0074.jpg
new file mode 100755
index 0000000..667dbd6
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0074.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0088.jpg b/foto/views/images/auswahl/sammlung/DSC_0088.jpg
new file mode 100755
index 0000000..d3e20eb
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0088.jpg differ
diff --git a/foto/views/images/auswahl/sammlung/DSC_0110.jpg b/foto/views/images/auswahl/sammlung/DSC_0110.jpg
new file mode 100755
index 0000000..aa51054
Binary files /dev/null and b/foto/views/images/auswahl/sammlung/DSC_0110.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/Apfelbaum_1.jpg b/foto/views/images/bonsai/bonsai/Apfelbaum_1.jpg
new file mode 100755
index 0000000..2464fd8
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/Apfelbaum_1.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/Bonsaigarten.jpg b/foto/views/images/bonsai/bonsai/Bonsaigarten.jpg
new file mode 100755
index 0000000..3a7dc08
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/Bonsaigarten.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/DSC_1696.jpg b/foto/views/images/bonsai/bonsai/DSC_1696.jpg
new file mode 100755
index 0000000..fc4390a
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/DSC_1696.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/_DSC1404.jpg b/foto/views/images/bonsai/bonsai/_DSC1404.jpg
new file mode 100755
index 0000000..7152a8b
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/_DSC1404.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/_DSC4035.jpg b/foto/views/images/bonsai/bonsai/_DSC4035.jpg
new file mode 100755
index 0000000..e2548d8
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/_DSC4035.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/_DSC4043.jpg b/foto/views/images/bonsai/bonsai/_DSC4043.jpg
new file mode 100755
index 0000000..fb306ea
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/_DSC4043.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/_DSC4063.jpg b/foto/views/images/bonsai/bonsai/_DSC4063.jpg
new file mode 100755
index 0000000..451da97
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/_DSC4063.jpg differ
diff --git a/foto/views/images/bonsai/bonsai/_DSC4291.jpg b/foto/views/images/bonsai/bonsai/_DSC4291.jpg
new file mode 100755
index 0000000..4a855e5
Binary files /dev/null and b/foto/views/images/bonsai/bonsai/_DSC4291.jpg differ
diff --git a/foto/views/images/carussel/bilder/_10.jpg b/foto/views/images/carussel/bilder/_10.jpg
new file mode 100755
index 0000000..403a826
Binary files /dev/null and b/foto/views/images/carussel/bilder/_10.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC1429.jpg b/foto/views/images/carussel/bilder/_DSC1429.jpg
new file mode 100755
index 0000000..32a0a9d
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC1429.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC1439.jpg b/foto/views/images/carussel/bilder/_DSC1439.jpg
new file mode 100755
index 0000000..0d45923
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC1439.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC2081.jpg b/foto/views/images/carussel/bilder/_DSC2081.jpg
new file mode 100755
index 0000000..064fa15
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC2081.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC2103.jpg b/foto/views/images/carussel/bilder/_DSC2103.jpg
new file mode 100755
index 0000000..683556e
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC2103.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC2120.jpg b/foto/views/images/carussel/bilder/_DSC2120.jpg
new file mode 100755
index 0000000..56006d7
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC2120.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC3369.jpg b/foto/views/images/carussel/bilder/_DSC3369.jpg
new file mode 100755
index 0000000..2cdebef
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC3369.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4101.jpg b/foto/views/images/carussel/bilder/_DSC4101.jpg
new file mode 100755
index 0000000..2e20ea1
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4101.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4105.jpg b/foto/views/images/carussel/bilder/_DSC4105.jpg
new file mode 100755
index 0000000..00c7830
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4105.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4107.jpg b/foto/views/images/carussel/bilder/_DSC4107.jpg
new file mode 100755
index 0000000..d95a06b
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4107.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4111.jpg b/foto/views/images/carussel/bilder/_DSC4111.jpg
new file mode 100755
index 0000000..65316aa
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4111.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4125.jpg b/foto/views/images/carussel/bilder/_DSC4125.jpg
new file mode 100755
index 0000000..54a6e73
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4125.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4126.jpg b/foto/views/images/carussel/bilder/_DSC4126.jpg
new file mode 100755
index 0000000..844a442
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4126.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4153.jpg b/foto/views/images/carussel/bilder/_DSC4153.jpg
new file mode 100755
index 0000000..290b6b8
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4153.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4155.jpg b/foto/views/images/carussel/bilder/_DSC4155.jpg
new file mode 100755
index 0000000..6c6ce76
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4155.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4162.jpg b/foto/views/images/carussel/bilder/_DSC4162.jpg
new file mode 100755
index 0000000..e2e026f
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4162.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4175.jpg b/foto/views/images/carussel/bilder/_DSC4175.jpg
new file mode 100755
index 0000000..49ad1db
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4175.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4186.jpg b/foto/views/images/carussel/bilder/_DSC4186.jpg
new file mode 100755
index 0000000..aa644f4
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4186.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4188.jpg b/foto/views/images/carussel/bilder/_DSC4188.jpg
new file mode 100755
index 0000000..2600b29
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4188.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4211.jpg b/foto/views/images/carussel/bilder/_DSC4211.jpg
new file mode 100755
index 0000000..be40839
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4211.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4223.jpg b/foto/views/images/carussel/bilder/_DSC4223.jpg
new file mode 100755
index 0000000..ea147f4
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4223.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4234.jpg b/foto/views/images/carussel/bilder/_DSC4234.jpg
new file mode 100755
index 0000000..a0a480a
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4234.jpg differ
diff --git a/foto/views/images/carussel/bilder/_DSC4252.jpg b/foto/views/images/carussel/bilder/_DSC4252.jpg
new file mode 100755
index 0000000..fe06ce2
Binary files /dev/null and b/foto/views/images/carussel/bilder/_DSC4252.jpg differ
diff --git a/foto/views/images/familie/ella/DSC_0487.jpg b/foto/views/images/familie/ella/DSC_0487.jpg
new file mode 100755
index 0000000..9fdd751
Binary files /dev/null and b/foto/views/images/familie/ella/DSC_0487.jpg differ
diff --git a/foto/views/images/familie/gruppe/DSC_1392.jpg b/foto/views/images/familie/gruppe/DSC_1392.jpg
new file mode 100755
index 0000000..e3d8483
Binary files /dev/null and b/foto/views/images/familie/gruppe/DSC_1392.jpg differ
diff --git a/foto/views/images/familie/portrait/DSC_1125.jpg b/foto/views/images/familie/portrait/DSC_1125.jpg
new file mode 100755
index 0000000..22102f3
Binary files /dev/null and b/foto/views/images/familie/portrait/DSC_1125.jpg differ
diff --git a/foto/views/images/familie/portrait/DSC_1416.jpg b/foto/views/images/familie/portrait/DSC_1416.jpg
new file mode 100755
index 0000000..2445649
Binary files /dev/null and b/foto/views/images/familie/portrait/DSC_1416.jpg differ
diff --git a/foto/views/images/familie/portrait/DSC_4227.jpg b/foto/views/images/familie/portrait/DSC_4227.jpg
new file mode 100755
index 0000000..f4d40fd
Binary files /dev/null and b/foto/views/images/familie/portrait/DSC_4227.jpg differ
diff --git a/foto/views/images/familie/portrait/Harald_an_Birke.jpg b/foto/views/images/familie/portrait/Harald_an_Birke.jpg
new file mode 100755
index 0000000..6d2fbf1
Binary files /dev/null and b/foto/views/images/familie/portrait/Harald_an_Birke.jpg differ
diff --git a/foto/views/images/grid/01.jpg b/foto/views/images/grid/01.jpg
new file mode 100755
index 0000000..8a1f773
Binary files /dev/null and b/foto/views/images/grid/01.jpg differ
diff --git a/foto/views/images/grid/02.jpg b/foto/views/images/grid/02.jpg
new file mode 100755
index 0000000..36bca68
Binary files /dev/null and b/foto/views/images/grid/02.jpg differ
diff --git a/foto/views/images/grid/03.jpg b/foto/views/images/grid/03.jpg
new file mode 100755
index 0000000..4750a02
Binary files /dev/null and b/foto/views/images/grid/03.jpg differ
diff --git a/foto/views/images/grid/04.jpg b/foto/views/images/grid/04.jpg
new file mode 100755
index 0000000..0d1ac65
Binary files /dev/null and b/foto/views/images/grid/04.jpg differ
diff --git a/foto/views/images/grid/05.jpg b/foto/views/images/grid/05.jpg
new file mode 100755
index 0000000..511f18a
Binary files /dev/null and b/foto/views/images/grid/05.jpg differ
diff --git a/foto/views/images/grid/06.jpg b/foto/views/images/grid/06.jpg
new file mode 100755
index 0000000..427b713
Binary files /dev/null and b/foto/views/images/grid/06.jpg differ
diff --git a/foto/views/images/grid/07.jpg b/foto/views/images/grid/07.jpg
new file mode 100755
index 0000000..c05db67
Binary files /dev/null and b/foto/views/images/grid/07.jpg differ
diff --git a/foto/views/images/grid/08.jpg b/foto/views/images/grid/08.jpg
new file mode 100755
index 0000000..87d49c7
Binary files /dev/null and b/foto/views/images/grid/08.jpg differ
diff --git a/foto/views/images/grid/09.jpg b/foto/views/images/grid/09.jpg
new file mode 100755
index 0000000..3614cb8
Binary files /dev/null and b/foto/views/images/grid/09.jpg differ
diff --git a/foto/views/images/grid/10.jpg b/foto/views/images/grid/10.jpg
new file mode 100755
index 0000000..403a826
Binary files /dev/null and b/foto/views/images/grid/10.jpg differ
diff --git a/foto/views/images/grid/11.jpg b/foto/views/images/grid/11.jpg
new file mode 100755
index 0000000..ed6fdf5
Binary files /dev/null and b/foto/views/images/grid/11.jpg differ
diff --git a/foto/views/images/grid/12.jpg b/foto/views/images/grid/12.jpg
new file mode 100755
index 0000000..b755bfe
Binary files /dev/null and b/foto/views/images/grid/12.jpg differ
diff --git a/foto/views/images/grid/13.jpg b/foto/views/images/grid/13.jpg
new file mode 100755
index 0000000..90e2de5
Binary files /dev/null and b/foto/views/images/grid/13.jpg differ
diff --git a/foto/views/images/grid/14.jpg b/foto/views/images/grid/14.jpg
new file mode 100755
index 0000000..8d19780
Binary files /dev/null and b/foto/views/images/grid/14.jpg differ
diff --git a/foto/views/images/grid/15.jpg b/foto/views/images/grid/15.jpg
new file mode 100755
index 0000000..5214cb9
Binary files /dev/null and b/foto/views/images/grid/15.jpg differ
diff --git a/foto/views/images/grid/16.jpg b/foto/views/images/grid/16.jpg
new file mode 100755
index 0000000..59b6d0e
Binary files /dev/null and b/foto/views/images/grid/16.jpg differ
diff --git a/foto/views/images/grid/17.jpg b/foto/views/images/grid/17.jpg
new file mode 100755
index 0000000..a87397f
Binary files /dev/null and b/foto/views/images/grid/17.jpg differ
diff --git a/foto/views/images/grid/18.jpg b/foto/views/images/grid/18.jpg
new file mode 100755
index 0000000..1a9c8e4
Binary files /dev/null and b/foto/views/images/grid/18.jpg differ
diff --git a/foto/views/images/grid/19.jpg b/foto/views/images/grid/19.jpg
new file mode 100755
index 0000000..46a8ec0
Binary files /dev/null and b/foto/views/images/grid/19.jpg differ
diff --git a/foto/views/images/grid/20.jpg b/foto/views/images/grid/20.jpg
new file mode 100755
index 0000000..cfc5197
Binary files /dev/null and b/foto/views/images/grid/20.jpg differ
diff --git a/foto/views/images/grid/21.jpg b/foto/views/images/grid/21.jpg
new file mode 100755
index 0000000..042e545
Binary files /dev/null and b/foto/views/images/grid/21.jpg differ
diff --git a/foto/views/images/grid/22.jpg b/foto/views/images/grid/22.jpg
new file mode 100755
index 0000000..6ced671
Binary files /dev/null and b/foto/views/images/grid/22.jpg differ
diff --git a/foto/views/images/grid/23.jpg b/foto/views/images/grid/23.jpg
new file mode 100755
index 0000000..ba18734
Binary files /dev/null and b/foto/views/images/grid/23.jpg differ
diff --git a/foto/views/images/grid/24.jpg b/foto/views/images/grid/24.jpg
new file mode 100755
index 0000000..05aef13
Binary files /dev/null and b/foto/views/images/grid/24.jpg differ
diff --git a/foto/views/images/grid/25.jpg b/foto/views/images/grid/25.jpg
new file mode 100755
index 0000000..7851811
Binary files /dev/null and b/foto/views/images/grid/25.jpg differ
diff --git a/foto/views/images/grid/26.jpg b/foto/views/images/grid/26.jpg
new file mode 100755
index 0000000..539281f
Binary files /dev/null and b/foto/views/images/grid/26.jpg differ
diff --git a/foto/views/images/grid/27.jpg b/foto/views/images/grid/27.jpg
new file mode 100755
index 0000000..aa7a575
Binary files /dev/null and b/foto/views/images/grid/27.jpg differ
diff --git a/foto/views/images/grid/28.jpg b/foto/views/images/grid/28.jpg
new file mode 100755
index 0000000..4dc092a
Binary files /dev/null and b/foto/views/images/grid/28.jpg differ
diff --git a/foto/views/images/grid/29.jpg b/foto/views/images/grid/29.jpg
new file mode 100755
index 0000000..f240d43
Binary files /dev/null and b/foto/views/images/grid/29.jpg differ
diff --git a/foto/views/images/grid/30.jpg b/foto/views/images/grid/30.jpg
new file mode 100755
index 0000000..6335563
Binary files /dev/null and b/foto/views/images/grid/30.jpg differ
diff --git a/foto/views/images/grid/31.jpg b/foto/views/images/grid/31.jpg
new file mode 100755
index 0000000..bc00ccb
Binary files /dev/null and b/foto/views/images/grid/31.jpg differ
diff --git a/foto/views/images/grid/32.jpg b/foto/views/images/grid/32.jpg
new file mode 100755
index 0000000..64d9306
Binary files /dev/null and b/foto/views/images/grid/32.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_01.jpg b/foto/views/images/grid_australien/Bild_01.jpg
new file mode 100755
index 0000000..84d083b
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_01.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_02.jpg b/foto/views/images/grid_australien/Bild_02.jpg
new file mode 100755
index 0000000..b5124b0
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_02.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_03.jpg b/foto/views/images/grid_australien/Bild_03.jpg
new file mode 100755
index 0000000..d831aab
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_03.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_04.jpg b/foto/views/images/grid_australien/Bild_04.jpg
new file mode 100755
index 0000000..06c4599
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_04.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_05.jpg b/foto/views/images/grid_australien/Bild_05.jpg
new file mode 100755
index 0000000..bea9af3
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_05.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_07.jpg b/foto/views/images/grid_australien/Bild_07.jpg
new file mode 100755
index 0000000..adb705a
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_07.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_08.jpg b/foto/views/images/grid_australien/Bild_08.jpg
new file mode 100755
index 0000000..a0abad1
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_08.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_09.jpg b/foto/views/images/grid_australien/Bild_09.jpg
new file mode 100755
index 0000000..14e0ebe
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_09.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_10.jpg b/foto/views/images/grid_australien/Bild_10.jpg
new file mode 100755
index 0000000..75974f1
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_10.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_11.jpg b/foto/views/images/grid_australien/Bild_11.jpg
new file mode 100755
index 0000000..6f6d7d4
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_11.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_12.jpg b/foto/views/images/grid_australien/Bild_12.jpg
new file mode 100755
index 0000000..6ecd79d
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_12.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_13.jpg b/foto/views/images/grid_australien/Bild_13.jpg
new file mode 100755
index 0000000..1f49576
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_13.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_14.jpg b/foto/views/images/grid_australien/Bild_14.jpg
new file mode 100755
index 0000000..563aa6b
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_14.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_15.jpg b/foto/views/images/grid_australien/Bild_15.jpg
new file mode 100755
index 0000000..ac061c1
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_15.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_16.jpg b/foto/views/images/grid_australien/Bild_16.jpg
new file mode 100755
index 0000000..8edcd63
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_16.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_17.jpg b/foto/views/images/grid_australien/Bild_17.jpg
new file mode 100755
index 0000000..265c400
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_17.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_18.jpg b/foto/views/images/grid_australien/Bild_18.jpg
new file mode 100755
index 0000000..5538aff
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_18.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_19.jpg b/foto/views/images/grid_australien/Bild_19.jpg
new file mode 100755
index 0000000..69e3338
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_19.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_20.jpg b/foto/views/images/grid_australien/Bild_20.jpg
new file mode 100755
index 0000000..e0c84d4
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_20.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_21.jpg b/foto/views/images/grid_australien/Bild_21.jpg
new file mode 100755
index 0000000..859a4ce
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_21.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_22.jpg b/foto/views/images/grid_australien/Bild_22.jpg
new file mode 100755
index 0000000..22521ff
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_22.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_23.jpg b/foto/views/images/grid_australien/Bild_23.jpg
new file mode 100755
index 0000000..519aa6a
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_23.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_26.jpg b/foto/views/images/grid_australien/Bild_26.jpg
new file mode 100755
index 0000000..d8c9c2e
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_26.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_27.jpg b/foto/views/images/grid_australien/Bild_27.jpg
new file mode 100755
index 0000000..e1efe7c
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_27.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_30.jpg b/foto/views/images/grid_australien/Bild_30.jpg
new file mode 100755
index 0000000..5538aff
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_30.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_31.jpg b/foto/views/images/grid_australien/Bild_31.jpg
new file mode 100755
index 0000000..69e3338
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_31.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_33.jpg b/foto/views/images/grid_australien/Bild_33.jpg
new file mode 100755
index 0000000..859a4ce
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_33.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_34.jpg b/foto/views/images/grid_australien/Bild_34.jpg
new file mode 100755
index 0000000..22521ff
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_34.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_35.jpg b/foto/views/images/grid_australien/Bild_35.jpg
new file mode 100755
index 0000000..1541fa4
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_35.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_37.jpg b/foto/views/images/grid_australien/Bild_37.jpg
new file mode 100755
index 0000000..4cdbbf8
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_37.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_38.jpg b/foto/views/images/grid_australien/Bild_38.jpg
new file mode 100755
index 0000000..19eabc4
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_38.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_39.jpg b/foto/views/images/grid_australien/Bild_39.jpg
new file mode 100755
index 0000000..49d2239
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_39.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_40.jpg b/foto/views/images/grid_australien/Bild_40.jpg
new file mode 100755
index 0000000..78133ec
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_40.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_41.jpg b/foto/views/images/grid_australien/Bild_41.jpg
new file mode 100755
index 0000000..7e80acf
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_41.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_42.jpg b/foto/views/images/grid_australien/Bild_42.jpg
new file mode 100755
index 0000000..150c7c9
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_42.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_43.jpg b/foto/views/images/grid_australien/Bild_43.jpg
new file mode 100755
index 0000000..8706b00
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_43.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_44.jpg b/foto/views/images/grid_australien/Bild_44.jpg
new file mode 100755
index 0000000..3ccfb6a
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_44.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_45.jpg b/foto/views/images/grid_australien/Bild_45.jpg
new file mode 100755
index 0000000..b8dad37
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_45.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_46.jpg b/foto/views/images/grid_australien/Bild_46.jpg
new file mode 100755
index 0000000..17c3c58
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_46.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_47.jpg b/foto/views/images/grid_australien/Bild_47.jpg
new file mode 100755
index 0000000..f77c222
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_47.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_48.jpg b/foto/views/images/grid_australien/Bild_48.jpg
new file mode 100755
index 0000000..cffcaf7
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_48.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_49.jpg b/foto/views/images/grid_australien/Bild_49.jpg
new file mode 100755
index 0000000..bffb8c5
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_49.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_50.jpg b/foto/views/images/grid_australien/Bild_50.jpg
new file mode 100755
index 0000000..06e4401
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_50.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_51.jpg b/foto/views/images/grid_australien/Bild_51.jpg
new file mode 100755
index 0000000..50c0e8e
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_51.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_52.jpg b/foto/views/images/grid_australien/Bild_52.jpg
new file mode 100755
index 0000000..eaf805b
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_52.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_53.jpg b/foto/views/images/grid_australien/Bild_53.jpg
new file mode 100755
index 0000000..fc000f8
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_53.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_54.jpg b/foto/views/images/grid_australien/Bild_54.jpg
new file mode 100755
index 0000000..d25b56b
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_54.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_55.jpg b/foto/views/images/grid_australien/Bild_55.jpg
new file mode 100755
index 0000000..91c4053
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_55.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_56.jpg b/foto/views/images/grid_australien/Bild_56.jpg
new file mode 100755
index 0000000..c92f478
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_56.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_57.jpg b/foto/views/images/grid_australien/Bild_57.jpg
new file mode 100755
index 0000000..ae4e98c
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_57.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_58.jpg b/foto/views/images/grid_australien/Bild_58.jpg
new file mode 100755
index 0000000..a58baad
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_58.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_59.jpg b/foto/views/images/grid_australien/Bild_59.jpg
new file mode 100755
index 0000000..7c167c5
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_59.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_60.jpg b/foto/views/images/grid_australien/Bild_60.jpg
new file mode 100755
index 0000000..d5f47fd
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_60.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_61.jpg b/foto/views/images/grid_australien/Bild_61.jpg
new file mode 100755
index 0000000..82b6e96
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_61.jpg differ
diff --git a/foto/views/images/grid_australien/Bild_62.jpg b/foto/views/images/grid_australien/Bild_62.jpg
new file mode 100755
index 0000000..d2eb80f
Binary files /dev/null and b/foto/views/images/grid_australien/Bild_62.jpg differ
diff --git a/foto/views/images/impressionen/DSC_0011.jpg b/foto/views/images/impressionen/DSC_0011.jpg
new file mode 100755
index 0000000..4df6f14
Binary files /dev/null and b/foto/views/images/impressionen/DSC_0011.jpg differ
diff --git a/foto/views/images/impressionen/DSC_0072.jpg b/foto/views/images/impressionen/DSC_0072.jpg
new file mode 100755
index 0000000..4697476
Binary files /dev/null and b/foto/views/images/impressionen/DSC_0072.jpg differ
diff --git a/foto/views/images/impressionen/DSC_0733.jpg b/foto/views/images/impressionen/DSC_0733.jpg
new file mode 100755
index 0000000..2e44e92
Binary files /dev/null and b/foto/views/images/impressionen/DSC_0733.jpg differ
diff --git a/foto/views/images/impressionen/DSC_9619.jpg b/foto/views/images/impressionen/DSC_9619.jpg
new file mode 100755
index 0000000..e82434f
Binary files /dev/null and b/foto/views/images/impressionen/DSC_9619.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_0081.jpg b/foto/views/images/natur/baeume/DSC_0081.jpg
new file mode 100755
index 0000000..12042ab
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_0081.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_0085.jpg b/foto/views/images/natur/baeume/DSC_0085.jpg
new file mode 100755
index 0000000..d023dbe
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_0085.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_0346.jpg b/foto/views/images/natur/baeume/DSC_0346.jpg
new file mode 100755
index 0000000..8f96c25
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_0346.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_0368.jpg b/foto/views/images/natur/baeume/DSC_0368.jpg
new file mode 100755
index 0000000..ceafa02
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_0368.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_0369.jpg b/foto/views/images/natur/baeume/DSC_0369.jpg
new file mode 100755
index 0000000..0e6f805
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_0369.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_0372.jpg b/foto/views/images/natur/baeume/DSC_0372.jpg
new file mode 100755
index 0000000..3810f22
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_0372.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_0373.jpg b/foto/views/images/natur/baeume/DSC_0373.jpg
new file mode 100755
index 0000000..efe34b4
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_0373.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_1382.jpg b/foto/views/images/natur/baeume/DSC_1382.jpg
new file mode 100755
index 0000000..fe19d60
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_1382.jpg differ
diff --git a/foto/views/images/natur/baeume/DSC_8664.jpg b/foto/views/images/natur/baeume/DSC_8664.jpg
new file mode 100755
index 0000000..545090d
Binary files /dev/null and b/foto/views/images/natur/baeume/DSC_8664.jpg differ
diff --git a/foto/views/images/natur/baeume/FH000016-1.jpg b/foto/views/images/natur/baeume/FH000016-1.jpg
new file mode 100755
index 0000000..4f0e2a5
Binary files /dev/null and b/foto/views/images/natur/baeume/FH000016-1.jpg differ
diff --git a/foto/views/images/natur/baeume/_B0000576.jpg b/foto/views/images/natur/baeume/_B0000576.jpg
new file mode 100755
index 0000000..c837f8b
Binary files /dev/null and b/foto/views/images/natur/baeume/_B0000576.jpg differ
diff --git a/foto/views/images/natur/garten/AZ6_1627.jpg b/foto/views/images/natur/garten/AZ6_1627.jpg
new file mode 100755
index 0000000..e159868
Binary files /dev/null and b/foto/views/images/natur/garten/AZ6_1627.jpg differ
diff --git a/foto/views/images/natur/garten/DSC_0208.jpg b/foto/views/images/natur/garten/DSC_0208.jpg
new file mode 100755
index 0000000..426f912
Binary files /dev/null and b/foto/views/images/natur/garten/DSC_0208.jpg differ
diff --git a/foto/views/images/natur/garten/DSC_1928.jpg b/foto/views/images/natur/garten/DSC_1928.jpg
new file mode 100755
index 0000000..ad80e5f
Binary files /dev/null and b/foto/views/images/natur/garten/DSC_1928.jpg differ
diff --git a/foto/views/images/natur/garten/DSC_1933.jpg b/foto/views/images/natur/garten/DSC_1933.jpg
new file mode 100755
index 0000000..9b07f8f
Binary files /dev/null and b/foto/views/images/natur/garten/DSC_1933.jpg differ
diff --git a/foto/views/images/natur/garten/DSC_1989.jpg b/foto/views/images/natur/garten/DSC_1989.jpg
new file mode 100755
index 0000000..771721a
Binary files /dev/null and b/foto/views/images/natur/garten/DSC_1989.jpg differ
diff --git a/foto/views/images/natur/garten/DSC_1990.jpg b/foto/views/images/natur/garten/DSC_1990.jpg
new file mode 100755
index 0000000..decac33
Binary files /dev/null and b/foto/views/images/natur/garten/DSC_1990.jpg differ
diff --git a/foto/views/images/natur/garten/DSC_1991.jpg b/foto/views/images/natur/garten/DSC_1991.jpg
new file mode 100755
index 0000000..1a0340d
Binary files /dev/null and b/foto/views/images/natur/garten/DSC_1991.jpg differ
diff --git a/foto/views/images/natur/garten/GZ6_0011.jpg b/foto/views/images/natur/garten/GZ6_0011.jpg
new file mode 100755
index 0000000..7565f6a
Binary files /dev/null and b/foto/views/images/natur/garten/GZ6_0011.jpg differ
diff --git a/foto/views/images/natur/garten/_DSC2560.jpg b/foto/views/images/natur/garten/_DSC2560.jpg
new file mode 100755
index 0000000..95ec371
Binary files /dev/null and b/foto/views/images/natur/garten/_DSC2560.jpg differ
diff --git a/foto/views/images/natur/garten/_DSC2570.jpg b/foto/views/images/natur/garten/_DSC2570.jpg
new file mode 100755
index 0000000..5701225
Binary files /dev/null and b/foto/views/images/natur/garten/_DSC2570.jpg differ
diff --git a/foto/views/images/natur/garten/_DSC2608.jpg b/foto/views/images/natur/garten/_DSC2608.jpg
new file mode 100755
index 0000000..272376a
Binary files /dev/null and b/foto/views/images/natur/garten/_DSC2608.jpg differ
diff --git a/foto/views/images/natur/garten/_DSC4861.jpg b/foto/views/images/natur/garten/_DSC4861.jpg
new file mode 100755
index 0000000..a88340b
Binary files /dev/null and b/foto/views/images/natur/garten/_DSC4861.jpg differ
diff --git a/foto/views/images/natur/lüneburg/DSC_7123.jpg b/foto/views/images/natur/lüneburg/DSC_7123.jpg
new file mode 100755
index 0000000..ab8ee06
Binary files /dev/null and b/foto/views/images/natur/lüneburg/DSC_7123.jpg differ
diff --git a/foto/views/images/natur/lüneburg/DSC_7126.jpg b/foto/views/images/natur/lüneburg/DSC_7126.jpg
new file mode 100755
index 0000000..d330611
Binary files /dev/null and b/foto/views/images/natur/lüneburg/DSC_7126.jpg differ
diff --git a/foto/views/images/natur/lüneburg/DSC_7127.jpg b/foto/views/images/natur/lüneburg/DSC_7127.jpg
new file mode 100755
index 0000000..e925476
Binary files /dev/null and b/foto/views/images/natur/lüneburg/DSC_7127.jpg differ
diff --git a/foto/views/images/natur/lüneburg/DSC_7139.jpg b/foto/views/images/natur/lüneburg/DSC_7139.jpg
new file mode 100755
index 0000000..81e7a51
Binary files /dev/null and b/foto/views/images/natur/lüneburg/DSC_7139.jpg differ
diff --git a/foto/views/images/natur/lüneburg/DSC_7170.jpg b/foto/views/images/natur/lüneburg/DSC_7170.jpg
new file mode 100755
index 0000000..beda076
Binary files /dev/null and b/foto/views/images/natur/lüneburg/DSC_7170.jpg differ
diff --git a/foto/views/images/natur/lüneburg/DSC_7185.jpg b/foto/views/images/natur/lüneburg/DSC_7185.jpg
new file mode 100755
index 0000000..86ced8a
Binary files /dev/null and b/foto/views/images/natur/lüneburg/DSC_7185.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8266.jpg b/foto/views/images/natur/lütetsburg/DSC_8266.jpg
new file mode 100755
index 0000000..19c3333
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8266.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8267.jpg b/foto/views/images/natur/lütetsburg/DSC_8267.jpg
new file mode 100755
index 0000000..77295c9
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8267.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8276.jpg b/foto/views/images/natur/lütetsburg/DSC_8276.jpg
new file mode 100755
index 0000000..d51aa76
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8276.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8281.jpg b/foto/views/images/natur/lütetsburg/DSC_8281.jpg
new file mode 100755
index 0000000..ec91c58
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8281.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8283.jpg b/foto/views/images/natur/lütetsburg/DSC_8283.jpg
new file mode 100755
index 0000000..bc5fede
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8283.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8285.jpg b/foto/views/images/natur/lütetsburg/DSC_8285.jpg
new file mode 100755
index 0000000..1aba3b4
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8285.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8286.jpg b/foto/views/images/natur/lütetsburg/DSC_8286.jpg
new file mode 100755
index 0000000..3ffdbbf
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8286.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8290.jpg b/foto/views/images/natur/lütetsburg/DSC_8290.jpg
new file mode 100755
index 0000000..deb7236
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8290.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8305.jpg b/foto/views/images/natur/lütetsburg/DSC_8305.jpg
new file mode 100755
index 0000000..5ec35be
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8305.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8332.jpg b/foto/views/images/natur/lütetsburg/DSC_8332.jpg
new file mode 100755
index 0000000..762f359
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8332.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8344.jpg b/foto/views/images/natur/lütetsburg/DSC_8344.jpg
new file mode 100755
index 0000000..1411e2b
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8344.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8354.jpg b/foto/views/images/natur/lütetsburg/DSC_8354.jpg
new file mode 100755
index 0000000..0783d17
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8354.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8356.jpg b/foto/views/images/natur/lütetsburg/DSC_8356.jpg
new file mode 100755
index 0000000..970d865
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8356.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8358.jpg b/foto/views/images/natur/lütetsburg/DSC_8358.jpg
new file mode 100755
index 0000000..8693146
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8358.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8359.jpg b/foto/views/images/natur/lütetsburg/DSC_8359.jpg
new file mode 100755
index 0000000..273e3da
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8359.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8361.jpg b/foto/views/images/natur/lütetsburg/DSC_8361.jpg
new file mode 100755
index 0000000..febc0e4
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8361.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8364.jpg b/foto/views/images/natur/lütetsburg/DSC_8364.jpg
new file mode 100755
index 0000000..888f2a2
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8364.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8367.jpg b/foto/views/images/natur/lütetsburg/DSC_8367.jpg
new file mode 100755
index 0000000..8c9dda2
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8367.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8368.jpg b/foto/views/images/natur/lütetsburg/DSC_8368.jpg
new file mode 100755
index 0000000..4b12b23
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8368.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8370.jpg b/foto/views/images/natur/lütetsburg/DSC_8370.jpg
new file mode 100755
index 0000000..cc91dde
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8370.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8372.jpg b/foto/views/images/natur/lütetsburg/DSC_8372.jpg
new file mode 100755
index 0000000..af0e88f
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8372.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8373.jpg b/foto/views/images/natur/lütetsburg/DSC_8373.jpg
new file mode 100755
index 0000000..35af9bf
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8373.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8374.jpg b/foto/views/images/natur/lütetsburg/DSC_8374.jpg
new file mode 100755
index 0000000..23c932b
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8374.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8376.jpg b/foto/views/images/natur/lütetsburg/DSC_8376.jpg
new file mode 100755
index 0000000..ad543c0
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8376.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8379.jpg b/foto/views/images/natur/lütetsburg/DSC_8379.jpg
new file mode 100755
index 0000000..8a793d4
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8379.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8384.jpg b/foto/views/images/natur/lütetsburg/DSC_8384.jpg
new file mode 100755
index 0000000..a6c8ab8
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8384.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8388.jpg b/foto/views/images/natur/lütetsburg/DSC_8388.jpg
new file mode 100755
index 0000000..0ff3872
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8388.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8389.jpg b/foto/views/images/natur/lütetsburg/DSC_8389.jpg
new file mode 100755
index 0000000..1aebdd5
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8389.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8401.jpg b/foto/views/images/natur/lütetsburg/DSC_8401.jpg
new file mode 100755
index 0000000..579dd21
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8401.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8403.jpg b/foto/views/images/natur/lütetsburg/DSC_8403.jpg
new file mode 100755
index 0000000..f7202b1
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8403.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8407.jpg b/foto/views/images/natur/lütetsburg/DSC_8407.jpg
new file mode 100755
index 0000000..843c079
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8407.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8408.jpg b/foto/views/images/natur/lütetsburg/DSC_8408.jpg
new file mode 100755
index 0000000..9cfc882
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8408.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8412.jpg b/foto/views/images/natur/lütetsburg/DSC_8412.jpg
new file mode 100755
index 0000000..c8dfeea
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8412.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8432.jpg b/foto/views/images/natur/lütetsburg/DSC_8432.jpg
new file mode 100755
index 0000000..cf2d3da
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8432.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8433.jpg b/foto/views/images/natur/lütetsburg/DSC_8433.jpg
new file mode 100755
index 0000000..a55d4fa
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8433.jpg differ
diff --git a/foto/views/images/natur/lütetsburg/DSC_8434.jpg b/foto/views/images/natur/lütetsburg/DSC_8434.jpg
new file mode 100755
index 0000000..06296e2
Binary files /dev/null and b/foto/views/images/natur/lütetsburg/DSC_8434.jpg differ
diff --git a/foto/views/images/natur/natur/DSC_0323.jpg b/foto/views/images/natur/natur/DSC_0323.jpg
new file mode 100755
index 0000000..b325cd7
Binary files /dev/null and b/foto/views/images/natur/natur/DSC_0323.jpg differ
diff --git a/foto/views/images/natur/natur/DSC_5167.jpg b/foto/views/images/natur/natur/DSC_5167.jpg
new file mode 100755
index 0000000..979efc9
Binary files /dev/null and b/foto/views/images/natur/natur/DSC_5167.jpg differ
diff --git a/foto/views/images/natur/natur/Fliegenpilz.jpg b/foto/views/images/natur/natur/Fliegenpilz.jpg
new file mode 100755
index 0000000..fe80ed4
Binary files /dev/null and b/foto/views/images/natur/natur/Fliegenpilz.jpg differ
diff --git a/foto/views/images/natur/natur/_DSC2875.jpg b/foto/views/images/natur/natur/_DSC2875.jpg
new file mode 100755
index 0000000..b64fa79
Binary files /dev/null and b/foto/views/images/natur/natur/_DSC2875.jpg differ
diff --git a/foto/views/images/natur/natur/_DSC4016.jpg b/foto/views/images/natur/natur/_DSC4016.jpg
new file mode 100755
index 0000000..84ef9ad
Binary files /dev/null and b/foto/views/images/natur/natur/_DSC4016.jpg differ
diff --git a/foto/views/images/natur/natur/_DSC4018.jpg b/foto/views/images/natur/natur/_DSC4018.jpg
new file mode 100755
index 0000000..cfcd615
Binary files /dev/null and b/foto/views/images/natur/natur/_DSC4018.jpg differ
diff --git a/foto/views/images/natur/natur/_DSC4170.jpg b/foto/views/images/natur/natur/_DSC4170.jpg
new file mode 100755
index 0000000..57e93c8
Binary files /dev/null and b/foto/views/images/natur/natur/_DSC4170.jpg differ
diff --git a/foto/views/images/natur/natur/_DSC4191.jpg b/foto/views/images/natur/natur/_DSC4191.jpg
new file mode 100755
index 0000000..b07f579
Binary files /dev/null and b/foto/views/images/natur/natur/_DSC4191.jpg differ
diff --git a/foto/views/images/natur/tiere/DSC_0342.jpg b/foto/views/images/natur/tiere/DSC_0342.jpg
new file mode 100755
index 0000000..3235ff8
Binary files /dev/null and b/foto/views/images/natur/tiere/DSC_0342.jpg differ
diff --git a/foto/views/images/natur/tiere/DSC_0346.jpg b/foto/views/images/natur/tiere/DSC_0346.jpg
new file mode 100755
index 0000000..ff1f654
Binary files /dev/null and b/foto/views/images/natur/tiere/DSC_0346.jpg differ
diff --git a/foto/views/images/natur/tiere/DSC_0352.jpg b/foto/views/images/natur/tiere/DSC_0352.jpg
new file mode 100755
index 0000000..f7301fb
Binary files /dev/null and b/foto/views/images/natur/tiere/DSC_0352.jpg differ
diff --git a/foto/views/images/natur/tiere/DSC_2622.jpg b/foto/views/images/natur/tiere/DSC_2622.jpg
new file mode 100755
index 0000000..5d98267
Binary files /dev/null and b/foto/views/images/natur/tiere/DSC_2622.jpg differ
diff --git a/foto/views/images/natur/tiere/DSC_4059.jpg b/foto/views/images/natur/tiere/DSC_4059.jpg
new file mode 100755
index 0000000..256841c
Binary files /dev/null and b/foto/views/images/natur/tiere/DSC_4059.jpg differ
diff --git a/foto/views/images/natur/tiere/Schwanennest.jpg b/foto/views/images/natur/tiere/Schwanennest.jpg
new file mode 100755
index 0000000..fafe5bf
Binary files /dev/null and b/foto/views/images/natur/tiere/Schwanennest.jpg differ
diff --git a/foto/views/images/natur/tiere/_DSC1928.jpg b/foto/views/images/natur/tiere/_DSC1928.jpg
new file mode 100755
index 0000000..511f18a
Binary files /dev/null and b/foto/views/images/natur/tiere/_DSC1928.jpg differ
diff --git a/foto/views/images/natur/tiere/_DSC1960.jpg b/foto/views/images/natur/tiere/_DSC1960.jpg
new file mode 100755
index 0000000..bee5ef3
Binary files /dev/null and b/foto/views/images/natur/tiere/_DSC1960.jpg differ
diff --git a/foto/views/images/natur/tiere/_DSC2199.jpg b/foto/views/images/natur/tiere/_DSC2199.jpg
new file mode 100755
index 0000000..896dd65
Binary files /dev/null and b/foto/views/images/natur/tiere/_DSC2199.jpg differ
diff --git a/foto/views/images/natur/tiere/_DSC3072.jpg b/foto/views/images/natur/tiere/_DSC3072.jpg
new file mode 100755
index 0000000..ad016cb
Binary files /dev/null and b/foto/views/images/natur/tiere/_DSC3072.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/10.jpg b/foto/views/images/nordpark/industriekultur/10.jpg
new file mode 100755
index 0000000..403a826
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/10.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/DSC_0921.jpg b/foto/views/images/nordpark/industriekultur/DSC_0921.jpg
new file mode 100755
index 0000000..0d38dbf
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/DSC_0921.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/DSC_0927.jpg b/foto/views/images/nordpark/industriekultur/DSC_0927.jpg
new file mode 100755
index 0000000..42dbe17
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/DSC_0927.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/DSC_0928.jpg b/foto/views/images/nordpark/industriekultur/DSC_0928.jpg
new file mode 100755
index 0000000..c0edfd5
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/DSC_0928.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC1429.jpg b/foto/views/images/nordpark/industriekultur/_DSC1429.jpg
new file mode 100755
index 0000000..32a0a9d
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC1429.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC1439.jpg b/foto/views/images/nordpark/industriekultur/_DSC1439.jpg
new file mode 100755
index 0000000..0d45923
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC1439.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC2081.jpg b/foto/views/images/nordpark/industriekultur/_DSC2081.jpg
new file mode 100755
index 0000000..064fa15
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC2081.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC2103.jpg b/foto/views/images/nordpark/industriekultur/_DSC2103.jpg
new file mode 100755
index 0000000..683556e
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC2103.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC2120.jpg b/foto/views/images/nordpark/industriekultur/_DSC2120.jpg
new file mode 100755
index 0000000..56006d7
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC2120.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC3369.jpg b/foto/views/images/nordpark/industriekultur/_DSC3369.jpg
new file mode 100755
index 0000000..2cdebef
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC3369.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4101.jpg b/foto/views/images/nordpark/industriekultur/_DSC4101.jpg
new file mode 100755
index 0000000..2e20ea1
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4101.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4105.jpg b/foto/views/images/nordpark/industriekultur/_DSC4105.jpg
new file mode 100755
index 0000000..00c7830
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4105.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4107.jpg b/foto/views/images/nordpark/industriekultur/_DSC4107.jpg
new file mode 100755
index 0000000..d95a06b
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4107.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4111.jpg b/foto/views/images/nordpark/industriekultur/_DSC4111.jpg
new file mode 100755
index 0000000..65316aa
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4111.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4125.jpg b/foto/views/images/nordpark/industriekultur/_DSC4125.jpg
new file mode 100755
index 0000000..54a6e73
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4125.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4126.jpg b/foto/views/images/nordpark/industriekultur/_DSC4126.jpg
new file mode 100755
index 0000000..844a442
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4126.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4153.jpg b/foto/views/images/nordpark/industriekultur/_DSC4153.jpg
new file mode 100755
index 0000000..290b6b8
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4153.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4155.jpg b/foto/views/images/nordpark/industriekultur/_DSC4155.jpg
new file mode 100755
index 0000000..6c6ce76
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4155.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4162.jpg b/foto/views/images/nordpark/industriekultur/_DSC4162.jpg
new file mode 100755
index 0000000..e2e026f
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4162.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4175.jpg b/foto/views/images/nordpark/industriekultur/_DSC4175.jpg
new file mode 100755
index 0000000..49ad1db
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4175.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4186.jpg b/foto/views/images/nordpark/industriekultur/_DSC4186.jpg
new file mode 100755
index 0000000..aa644f4
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4186.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4188.jpg b/foto/views/images/nordpark/industriekultur/_DSC4188.jpg
new file mode 100755
index 0000000..2600b29
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4188.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4211.jpg b/foto/views/images/nordpark/industriekultur/_DSC4211.jpg
new file mode 100755
index 0000000..be40839
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4211.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4223.jpg b/foto/views/images/nordpark/industriekultur/_DSC4223.jpg
new file mode 100755
index 0000000..ea147f4
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4223.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4234.jpg b/foto/views/images/nordpark/industriekultur/_DSC4234.jpg
new file mode 100755
index 0000000..a0a480a
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4234.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4252.jpg b/foto/views/images/nordpark/industriekultur/_DSC4252.jpg
new file mode 100755
index 0000000..fe06ce2
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4252.jpg differ
diff --git a/foto/views/images/nordpark/industriekultur/_DSC4269.jpg b/foto/views/images/nordpark/industriekultur/_DSC4269.jpg
new file mode 100755
index 0000000..ffa6e3e
Binary files /dev/null and b/foto/views/images/nordpark/industriekultur/_DSC4269.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/DSC00430.jpg b/foto/views/images/nordpark/sandburg/DSC00430.jpg
new file mode 100755
index 0000000..25f409d
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/DSC00430.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/DSC00468.jpg b/foto/views/images/nordpark/sandburg/DSC00468.jpg
new file mode 100755
index 0000000..5cb6944
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/DSC00468.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/DSC00479_1.jpg b/foto/views/images/nordpark/sandburg/DSC00479_1.jpg
new file mode 100755
index 0000000..d76771e
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/DSC00479_1.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5043.jpg b/foto/views/images/nordpark/sandburg/_DSC5043.jpg
new file mode 100755
index 0000000..69adc29
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5043.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5049.jpg b/foto/views/images/nordpark/sandburg/_DSC5049.jpg
new file mode 100755
index 0000000..d8b305d
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5049.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5072.jpg b/foto/views/images/nordpark/sandburg/_DSC5072.jpg
new file mode 100755
index 0000000..21a6c90
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5072.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5073.jpg b/foto/views/images/nordpark/sandburg/_DSC5073.jpg
new file mode 100755
index 0000000..920b623
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5073.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5075.jpg b/foto/views/images/nordpark/sandburg/_DSC5075.jpg
new file mode 100755
index 0000000..474ca31
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5075.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5076.jpg b/foto/views/images/nordpark/sandburg/_DSC5076.jpg
new file mode 100755
index 0000000..e6cb55a
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5076.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5079.jpg b/foto/views/images/nordpark/sandburg/_DSC5079.jpg
new file mode 100755
index 0000000..00e4ee3
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5079.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5095.jpg b/foto/views/images/nordpark/sandburg/_DSC5095.jpg
new file mode 100755
index 0000000..6c50de6
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5095.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5132.jpg b/foto/views/images/nordpark/sandburg/_DSC5132.jpg
new file mode 100755
index 0000000..d592305
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5132.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5159.jpg b/foto/views/images/nordpark/sandburg/_DSC5159.jpg
new file mode 100755
index 0000000..046c04e
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5159.jpg differ
diff --git a/foto/views/images/nordpark/sandburg/_DSC5162.jpg b/foto/views/images/nordpark/sandburg/_DSC5162.jpg
new file mode 100755
index 0000000..33caad7
Binary files /dev/null and b/foto/views/images/nordpark/sandburg/_DSC5162.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/DSC_0194.jpg b/foto/views/images/ostfriesland/dornum/DSC_0194.jpg
new file mode 100755
index 0000000..34cc68f
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/DSC_0194.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/DSC_0203.jpg b/foto/views/images/ostfriesland/dornum/DSC_0203.jpg
new file mode 100755
index 0000000..525dbe0
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/DSC_0203.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/DSC_0211.jpg b/foto/views/images/ostfriesland/dornum/DSC_0211.jpg
new file mode 100755
index 0000000..bb0bd59
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/DSC_0211.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/_DSC00780.jpg b/foto/views/images/ostfriesland/dornum/_DSC00780.jpg
new file mode 100755
index 0000000..917c00f
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/_DSC00780.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/_DSC4576.jpg b/foto/views/images/ostfriesland/dornum/_DSC4576.jpg
new file mode 100755
index 0000000..182f352
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/_DSC4576.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/_DSC4579.jpg b/foto/views/images/ostfriesland/dornum/_DSC4579.jpg
new file mode 100755
index 0000000..d999a8c
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/_DSC4579.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/_DSC4581.jpg b/foto/views/images/ostfriesland/dornum/_DSC4581.jpg
new file mode 100755
index 0000000..0733a94
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/_DSC4581.jpg differ
diff --git a/foto/views/images/ostfriesland/dornum/_DSC4584.jpg b/foto/views/images/ostfriesland/dornum/_DSC4584.jpg
new file mode 100755
index 0000000..b2b0b8f
Binary files /dev/null and b/foto/views/images/ostfriesland/dornum/_DSC4584.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/DSC_2868.jpg b/foto/views/images/ostfriesland/ewiges_meer/DSC_2868.jpg
new file mode 100755
index 0000000..5189735
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/DSC_2868.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/DSC_2913.jpg b/foto/views/images/ostfriesland/ewiges_meer/DSC_2913.jpg
new file mode 100755
index 0000000..1d35588
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/DSC_2913.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/_DSC2453-1.jpg b/foto/views/images/ostfriesland/ewiges_meer/_DSC2453-1.jpg
new file mode 100755
index 0000000..304d459
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/_DSC2453-1.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/_DSC2454-1.jpg b/foto/views/images/ostfriesland/ewiges_meer/_DSC2454-1.jpg
new file mode 100755
index 0000000..993c670
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/_DSC2454-1.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/_DSC2455-1.jpg b/foto/views/images/ostfriesland/ewiges_meer/_DSC2455-1.jpg
new file mode 100755
index 0000000..5db26e0
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/_DSC2455-1.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/_DSC2458.jpg b/foto/views/images/ostfriesland/ewiges_meer/_DSC2458.jpg
new file mode 100755
index 0000000..40b61ed
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/_DSC2458.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/_DSC2461-1.jpg b/foto/views/images/ostfriesland/ewiges_meer/_DSC2461-1.jpg
new file mode 100755
index 0000000..cb082fe
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/_DSC2461-1.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/_DSC2462-1.jpg b/foto/views/images/ostfriesland/ewiges_meer/_DSC2462-1.jpg
new file mode 100755
index 0000000..d276aab
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/_DSC2462-1.jpg differ
diff --git a/foto/views/images/ostfriesland/ewiges_meer/_DSC2464.jpg b/foto/views/images/ostfriesland/ewiges_meer/_DSC2464.jpg
new file mode 100755
index 0000000..dd5df62
Binary files /dev/null and b/foto/views/images/ostfriesland/ewiges_meer/_DSC2464.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00717.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00717.jpg
new file mode 100755
index 0000000..61eaa3e
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00717.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00731.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00731.jpg
new file mode 100755
index 0000000..65d543f
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00731.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00732.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00732.jpg
new file mode 100755
index 0000000..e32cc11
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00732.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00735.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00735.jpg
new file mode 100755
index 0000000..c3f7c16
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00735.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00740.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00740.jpg
new file mode 100755
index 0000000..d1259c2
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00740.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00741.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00741.jpg
new file mode 100755
index 0000000..b7befa5
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00741.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00742.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00742.jpg
new file mode 100755
index 0000000..fb89566
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00742.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/DSC00744.jpg b/foto/views/images/ostfriesland/greetsiel/DSC00744.jpg
new file mode 100755
index 0000000..1542469
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/DSC00744.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/_MG_2049.jpg b/foto/views/images/ostfriesland/greetsiel/_MG_2049.jpg
new file mode 100755
index 0000000..8b1f02c
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/_MG_2049.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/_MG_2066.jpg b/foto/views/images/ostfriesland/greetsiel/_MG_2066.jpg
new file mode 100755
index 0000000..1565050
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/_MG_2066.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/_MG_2067.jpg b/foto/views/images/ostfriesland/greetsiel/_MG_2067.jpg
new file mode 100755
index 0000000..3db4516
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/_MG_2067.jpg differ
diff --git a/foto/views/images/ostfriesland/greetsiel/_MG_2219.jpg b/foto/views/images/ostfriesland/greetsiel/_MG_2219.jpg
new file mode 100755
index 0000000..d7b13e0
Binary files /dev/null and b/foto/views/images/ostfriesland/greetsiel/_MG_2219.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/2016_09_30_Greetsiel_053_1920_3.jpg b/foto/views/images/ostfriesland/landschaft/2016_09_30_Greetsiel_053_1920_3.jpg
new file mode 100755
index 0000000..9e2cc2f
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/2016_09_30_Greetsiel_053_1920_3.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/2020_07_06_Norddeich_Kite_145_1920.jpg b/foto/views/images/ostfriesland/landschaft/2020_07_06_Norddeich_Kite_145_1920.jpg
new file mode 100755
index 0000000..14d946c
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/2020_07_06_Norddeich_Kite_145_1920.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC00752.jpg b/foto/views/images/ostfriesland/landschaft/DSC00752.jpg
new file mode 100755
index 0000000..fe2dba8
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC00752.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC00761.jpg b/foto/views/images/ostfriesland/landschaft/DSC00761.jpg
new file mode 100755
index 0000000..d3d3d3b
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC00761.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC00768.jpg b/foto/views/images/ostfriesland/landschaft/DSC00768.jpg
new file mode 100755
index 0000000..9491176
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC00768.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC4767.jpg b/foto/views/images/ostfriesland/landschaft/DSC4767.jpg
new file mode 100755
index 0000000..1bb80df
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC4767.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1862.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1862.jpg
new file mode 100755
index 0000000..6827c88
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1862.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1892.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1892.jpg
new file mode 100755
index 0000000..97d65cd
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1892.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1896.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1896.jpg
new file mode 100755
index 0000000..e914abb
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1896.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1901.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1901.jpg
new file mode 100755
index 0000000..c7cb13f
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1901.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1904.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1904.jpg
new file mode 100755
index 0000000..b443bcd
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1904.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1918.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1918.jpg
new file mode 100755
index 0000000..ad4cf0f
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1918.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1923.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1923.jpg
new file mode 100755
index 0000000..a065298
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1923.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1934.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1934.jpg
new file mode 100755
index 0000000..9175c5d
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1934.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1941.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1941.jpg
new file mode 100755
index 0000000..bede6d4
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1941.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1944.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1944.jpg
new file mode 100755
index 0000000..baf0a0a
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1944.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1945.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1945.jpg
new file mode 100755
index 0000000..c63275f
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1945.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_1949.jpg b/foto/views/images/ostfriesland/landschaft/DSC_1949.jpg
new file mode 100755
index 0000000..f1893ba
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_1949.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/DSC_2890_Rinder.jpg b/foto/views/images/ostfriesland/landschaft/DSC_2890_Rinder.jpg
new file mode 100755
index 0000000..3943b33
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/DSC_2890_Rinder.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/F1000006_Moorkarre.jpg b/foto/views/images/ostfriesland/landschaft/F1000006_Moorkarre.jpg
new file mode 100755
index 0000000..52416e9
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/F1000006_Moorkarre.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/F1000015_Leuchtturm_Otto.jpg b/foto/views/images/ostfriesland/landschaft/F1000015_Leuchtturm_Otto.jpg
new file mode 100755
index 0000000..2a3b672
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/F1000015_Leuchtturm_Otto.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/Greetsiel_053_1920_3.jpg b/foto/views/images/ostfriesland/landschaft/Greetsiel_053_1920_3.jpg
new file mode 100755
index 0000000..73d1677
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/Greetsiel_053_1920_3.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/Mühle.jpg b/foto/views/images/ostfriesland/landschaft/Mühle.jpg
new file mode 100755
index 0000000..81a876b
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/Mühle.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_DSC4770.jpg b/foto/views/images/ostfriesland/landschaft/_DSC4770.jpg
new file mode 100755
index 0000000..094b023
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_DSC4770.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_MG_2119.jpg b/foto/views/images/ostfriesland/landschaft/_MG_2119.jpg
new file mode 100755
index 0000000..81056c0
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_MG_2119.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_MG_2134.jpg b/foto/views/images/ostfriesland/landschaft/_MG_2134.jpg
new file mode 100755
index 0000000..46a7ee6
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_MG_2134.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_MG_2155.jpg b/foto/views/images/ostfriesland/landschaft/_MG_2155.jpg
new file mode 100755
index 0000000..6aefef0
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_MG_2155.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_MG_2168.jpg b/foto/views/images/ostfriesland/landschaft/_MG_2168.jpg
new file mode 100755
index 0000000..3183e9a
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_MG_2168.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_MG_2245.jpg b/foto/views/images/ostfriesland/landschaft/_MG_2245.jpg
new file mode 100755
index 0000000..41de2a6
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_MG_2245.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_MG_2246.jpg b/foto/views/images/ostfriesland/landschaft/_MG_2246.jpg
new file mode 100755
index 0000000..7914969
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_MG_2246.jpg differ
diff --git a/foto/views/images/ostfriesland/landschaft/_Norden_Deichmühle_019_1920.jpg b/foto/views/images/ostfriesland/landschaft/_Norden_Deichmühle_019_1920.jpg
new file mode 100755
index 0000000..ba31169
Binary files /dev/null and b/foto/views/images/ostfriesland/landschaft/_Norden_Deichmühle_019_1920.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/DSC_0590.jpg b/foto/views/images/ostfriesland/nordsee/DSC_0590.jpg
new file mode 100755
index 0000000..d7d5636
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/DSC_0590.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC2546.jpg b/foto/views/images/ostfriesland/nordsee/_DSC2546.jpg
new file mode 100755
index 0000000..78921ef
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC2546.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC2783.jpg b/foto/views/images/ostfriesland/nordsee/_DSC2783.jpg
new file mode 100755
index 0000000..adbf146
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC2783.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC2793.jpg b/foto/views/images/ostfriesland/nordsee/_DSC2793.jpg
new file mode 100755
index 0000000..e57f926
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC2793.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC2995.jpg b/foto/views/images/ostfriesland/nordsee/_DSC2995.jpg
new file mode 100755
index 0000000..ab5887f
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC2995.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC2997.jpg b/foto/views/images/ostfriesland/nordsee/_DSC2997.jpg
new file mode 100755
index 0000000..6d3dd4a
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC2997.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3021.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3021.jpg
new file mode 100755
index 0000000..8043fe0
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3021.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3054.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3054.jpg
new file mode 100755
index 0000000..d42b1e5
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3054.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3063.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3063.jpg
new file mode 100755
index 0000000..f38515a
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3063.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3068.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3068.jpg
new file mode 100755
index 0000000..de7c8cb
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3068.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3069.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3069.jpg
new file mode 100755
index 0000000..072d672
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3069.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3070.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3070.jpg
new file mode 100755
index 0000000..1362204
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3070.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3075.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3075.jpg
new file mode 100755
index 0000000..27fa238
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3075.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3079.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3079.jpg
new file mode 100755
index 0000000..0269b4b
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3079.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/_DSC3088.jpg b/foto/views/images/ostfriesland/nordsee/_DSC3088.jpg
new file mode 100755
index 0000000..134435a
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/_DSC3088.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0010.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0010.jpg
new file mode 100755
index 0000000..52a1521
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0010.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0011.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0011.jpg
new file mode 100755
index 0000000..944f26a
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0011.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0022.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0022.jpg
new file mode 100755
index 0000000..dcfc6a1
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0022.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0025.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0025.jpg
new file mode 100755
index 0000000..3bee47d
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0025.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0030.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0030.jpg
new file mode 100755
index 0000000..3a1ff2b
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0030.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0031.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0031.jpg
new file mode 100755
index 0000000..b4bc6f9
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0031.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0034.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0034.jpg
new file mode 100755
index 0000000..b93ed48
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0034.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0036 1.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0036 1.jpg
new file mode 100755
index 0000000..762610d
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0036 1.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0036.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0036.jpg
new file mode 100755
index 0000000..ca89fc3
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0036.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0051.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0051.jpg
new file mode 100755
index 0000000..8c885f2
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0051.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0056.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0056.jpg
new file mode 100755
index 0000000..6a3f4c5
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0056.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0066.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0066.jpg
new file mode 100755
index 0000000..67161ea
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0066.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0067.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0067.jpg
new file mode 100755
index 0000000..b13d758
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0067.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0073.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0073.jpg
new file mode 100755
index 0000000..4c8e9ae
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0073.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0074.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0074.jpg
new file mode 100755
index 0000000..b42609c
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0074.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0088.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0088.jpg
new file mode 100755
index 0000000..8c375d1
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0088.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0110.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0110.jpg
new file mode 100755
index 0000000..262fda5
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0110.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0364.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0364.jpg
new file mode 100755
index 0000000..8c513c0
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0364.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0729.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0729.jpg
new file mode 100755
index 0000000..3a49442
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0729.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0733.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0733.jpg
new file mode 100755
index 0000000..cb05624
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_0733.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_1013.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_1013.jpg
new file mode 100755
index 0000000..3337e26
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_1013.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_1020.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_1020.jpg
new file mode 100755
index 0000000..58bc366
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_1020.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_2890_Rinder.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_2890_Rinder.jpg
new file mode 100755
index 0000000..b7a4c6b
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_2890_Rinder.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9570.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9570.jpg
new file mode 100755
index 0000000..d206374
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9570.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9572.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9572.jpg
new file mode 100755
index 0000000..0d8db6e
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9572.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9584.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9584.jpg
new file mode 100755
index 0000000..f39c381
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9584.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9619.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9619.jpg
new file mode 100755
index 0000000..2407b2b
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/DSC_9619.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/_DSC4231.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/_DSC4231.jpg
new file mode 100755
index 0000000..3d16cb0
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/_DSC4231.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/_DSC4236.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/_DSC4236.jpg
new file mode 100755
index 0000000..0f95c21
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/_DSC4236.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/b_DSC_0203.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/b_DSC_0203.jpg
new file mode 100755
index 0000000..9e45ada
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/b_DSC_0203.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/b_DSC_0204.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/b_DSC_0204.jpg
new file mode 100755
index 0000000..c6bcbd1
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/b_DSC_0204.jpg differ
diff --git a/foto/views/images/ostfriesland/nordsee/auswahlen/kaktus.jpg b/foto/views/images/ostfriesland/nordsee/auswahlen/kaktus.jpg
new file mode 100755
index 0000000..29e8823
Binary files /dev/null and b/foto/views/images/ostfriesland/nordsee/auswahlen/kaktus.jpg differ
diff --git a/foto/views/images/ostfriesland/siele/DSC_1868.jpg b/foto/views/images/ostfriesland/siele/DSC_1868.jpg
new file mode 100755
index 0000000..0888d8f
Binary files /dev/null and b/foto/views/images/ostfriesland/siele/DSC_1868.jpg differ
diff --git a/foto/views/images/ostfriesland/siele/DSC_1886.jpg b/foto/views/images/ostfriesland/siele/DSC_1886.jpg
new file mode 100755
index 0000000..d4d2193
Binary files /dev/null and b/foto/views/images/ostfriesland/siele/DSC_1886.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/B0000465.jpg b/foto/views/images/rhein_und_ruhr/duisburg/B0000465.jpg
new file mode 100755
index 0000000..ac470c4
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/B0000465.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/B0000466.jpg b/foto/views/images/rhein_und_ruhr/duisburg/B0000466.jpg
new file mode 100755
index 0000000..9dfe4c1
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/B0000466.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/B0000467.jpg b/foto/views/images/rhein_und_ruhr/duisburg/B0000467.jpg
new file mode 100755
index 0000000..c96c157
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/B0000467.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/B0000471.jpg b/foto/views/images/rhein_und_ruhr/duisburg/B0000471.jpg
new file mode 100755
index 0000000..55bb8e6
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/B0000471.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/B0000557.jpg b/foto/views/images/rhein_und_ruhr/duisburg/B0000557.jpg
new file mode 100755
index 0000000..299e929
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/B0000557.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/B0000560.jpg b/foto/views/images/rhein_und_ruhr/duisburg/B0000560.jpg
new file mode 100755
index 0000000..d0cecc8
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/B0000560.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_0170.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0170.jpg
new file mode 100755
index 0000000..6e2e212
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0170.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_0189_1.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0189_1.jpg
new file mode 100755
index 0000000..5cd2b81
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0189_1.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_0203.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0203.jpg
new file mode 100755
index 0000000..859c670
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0203.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_0210.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0210.jpg
new file mode 100755
index 0000000..f49b15d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0210.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_0315.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0315.jpg
new file mode 100755
index 0000000..5710992
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0315.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_0317.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0317.jpg
new file mode 100755
index 0000000..b3c52ac
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0317.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_0911.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0911.jpg
new file mode 100755
index 0000000..48c50a4
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_0911.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_1410.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1410.jpg
new file mode 100755
index 0000000..9d554da
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1410.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_1481.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1481.jpg
new file mode 100755
index 0000000..7271130
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1481.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_1483.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1483.jpg
new file mode 100755
index 0000000..4e88cb5
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1483.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_1484.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1484.jpg
new file mode 100755
index 0000000..1a4729f
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1484.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_1508.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1508.jpg
new file mode 100755
index 0000000..280914e
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1508.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_1528.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1528.jpg
new file mode 100755
index 0000000..97d51e2
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1528.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_1554.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1554.jpg
new file mode 100755
index 0000000..0a3b93d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_1554.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/DSC_2942.jpg b/foto/views/images/rhein_und_ruhr/duisburg/DSC_2942.jpg
new file mode 100755
index 0000000..d1e2204
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/DSC_2942.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/_DSC1659.jpg b/foto/views/images/rhein_und_ruhr/duisburg/_DSC1659.jpg
new file mode 100755
index 0000000..6cb2824
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/_DSC1659.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/_DSC2130.jpg b/foto/views/images/rhein_und_ruhr/duisburg/_DSC2130.jpg
new file mode 100755
index 0000000..05aef13
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/_DSC2130.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/_DSC3401.jpg b/foto/views/images/rhein_und_ruhr/duisburg/_DSC3401.jpg
new file mode 100755
index 0000000..b955d32
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/_DSC3401.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/_DSC4460.jpg b/foto/views/images/rhein_und_ruhr/duisburg/_DSC4460.jpg
new file mode 100755
index 0000000..c48e56e
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/_DSC4460.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/duisburg/_DSC4499.jpg b/foto/views/images/rhein_und_ruhr/duisburg/_DSC4499.jpg
new file mode 100755
index 0000000..a0a94de
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/duisburg/_DSC4499.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0079.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0079.jpg
new file mode 100755
index 0000000..085f26a
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0079.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0081.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0081.jpg
new file mode 100755
index 0000000..fcefdcf
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0081.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0089.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0089.jpg
new file mode 100755
index 0000000..7cc68d6
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0089.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0090.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0090.jpg
new file mode 100755
index 0000000..3b38bad
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0090.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0095.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0095.jpg
new file mode 100755
index 0000000..b741946
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0095.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0096.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0096.jpg
new file mode 100755
index 0000000..39b76f3
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0096.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0100.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0100.jpg
new file mode 100755
index 0000000..41f5d95
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0100.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0103.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0103.jpg
new file mode 100755
index 0000000..39b0f28
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0103.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0104.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0104.jpg
new file mode 100755
index 0000000..e1bcb55
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0104.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0111.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0111.jpg
new file mode 100755
index 0000000..5147774
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0111.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0123.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0123.jpg
new file mode 100755
index 0000000..b35c262
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0123.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0124.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0124.jpg
new file mode 100755
index 0000000..dd32304
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0124.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0129.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0129.jpg
new file mode 100755
index 0000000..18cf970
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0129.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0131.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0131.jpg
new file mode 100755
index 0000000..9ad51f5
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0131.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0219.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0219.jpg
new file mode 100755
index 0000000..08216d0
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0219.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0225.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0225.jpg
new file mode 100755
index 0000000..b6be71f
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0225.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0226.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0226.jpg
new file mode 100755
index 0000000..a36b887
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0226.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0254.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0254.jpg
new file mode 100755
index 0000000..661ae8d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0254.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0264.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0264.jpg
new file mode 100755
index 0000000..e802709
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0264.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0265.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0265.jpg
new file mode 100755
index 0000000..e31a605
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0265.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0266.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0266.jpg
new file mode 100755
index 0000000..1840619
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0266.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0267.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0267.jpg
new file mode 100755
index 0000000..4e5fb94
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0267.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0272.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0272.jpg
new file mode 100755
index 0000000..68761f0
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0272.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0281.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0281.jpg
new file mode 100755
index 0000000..143a28d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0281.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0282.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0282.jpg
new file mode 100755
index 0000000..0d5cdb4
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0282.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0322.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0322.jpg
new file mode 100755
index 0000000..7aa68c5
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0322.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0729.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0729.jpg
new file mode 100755
index 0000000..08d157d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_0729.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1009.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1009.jpg
new file mode 100755
index 0000000..5f329c6
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1009.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1702.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1702.jpg
new file mode 100755
index 0000000..e19c47e
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1702.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1708.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1708.jpg
new file mode 100755
index 0000000..7f67bba
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_1708.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/DSC_3134.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_3134.jpg
new file mode 100755
index 0000000..a7939e9
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/DSC_3134.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/_DSC3401.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/_DSC3401.jpg
new file mode 100755
index 0000000..eeecd1b
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/_DSC3401.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/innenhafen/winter_ade.jpg b/foto/views/images/rhein_und_ruhr/innenhafen/winter_ade.jpg
new file mode 100755
index 0000000..5cf77d9
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/innenhafen/winter_ade.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/22.jpg b/foto/views/images/rhein_und_ruhr/landschaft/22.jpg
new file mode 100755
index 0000000..6ced671
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/22.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_0051-1.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_0051-1.jpg
new file mode 100755
index 0000000..acb0ef3
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_0051-1.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_1308.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1308.jpg
new file mode 100755
index 0000000..970ae69
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1308.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_1315.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1315.jpg
new file mode 100755
index 0000000..387877c
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1315.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_1476.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1476.jpg
new file mode 100755
index 0000000..842afb6
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1476.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_1481.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1481.jpg
new file mode 100755
index 0000000..c81bbc8
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1481.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_1871.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1871.jpg
new file mode 100755
index 0000000..e6290f8
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_1871.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_3462.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3462.jpg
new file mode 100755
index 0000000..9a67958
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3462.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_3594.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3594.jpg
new file mode 100755
index 0000000..3ad4315
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3594.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_3713.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3713.jpg
new file mode 100755
index 0000000..d74260b
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3713.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_3991.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3991.jpg
new file mode 100755
index 0000000..7c6e3fc
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3991.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/DSC_3993.jpg b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3993.jpg
new file mode 100755
index 0000000..25a02ca
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/DSC_3993.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/_DSC2139.jpg b/foto/views/images/rhein_und_ruhr/landschaft/_DSC2139.jpg
new file mode 100755
index 0000000..a846ef5
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/_DSC2139.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/_DSC2150.jpg b/foto/views/images/rhein_und_ruhr/landschaft/_DSC2150.jpg
new file mode 100755
index 0000000..59b6d0e
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/_DSC2150.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/landschaft/_DSC4904.jpg b/foto/views/images/rhein_und_ruhr/landschaft/_DSC4904.jpg
new file mode 100755
index 0000000..20518cf
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/landschaft/_DSC4904.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4789.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4789.jpg
new file mode 100755
index 0000000..5598070
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4789.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4815.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4815.jpg
new file mode 100755
index 0000000..407fd02
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4815.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4821.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4821.jpg
new file mode 100755
index 0000000..46115fd
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4821.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4826.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4826.jpg
new file mode 100755
index 0000000..d9d190f
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4826.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4842.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4842.jpg
new file mode 100755
index 0000000..89e060d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4842.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4849.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4849.jpg
new file mode 100755
index 0000000..8be3500
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4849.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4855.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4855.jpg
new file mode 100755
index 0000000..95b6e7d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4855.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4856.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4856.jpg
new file mode 100755
index 0000000..87f873a
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4856.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4860.jpg b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4860.jpg
new file mode 100755
index 0000000..1e56dd5
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/medienhafen/_DSC4860.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC00707.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC00707.jpg
new file mode 100755
index 0000000..d8a270a
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC00707.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1301.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1301.jpg
new file mode 100755
index 0000000..29a2de9
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1301.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1334.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1334.jpg
new file mode 100755
index 0000000..d872021
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1334.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1379.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1379.jpg
new file mode 100755
index 0000000..4aefc02
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1379.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1387.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1387.jpg
new file mode 100755
index 0000000..0c8436e
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1387.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1396.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1396.jpg
new file mode 100755
index 0000000..9c141a9
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1396.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1476.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1476.jpg
new file mode 100755
index 0000000..957b6fd
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1476.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1791.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1791.jpg
new file mode 100755
index 0000000..ba6a3df
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1791.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1799.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1799.jpg
new file mode 100755
index 0000000..905b837
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1799.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1812.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1812.jpg
new file mode 100755
index 0000000..c3a1f7e
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1812.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1836.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1836.jpg
new file mode 100755
index 0000000..5c0faa4
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1836.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1841.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1841.jpg
new file mode 100755
index 0000000..ab6629d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_1841.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/niederrhein/DSC_5207.jpg b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_5207.jpg
new file mode 100755
index 0000000..7817b76
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/niederrhein/DSC_5207.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1482.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1482.jpg
new file mode 100755
index 0000000..1204927
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1482.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1484.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1484.jpg
new file mode 100755
index 0000000..d17be12
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1484.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1485.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1485.jpg
new file mode 100755
index 0000000..cecc538
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1485.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1490.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1490.jpg
new file mode 100755
index 0000000..06c98db
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1490.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1509.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1509.jpg
new file mode 100755
index 0000000..b103353
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1509.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1515.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1515.jpg
new file mode 100755
index 0000000..e8e2e5d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1515.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1519.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1519.jpg
new file mode 100755
index 0000000..ec58fe4
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1519.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1521.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1521.jpg
new file mode 100755
index 0000000..da21b3f
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1521.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1522.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1522.jpg
new file mode 100755
index 0000000..d640a2a
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1522.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1545.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1545.jpg
new file mode 100755
index 0000000..73dec6f
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1545.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1563.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1563.jpg
new file mode 100755
index 0000000..76a8f20
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1563.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1570.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1570.jpg
new file mode 100755
index 0000000..5ac352f
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1570.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1578.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1578.jpg
new file mode 100755
index 0000000..2967a44
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1578.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1590.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1590.jpg
new file mode 100755
index 0000000..f4b99d1
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1590.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1596.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1596.jpg
new file mode 100755
index 0000000..74713ca
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1596.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1617.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1617.jpg
new file mode 100755
index 0000000..2f1051d
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1617.jpg differ
diff --git a/foto/views/images/rhein_und_ruhr/zoo/AZ6_1622.jpg b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1622.jpg
new file mode 100755
index 0000000..8b711c1
Binary files /dev/null and b/foto/views/images/rhein_und_ruhr/zoo/AZ6_1622.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0629.jpg b/foto/views/images/se/hochzeit/DSC_0629.jpg
new file mode 100755
index 0000000..3b27be9
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0629.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0725.jpg b/foto/views/images/se/hochzeit/DSC_0725.jpg
new file mode 100755
index 0000000..71a6e8a
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0725.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0729.jpg b/foto/views/images/se/hochzeit/DSC_0729.jpg
new file mode 100755
index 0000000..3dadec1
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0729.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0744.jpg b/foto/views/images/se/hochzeit/DSC_0744.jpg
new file mode 100755
index 0000000..919aa90
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0744.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0751.jpg b/foto/views/images/se/hochzeit/DSC_0751.jpg
new file mode 100755
index 0000000..3d8aa49
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0751.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0752.jpg b/foto/views/images/se/hochzeit/DSC_0752.jpg
new file mode 100755
index 0000000..d4f45ba
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0752.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0758.jpg b/foto/views/images/se/hochzeit/DSC_0758.jpg
new file mode 100755
index 0000000..e5744c8
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0758.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0760.jpg b/foto/views/images/se/hochzeit/DSC_0760.jpg
new file mode 100755
index 0000000..a9fc53f
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0760.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0761.jpg b/foto/views/images/se/hochzeit/DSC_0761.jpg
new file mode 100755
index 0000000..b58e88b
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0761.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0768.jpg b/foto/views/images/se/hochzeit/DSC_0768.jpg
new file mode 100755
index 0000000..962b915
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0768.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0781.jpg b/foto/views/images/se/hochzeit/DSC_0781.jpg
new file mode 100755
index 0000000..c540444
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0781.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0785.jpg b/foto/views/images/se/hochzeit/DSC_0785.jpg
new file mode 100755
index 0000000..07ad9e4
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0785.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0786.jpg b/foto/views/images/se/hochzeit/DSC_0786.jpg
new file mode 100755
index 0000000..62ae046
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0786.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0788.jpg b/foto/views/images/se/hochzeit/DSC_0788.jpg
new file mode 100755
index 0000000..dae2d26
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0788.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0792.jpg b/foto/views/images/se/hochzeit/DSC_0792.jpg
new file mode 100755
index 0000000..9089880
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0792.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0793.jpg b/foto/views/images/se/hochzeit/DSC_0793.jpg
new file mode 100755
index 0000000..5d5538d
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0793.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0798.jpg b/foto/views/images/se/hochzeit/DSC_0798.jpg
new file mode 100755
index 0000000..7a4629b
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0798.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0801.jpg b/foto/views/images/se/hochzeit/DSC_0801.jpg
new file mode 100755
index 0000000..6480573
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0801.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0804.jpg b/foto/views/images/se/hochzeit/DSC_0804.jpg
new file mode 100755
index 0000000..c1e80f3
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0804.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0805.jpg b/foto/views/images/se/hochzeit/DSC_0805.jpg
new file mode 100755
index 0000000..121346e
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0805.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0812.jpg b/foto/views/images/se/hochzeit/DSC_0812.jpg
new file mode 100755
index 0000000..3feed44
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0812.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0819.jpg b/foto/views/images/se/hochzeit/DSC_0819.jpg
new file mode 100755
index 0000000..8e10cfe
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0819.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0822.jpg b/foto/views/images/se/hochzeit/DSC_0822.jpg
new file mode 100755
index 0000000..3fa3aab
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0822.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0822_1.jpg b/foto/views/images/se/hochzeit/DSC_0822_1.jpg
new file mode 100755
index 0000000..0e1cb6a
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0822_1.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0825.jpg b/foto/views/images/se/hochzeit/DSC_0825.jpg
new file mode 100755
index 0000000..04ed69c
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0825.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0829.jpg b/foto/views/images/se/hochzeit/DSC_0829.jpg
new file mode 100755
index 0000000..ea6578e
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0829.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0835.jpg b/foto/views/images/se/hochzeit/DSC_0835.jpg
new file mode 100755
index 0000000..88a7e2e
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0835.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0842.jpg b/foto/views/images/se/hochzeit/DSC_0842.jpg
new file mode 100755
index 0000000..783c2c5
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0842.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0848.jpg b/foto/views/images/se/hochzeit/DSC_0848.jpg
new file mode 100755
index 0000000..0ca376b
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0848.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0849.jpg b/foto/views/images/se/hochzeit/DSC_0849.jpg
new file mode 100755
index 0000000..f6f76ee
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0849.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0850.jpg b/foto/views/images/se/hochzeit/DSC_0850.jpg
new file mode 100755
index 0000000..d5678aa
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0850.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0858.jpg b/foto/views/images/se/hochzeit/DSC_0858.jpg
new file mode 100755
index 0000000..a6c57a4
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0858.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0867.jpg b/foto/views/images/se/hochzeit/DSC_0867.jpg
new file mode 100755
index 0000000..3c4ef23
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0867.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0873.jpg b/foto/views/images/se/hochzeit/DSC_0873.jpg
new file mode 100755
index 0000000..49926c0
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0873.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0882.jpg b/foto/views/images/se/hochzeit/DSC_0882.jpg
new file mode 100755
index 0000000..8ac3008
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0882.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0884.jpg b/foto/views/images/se/hochzeit/DSC_0884.jpg
new file mode 100755
index 0000000..297012a
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0884.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0900.jpg b/foto/views/images/se/hochzeit/DSC_0900.jpg
new file mode 100755
index 0000000..7be0ab7
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0900.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0903.jpg b/foto/views/images/se/hochzeit/DSC_0903.jpg
new file mode 100755
index 0000000..1381194
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0903.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0906.jpg b/foto/views/images/se/hochzeit/DSC_0906.jpg
new file mode 100755
index 0000000..819a4e4
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0906.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0910.jpg b/foto/views/images/se/hochzeit/DSC_0910.jpg
new file mode 100755
index 0000000..d1088e4
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0910.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0914.jpg b/foto/views/images/se/hochzeit/DSC_0914.jpg
new file mode 100755
index 0000000..c704b5e
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0914.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0923.jpg b/foto/views/images/se/hochzeit/DSC_0923.jpg
new file mode 100755
index 0000000..16ea668
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0923.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0928.jpg b/foto/views/images/se/hochzeit/DSC_0928.jpg
new file mode 100755
index 0000000..ac08d91
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0928.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0935.jpg b/foto/views/images/se/hochzeit/DSC_0935.jpg
new file mode 100755
index 0000000..f0c6baa
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0935.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0937.jpg b/foto/views/images/se/hochzeit/DSC_0937.jpg
new file mode 100755
index 0000000..c35957f
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0937.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0938.jpg b/foto/views/images/se/hochzeit/DSC_0938.jpg
new file mode 100755
index 0000000..4cf02d0
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0938.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0940.jpg b/foto/views/images/se/hochzeit/DSC_0940.jpg
new file mode 100755
index 0000000..02c5aeb
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0940.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0942.jpg b/foto/views/images/se/hochzeit/DSC_0942.jpg
new file mode 100755
index 0000000..7e01079
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0942.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0946.jpg b/foto/views/images/se/hochzeit/DSC_0946.jpg
new file mode 100755
index 0000000..5d7ebba
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0946.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0952.jpg b/foto/views/images/se/hochzeit/DSC_0952.jpg
new file mode 100755
index 0000000..bd8e8ba
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0952.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0955.jpg b/foto/views/images/se/hochzeit/DSC_0955.jpg
new file mode 100755
index 0000000..dc01f6d
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0955.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0964.jpg b/foto/views/images/se/hochzeit/DSC_0964.jpg
new file mode 100755
index 0000000..decd1e2
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0964.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0966.jpg b/foto/views/images/se/hochzeit/DSC_0966.jpg
new file mode 100755
index 0000000..b19c6c6
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0966.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0972.jpg b/foto/views/images/se/hochzeit/DSC_0972.jpg
new file mode 100755
index 0000000..73ed4a5
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0972.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0974.jpg b/foto/views/images/se/hochzeit/DSC_0974.jpg
new file mode 100755
index 0000000..37941eb
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0974.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0976.jpg b/foto/views/images/se/hochzeit/DSC_0976.jpg
new file mode 100755
index 0000000..00c19f2
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0976.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0981.jpg b/foto/views/images/se/hochzeit/DSC_0981.jpg
new file mode 100755
index 0000000..ab50a37
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0981.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0982.jpg b/foto/views/images/se/hochzeit/DSC_0982.jpg
new file mode 100755
index 0000000..04b1bbc
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0982.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0983.jpg b/foto/views/images/se/hochzeit/DSC_0983.jpg
new file mode 100755
index 0000000..5157eeb
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0983.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0986.jpg b/foto/views/images/se/hochzeit/DSC_0986.jpg
new file mode 100755
index 0000000..59d61ff
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0986.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0990.jpg b/foto/views/images/se/hochzeit/DSC_0990.jpg
new file mode 100755
index 0000000..1976841
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0990.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_0998_1.jpg b/foto/views/images/se/hochzeit/DSC_0998_1.jpg
new file mode 100755
index 0000000..4ae91bb
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_0998_1.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1002_1.jpg b/foto/views/images/se/hochzeit/DSC_1002_1.jpg
new file mode 100755
index 0000000..4d78148
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1002_1.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1012.jpg b/foto/views/images/se/hochzeit/DSC_1012.jpg
new file mode 100755
index 0000000..3d71e30
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1012.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1018.jpg b/foto/views/images/se/hochzeit/DSC_1018.jpg
new file mode 100755
index 0000000..4d86150
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1018.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1032.jpg b/foto/views/images/se/hochzeit/DSC_1032.jpg
new file mode 100755
index 0000000..d60af94
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1032.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1034.jpg b/foto/views/images/se/hochzeit/DSC_1034.jpg
new file mode 100755
index 0000000..7a4948e
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1034.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1040.jpg b/foto/views/images/se/hochzeit/DSC_1040.jpg
new file mode 100755
index 0000000..ce995f1
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1040.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1043.jpg b/foto/views/images/se/hochzeit/DSC_1043.jpg
new file mode 100755
index 0000000..4421ac4
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1043.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1064.jpg b/foto/views/images/se/hochzeit/DSC_1064.jpg
new file mode 100755
index 0000000..0bd08b8
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1064.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1072.jpg b/foto/views/images/se/hochzeit/DSC_1072.jpg
new file mode 100755
index 0000000..ed8b980
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1072.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1078.jpg b/foto/views/images/se/hochzeit/DSC_1078.jpg
new file mode 100755
index 0000000..8db2ef6
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1078.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1080.jpg b/foto/views/images/se/hochzeit/DSC_1080.jpg
new file mode 100755
index 0000000..51bf8c1
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1080.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1082.jpg b/foto/views/images/se/hochzeit/DSC_1082.jpg
new file mode 100755
index 0000000..5ec9127
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1082.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1088.jpg b/foto/views/images/se/hochzeit/DSC_1088.jpg
new file mode 100755
index 0000000..d874637
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1088.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1091.jpg b/foto/views/images/se/hochzeit/DSC_1091.jpg
new file mode 100755
index 0000000..1a6f3e1
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1091.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1097.jpg b/foto/views/images/se/hochzeit/DSC_1097.jpg
new file mode 100755
index 0000000..08ac975
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1097.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1098.jpg b/foto/views/images/se/hochzeit/DSC_1098.jpg
new file mode 100755
index 0000000..0ca5d14
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1098.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1101.jpg b/foto/views/images/se/hochzeit/DSC_1101.jpg
new file mode 100755
index 0000000..f5edf4b
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1101.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1109.jpg b/foto/views/images/se/hochzeit/DSC_1109.jpg
new file mode 100755
index 0000000..f56574c
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1109.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1110.jpg b/foto/views/images/se/hochzeit/DSC_1110.jpg
new file mode 100755
index 0000000..9e1055d
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1110.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1118.jpg b/foto/views/images/se/hochzeit/DSC_1118.jpg
new file mode 100755
index 0000000..4091230
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1118.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1120.jpg b/foto/views/images/se/hochzeit/DSC_1120.jpg
new file mode 100755
index 0000000..cfea5f4
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1120.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1121.jpg b/foto/views/images/se/hochzeit/DSC_1121.jpg
new file mode 100755
index 0000000..25dfc0f
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1121.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1130.jpg b/foto/views/images/se/hochzeit/DSC_1130.jpg
new file mode 100755
index 0000000..103ce28
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1130.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1134.jpg b/foto/views/images/se/hochzeit/DSC_1134.jpg
new file mode 100755
index 0000000..e5fb3e9
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1134.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1146.jpg b/foto/views/images/se/hochzeit/DSC_1146.jpg
new file mode 100755
index 0000000..e7ce7bd
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1146.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1147.jpg b/foto/views/images/se/hochzeit/DSC_1147.jpg
new file mode 100755
index 0000000..ef47554
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1147.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1150.jpg b/foto/views/images/se/hochzeit/DSC_1150.jpg
new file mode 100755
index 0000000..e069069
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1150.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1151.jpg b/foto/views/images/se/hochzeit/DSC_1151.jpg
new file mode 100755
index 0000000..c97ee02
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1151.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1157.jpg b/foto/views/images/se/hochzeit/DSC_1157.jpg
new file mode 100755
index 0000000..66cdc4f
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1157.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1161.jpg b/foto/views/images/se/hochzeit/DSC_1161.jpg
new file mode 100755
index 0000000..0301587
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1161.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1162.jpg b/foto/views/images/se/hochzeit/DSC_1162.jpg
new file mode 100755
index 0000000..93ba49e
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1162.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1164.jpg b/foto/views/images/se/hochzeit/DSC_1164.jpg
new file mode 100755
index 0000000..59aa343
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1164.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1165.jpg b/foto/views/images/se/hochzeit/DSC_1165.jpg
new file mode 100755
index 0000000..c6167bf
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1165.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1166.jpg b/foto/views/images/se/hochzeit/DSC_1166.jpg
new file mode 100755
index 0000000..a68fa86
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1166.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1176.jpg b/foto/views/images/se/hochzeit/DSC_1176.jpg
new file mode 100755
index 0000000..1cd1ab0
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1176.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1179.jpg b/foto/views/images/se/hochzeit/DSC_1179.jpg
new file mode 100755
index 0000000..8e35407
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1179.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1181.jpg b/foto/views/images/se/hochzeit/DSC_1181.jpg
new file mode 100755
index 0000000..56d1d55
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1181.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1187.jpg b/foto/views/images/se/hochzeit/DSC_1187.jpg
new file mode 100755
index 0000000..876da00
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1187.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1189.jpg b/foto/views/images/se/hochzeit/DSC_1189.jpg
new file mode 100755
index 0000000..1a8bde1
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1189.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1190.jpg b/foto/views/images/se/hochzeit/DSC_1190.jpg
new file mode 100755
index 0000000..b1023e1
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1190.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1200.jpg b/foto/views/images/se/hochzeit/DSC_1200.jpg
new file mode 100755
index 0000000..c393a46
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1200.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1207.jpg b/foto/views/images/se/hochzeit/DSC_1207.jpg
new file mode 100755
index 0000000..9717179
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1207.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1210.jpg b/foto/views/images/se/hochzeit/DSC_1210.jpg
new file mode 100755
index 0000000..554e978
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1210.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1214.jpg b/foto/views/images/se/hochzeit/DSC_1214.jpg
new file mode 100755
index 0000000..8e72527
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1214.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1215.jpg b/foto/views/images/se/hochzeit/DSC_1215.jpg
new file mode 100755
index 0000000..3c52f07
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1215.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1217.jpg b/foto/views/images/se/hochzeit/DSC_1217.jpg
new file mode 100755
index 0000000..2649bca
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1217.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1218.jpg b/foto/views/images/se/hochzeit/DSC_1218.jpg
new file mode 100755
index 0000000..0887a7a
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1218.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1225.jpg b/foto/views/images/se/hochzeit/DSC_1225.jpg
new file mode 100755
index 0000000..0eab4aa
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1225.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1226.jpg b/foto/views/images/se/hochzeit/DSC_1226.jpg
new file mode 100755
index 0000000..38e7fcb
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1226.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1229.jpg b/foto/views/images/se/hochzeit/DSC_1229.jpg
new file mode 100755
index 0000000..f3e1b31
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1229.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1230.jpg b/foto/views/images/se/hochzeit/DSC_1230.jpg
new file mode 100755
index 0000000..61001ba
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1230.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1232.jpg b/foto/views/images/se/hochzeit/DSC_1232.jpg
new file mode 100755
index 0000000..2ddd114
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1232.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1242.jpg b/foto/views/images/se/hochzeit/DSC_1242.jpg
new file mode 100755
index 0000000..1aabb1e
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1242.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1249.jpg b/foto/views/images/se/hochzeit/DSC_1249.jpg
new file mode 100755
index 0000000..ce77366
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1249.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1251.jpg b/foto/views/images/se/hochzeit/DSC_1251.jpg
new file mode 100755
index 0000000..41e751d
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1251.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1252.jpg b/foto/views/images/se/hochzeit/DSC_1252.jpg
new file mode 100755
index 0000000..403cf82
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1252.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1257.jpg b/foto/views/images/se/hochzeit/DSC_1257.jpg
new file mode 100755
index 0000000..5c613c6
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1257.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1261.jpg b/foto/views/images/se/hochzeit/DSC_1261.jpg
new file mode 100755
index 0000000..afcac7b
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1261.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1264.jpg b/foto/views/images/se/hochzeit/DSC_1264.jpg
new file mode 100755
index 0000000..452c656
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1264.jpg differ
diff --git a/foto/views/images/se/hochzeit/DSC_1276.jpg b/foto/views/images/se/hochzeit/DSC_1276.jpg
new file mode 100755
index 0000000..49a5f45
Binary files /dev/null and b/foto/views/images/se/hochzeit/DSC_1276.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7333.jpg b/foto/views/images/st/ankunft/_DSC7333.jpg
new file mode 100755
index 0000000..63240d1
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7333.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7334.jpg b/foto/views/images/st/ankunft/_DSC7334.jpg
new file mode 100755
index 0000000..4fc2355
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7334.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7336.jpg b/foto/views/images/st/ankunft/_DSC7336.jpg
new file mode 100755
index 0000000..e5e51eb
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7336.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7337.jpg b/foto/views/images/st/ankunft/_DSC7337.jpg
new file mode 100755
index 0000000..269415c
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7337.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7338.jpg b/foto/views/images/st/ankunft/_DSC7338.jpg
new file mode 100755
index 0000000..12b864d
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7338.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7340.jpg b/foto/views/images/st/ankunft/_DSC7340.jpg
new file mode 100755
index 0000000..6cbe671
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7340.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7345.jpg b/foto/views/images/st/ankunft/_DSC7345.jpg
new file mode 100755
index 0000000..77b8c46
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7345.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7346.jpg b/foto/views/images/st/ankunft/_DSC7346.jpg
new file mode 100755
index 0000000..3d01007
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7346.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7347.jpg b/foto/views/images/st/ankunft/_DSC7347.jpg
new file mode 100755
index 0000000..34ce391
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7347.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7348.jpg b/foto/views/images/st/ankunft/_DSC7348.jpg
new file mode 100755
index 0000000..abad4b2
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7348.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7350.jpg b/foto/views/images/st/ankunft/_DSC7350.jpg
new file mode 100755
index 0000000..97f1ac2
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7350.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7351.jpg b/foto/views/images/st/ankunft/_DSC7351.jpg
new file mode 100755
index 0000000..43f9f59
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7351.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7353.jpg b/foto/views/images/st/ankunft/_DSC7353.jpg
new file mode 100755
index 0000000..18861ca
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7353.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7355.jpg b/foto/views/images/st/ankunft/_DSC7355.jpg
new file mode 100755
index 0000000..eec8ec4
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7355.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7356.jpg b/foto/views/images/st/ankunft/_DSC7356.jpg
new file mode 100755
index 0000000..ab9604e
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7356.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7357.jpg b/foto/views/images/st/ankunft/_DSC7357.jpg
new file mode 100755
index 0000000..67b6148
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7357.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7358.jpg b/foto/views/images/st/ankunft/_DSC7358.jpg
new file mode 100755
index 0000000..694b634
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7358.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7359.jpg b/foto/views/images/st/ankunft/_DSC7359.jpg
new file mode 100755
index 0000000..4e8fbb9
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7359.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7362.jpg b/foto/views/images/st/ankunft/_DSC7362.jpg
new file mode 100755
index 0000000..d506cce
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7362.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7364.jpg b/foto/views/images/st/ankunft/_DSC7364.jpg
new file mode 100755
index 0000000..a8ff0bd
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7364.jpg differ
diff --git a/foto/views/images/st/ankunft/_DSC7365.jpg b/foto/views/images/st/ankunft/_DSC7365.jpg
new file mode 100755
index 0000000..1fec4c2
Binary files /dev/null and b/foto/views/images/st/ankunft/_DSC7365.jpg differ
diff --git a/foto/views/images/st/feier/Familie_Asma.jpg b/foto/views/images/st/feier/Familie_Asma.jpg
new file mode 100755
index 0000000..ccbb494
Binary files /dev/null and b/foto/views/images/st/feier/Familie_Asma.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7659.jpg b/foto/views/images/st/feier/_DSC7659.jpg
new file mode 100755
index 0000000..2a1006c
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7659.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7660.jpg b/foto/views/images/st/feier/_DSC7660.jpg
new file mode 100755
index 0000000..618d83f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7660.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7662.jpg b/foto/views/images/st/feier/_DSC7662.jpg
new file mode 100755
index 0000000..626cd46
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7662.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7663.jpg b/foto/views/images/st/feier/_DSC7663.jpg
new file mode 100755
index 0000000..bffbf15
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7663.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7665.jpg b/foto/views/images/st/feier/_DSC7665.jpg
new file mode 100755
index 0000000..2d06177
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7665.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7666.jpg b/foto/views/images/st/feier/_DSC7666.jpg
new file mode 100755
index 0000000..efb851d
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7666.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7667.jpg b/foto/views/images/st/feier/_DSC7667.jpg
new file mode 100755
index 0000000..f791c89
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7667.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7668.jpg b/foto/views/images/st/feier/_DSC7668.jpg
new file mode 100755
index 0000000..c52f65b
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7668.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7669.jpg b/foto/views/images/st/feier/_DSC7669.jpg
new file mode 100755
index 0000000..2b68990
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7669.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7670.jpg b/foto/views/images/st/feier/_DSC7670.jpg
new file mode 100755
index 0000000..9e81bb8
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7670.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7672.jpg b/foto/views/images/st/feier/_DSC7672.jpg
new file mode 100755
index 0000000..390d134
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7672.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7673.jpg b/foto/views/images/st/feier/_DSC7673.jpg
new file mode 100755
index 0000000..302d595
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7673.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7675.jpg b/foto/views/images/st/feier/_DSC7675.jpg
new file mode 100755
index 0000000..bff5a18
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7675.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7677.jpg b/foto/views/images/st/feier/_DSC7677.jpg
new file mode 100755
index 0000000..bdb579f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7677.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7678.jpg b/foto/views/images/st/feier/_DSC7678.jpg
new file mode 100755
index 0000000..cbcfdd3
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7678.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7680.jpg b/foto/views/images/st/feier/_DSC7680.jpg
new file mode 100755
index 0000000..27a6f5d
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7680.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7683.jpg b/foto/views/images/st/feier/_DSC7683.jpg
new file mode 100755
index 0000000..99e992f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7683.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7688.jpg b/foto/views/images/st/feier/_DSC7688.jpg
new file mode 100755
index 0000000..a341e1b
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7688.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7692.jpg b/foto/views/images/st/feier/_DSC7692.jpg
new file mode 100755
index 0000000..20c8316
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7692.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7695.jpg b/foto/views/images/st/feier/_DSC7695.jpg
new file mode 100755
index 0000000..fe6c1c1
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7695.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7697.jpg b/foto/views/images/st/feier/_DSC7697.jpg
new file mode 100755
index 0000000..9dc3beb
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7697.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7698.jpg b/foto/views/images/st/feier/_DSC7698.jpg
new file mode 100755
index 0000000..9b12828
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7698.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7700.jpg b/foto/views/images/st/feier/_DSC7700.jpg
new file mode 100755
index 0000000..6eda78c
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7700.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7701.jpg b/foto/views/images/st/feier/_DSC7701.jpg
new file mode 100755
index 0000000..2931b46
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7701.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7702.jpg b/foto/views/images/st/feier/_DSC7702.jpg
new file mode 100755
index 0000000..05bad5f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7702.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7704.jpg b/foto/views/images/st/feier/_DSC7704.jpg
new file mode 100755
index 0000000..284d41b
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7704.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7705.jpg b/foto/views/images/st/feier/_DSC7705.jpg
new file mode 100755
index 0000000..cac63e7
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7705.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7706.jpg b/foto/views/images/st/feier/_DSC7706.jpg
new file mode 100755
index 0000000..de40c91
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7706.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7707.jpg b/foto/views/images/st/feier/_DSC7707.jpg
new file mode 100755
index 0000000..cd97c2a
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7707.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7708.jpg b/foto/views/images/st/feier/_DSC7708.jpg
new file mode 100755
index 0000000..5c84c99
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7708.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7712.jpg b/foto/views/images/st/feier/_DSC7712.jpg
new file mode 100755
index 0000000..367eac3
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7712.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7714.jpg b/foto/views/images/st/feier/_DSC7714.jpg
new file mode 100755
index 0000000..2d33bfe
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7714.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7715.jpg b/foto/views/images/st/feier/_DSC7715.jpg
new file mode 100755
index 0000000..b76c888
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7715.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7716.jpg b/foto/views/images/st/feier/_DSC7716.jpg
new file mode 100755
index 0000000..fa53031
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7716.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7717.jpg b/foto/views/images/st/feier/_DSC7717.jpg
new file mode 100755
index 0000000..ea46e7d
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7717.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7720.jpg b/foto/views/images/st/feier/_DSC7720.jpg
new file mode 100755
index 0000000..9ebde53
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7720.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7721.jpg b/foto/views/images/st/feier/_DSC7721.jpg
new file mode 100755
index 0000000..fc1cd20
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7721.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7727.jpg b/foto/views/images/st/feier/_DSC7727.jpg
new file mode 100755
index 0000000..7cdc93f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7727.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7732.jpg b/foto/views/images/st/feier/_DSC7732.jpg
new file mode 100755
index 0000000..d5c845f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7732.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7734.jpg b/foto/views/images/st/feier/_DSC7734.jpg
new file mode 100755
index 0000000..c9da305
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7734.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7737.jpg b/foto/views/images/st/feier/_DSC7737.jpg
new file mode 100755
index 0000000..a969133
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7737.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7738.jpg b/foto/views/images/st/feier/_DSC7738.jpg
new file mode 100755
index 0000000..2abde46
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7738.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7739.jpg b/foto/views/images/st/feier/_DSC7739.jpg
new file mode 100755
index 0000000..62b132a
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7739.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7741.jpg b/foto/views/images/st/feier/_DSC7741.jpg
new file mode 100755
index 0000000..4071b83
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7741.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7742.jpg b/foto/views/images/st/feier/_DSC7742.jpg
new file mode 100755
index 0000000..b5f98b1
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7742.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7744.jpg b/foto/views/images/st/feier/_DSC7744.jpg
new file mode 100755
index 0000000..a513dd4
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7744.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7751.jpg b/foto/views/images/st/feier/_DSC7751.jpg
new file mode 100755
index 0000000..c40a54c
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7751.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7761.jpg b/foto/views/images/st/feier/_DSC7761.jpg
new file mode 100755
index 0000000..be52f8a
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7761.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7761_1.jpg b/foto/views/images/st/feier/_DSC7761_1.jpg
new file mode 100755
index 0000000..7a4c526
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7761_1.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7762.jpg b/foto/views/images/st/feier/_DSC7762.jpg
new file mode 100755
index 0000000..864908f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7762.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7765.jpg b/foto/views/images/st/feier/_DSC7765.jpg
new file mode 100755
index 0000000..540efbd
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7765.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7768.jpg b/foto/views/images/st/feier/_DSC7768.jpg
new file mode 100755
index 0000000..25acb1b
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7768.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7771.jpg b/foto/views/images/st/feier/_DSC7771.jpg
new file mode 100755
index 0000000..cd8c070
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7771.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7772.jpg b/foto/views/images/st/feier/_DSC7772.jpg
new file mode 100755
index 0000000..3880b60
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7772.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7777-2.jpg b/foto/views/images/st/feier/_DSC7777-2.jpg
new file mode 100755
index 0000000..d207f1a
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7777-2.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7780.jpg b/foto/views/images/st/feier/_DSC7780.jpg
new file mode 100755
index 0000000..86e31b9
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7780.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7780_1.jpg b/foto/views/images/st/feier/_DSC7780_1.jpg
new file mode 100755
index 0000000..9034b9c
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7780_1.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7781.jpg b/foto/views/images/st/feier/_DSC7781.jpg
new file mode 100755
index 0000000..c040cdf
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7781.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7782.jpg b/foto/views/images/st/feier/_DSC7782.jpg
new file mode 100755
index 0000000..37b66e1
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7782.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7783.jpg b/foto/views/images/st/feier/_DSC7783.jpg
new file mode 100755
index 0000000..97328ec
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7783.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7784.jpg b/foto/views/images/st/feier/_DSC7784.jpg
new file mode 100755
index 0000000..1d2b16f
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7784.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7785.jpg b/foto/views/images/st/feier/_DSC7785.jpg
new file mode 100755
index 0000000..a97cc88
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7785.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7786.jpg b/foto/views/images/st/feier/_DSC7786.jpg
new file mode 100755
index 0000000..76ebbfb
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7786.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7787.jpg b/foto/views/images/st/feier/_DSC7787.jpg
new file mode 100755
index 0000000..0c6f3d9
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7787.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7788.jpg b/foto/views/images/st/feier/_DSC7788.jpg
new file mode 100755
index 0000000..7352ddd
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7788.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7789.jpg b/foto/views/images/st/feier/_DSC7789.jpg
new file mode 100755
index 0000000..5ac4a59
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7789.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7790.jpg b/foto/views/images/st/feier/_DSC7790.jpg
new file mode 100755
index 0000000..0f4d39b
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7790.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7791.jpg b/foto/views/images/st/feier/_DSC7791.jpg
new file mode 100755
index 0000000..84e791e
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7791.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7792.jpg b/foto/views/images/st/feier/_DSC7792.jpg
new file mode 100755
index 0000000..b536bdc
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7792.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7793.jpg b/foto/views/images/st/feier/_DSC7793.jpg
new file mode 100755
index 0000000..1b21fe0
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7793.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7794.jpg b/foto/views/images/st/feier/_DSC7794.jpg
new file mode 100755
index 0000000..fbc5aff
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7794.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7800.jpg b/foto/views/images/st/feier/_DSC7800.jpg
new file mode 100755
index 0000000..c70d372
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7800.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7806.jpg b/foto/views/images/st/feier/_DSC7806.jpg
new file mode 100755
index 0000000..1356acb
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7806.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7807.jpg b/foto/views/images/st/feier/_DSC7807.jpg
new file mode 100755
index 0000000..bcace50
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7807.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7810.jpg b/foto/views/images/st/feier/_DSC7810.jpg
new file mode 100755
index 0000000..1bde5d9
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7810.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7811.jpg b/foto/views/images/st/feier/_DSC7811.jpg
new file mode 100755
index 0000000..ff258d1
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7811.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7814.jpg b/foto/views/images/st/feier/_DSC7814.jpg
new file mode 100755
index 0000000..6e18b36
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7814.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7815.jpg b/foto/views/images/st/feier/_DSC7815.jpg
new file mode 100755
index 0000000..ec293cc
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7815.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7816.jpg b/foto/views/images/st/feier/_DSC7816.jpg
new file mode 100755
index 0000000..c37cfad
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7816.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7818.jpg b/foto/views/images/st/feier/_DSC7818.jpg
new file mode 100755
index 0000000..572b1b0
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7818.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7819.jpg b/foto/views/images/st/feier/_DSC7819.jpg
new file mode 100755
index 0000000..a680c58
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7819.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7821.jpg b/foto/views/images/st/feier/_DSC7821.jpg
new file mode 100755
index 0000000..352cf00
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7821.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7823.jpg b/foto/views/images/st/feier/_DSC7823.jpg
new file mode 100755
index 0000000..b302b45
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7823.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7825.jpg b/foto/views/images/st/feier/_DSC7825.jpg
new file mode 100755
index 0000000..2f92612
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7825.jpg differ
diff --git a/foto/views/images/st/feier/_DSC7829.jpg b/foto/views/images/st/feier/_DSC7829.jpg
new file mode 100755
index 0000000..558e0ae
Binary files /dev/null and b/foto/views/images/st/feier/_DSC7829.jpg differ
diff --git a/foto/views/images/st/feier/_S91000.jpg b/foto/views/images/st/feier/_S91000.jpg
new file mode 100755
index 0000000..fc998e7
Binary files /dev/null and b/foto/views/images/st/feier/_S91000.jpg differ
diff --git a/foto/views/images/st/fotosession/PE_DSC7560_bearbeitet-1.jpg b/foto/views/images/st/fotosession/PE_DSC7560_bearbeitet-1.jpg
new file mode 100755
index 0000000..979a748
Binary files /dev/null and b/foto/views/images/st/fotosession/PE_DSC7560_bearbeitet-1.jpg differ
diff --git a/foto/views/images/st/fotosession/PE_DSC7777_1.jpg b/foto/views/images/st/fotosession/PE_DSC7777_1.jpg
new file mode 100755
index 0000000..ccbb494
Binary files /dev/null and b/foto/views/images/st/fotosession/PE_DSC7777_1.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7477.jpg b/foto/views/images/st/fotosession/_DSC7477.jpg
new file mode 100755
index 0000000..88113d3
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7477.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7486.jpg b/foto/views/images/st/fotosession/_DSC7486.jpg
new file mode 100755
index 0000000..d798d84
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7486.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7490.jpg b/foto/views/images/st/fotosession/_DSC7490.jpg
new file mode 100755
index 0000000..7531d62
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7490.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7490_1.jpg b/foto/views/images/st/fotosession/_DSC7490_1.jpg
new file mode 100755
index 0000000..2b96db7
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7490_1.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7491.jpg b/foto/views/images/st/fotosession/_DSC7491.jpg
new file mode 100755
index 0000000..66f6b6d
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7491.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7492.jpg b/foto/views/images/st/fotosession/_DSC7492.jpg
new file mode 100755
index 0000000..6c1a6e1
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7492.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7494.jpg b/foto/views/images/st/fotosession/_DSC7494.jpg
new file mode 100755
index 0000000..61680c5
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7494.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7497.jpg b/foto/views/images/st/fotosession/_DSC7497.jpg
new file mode 100755
index 0000000..510fc7f
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7497.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7498.jpg b/foto/views/images/st/fotosession/_DSC7498.jpg
new file mode 100755
index 0000000..478c01b
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7498.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7499.jpg b/foto/views/images/st/fotosession/_DSC7499.jpg
new file mode 100755
index 0000000..41a3020
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7499.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7503.jpg b/foto/views/images/st/fotosession/_DSC7503.jpg
new file mode 100755
index 0000000..755dfcc
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7503.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7505.jpg b/foto/views/images/st/fotosession/_DSC7505.jpg
new file mode 100755
index 0000000..87960b8
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7505.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7507.jpg b/foto/views/images/st/fotosession/_DSC7507.jpg
new file mode 100755
index 0000000..5ec10ba
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7507.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7508.jpg b/foto/views/images/st/fotosession/_DSC7508.jpg
new file mode 100755
index 0000000..8909f15
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7508.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7510.jpg b/foto/views/images/st/fotosession/_DSC7510.jpg
new file mode 100755
index 0000000..978bc2d
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7510.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7556.jpg b/foto/views/images/st/fotosession/_DSC7556.jpg
new file mode 100755
index 0000000..48322f4
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7556.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7557.jpg b/foto/views/images/st/fotosession/_DSC7557.jpg
new file mode 100755
index 0000000..92271da
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7557.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7560.jpg b/foto/views/images/st/fotosession/_DSC7560.jpg
new file mode 100755
index 0000000..886c5cd
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7560.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7561.jpg b/foto/views/images/st/fotosession/_DSC7561.jpg
new file mode 100755
index 0000000..eb97b5b
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7561.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7563.jpg b/foto/views/images/st/fotosession/_DSC7563.jpg
new file mode 100755
index 0000000..42a3e3c
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7563.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7564.jpg b/foto/views/images/st/fotosession/_DSC7564.jpg
new file mode 100755
index 0000000..4906aae
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7564.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7565.jpg b/foto/views/images/st/fotosession/_DSC7565.jpg
new file mode 100755
index 0000000..6d90f8a
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7565.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7568.jpg b/foto/views/images/st/fotosession/_DSC7568.jpg
new file mode 100755
index 0000000..a11e5fd
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7568.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7581.jpg b/foto/views/images/st/fotosession/_DSC7581.jpg
new file mode 100755
index 0000000..4c0b442
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7581.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7583.jpg b/foto/views/images/st/fotosession/_DSC7583.jpg
new file mode 100755
index 0000000..0bab6c0
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7583.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7588.jpg b/foto/views/images/st/fotosession/_DSC7588.jpg
new file mode 100755
index 0000000..e9657dc
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7588.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7593.jpg b/foto/views/images/st/fotosession/_DSC7593.jpg
new file mode 100755
index 0000000..9d2b9f4
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7593.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7594.jpg b/foto/views/images/st/fotosession/_DSC7594.jpg
new file mode 100755
index 0000000..52fb635
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7594.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7595.jpg b/foto/views/images/st/fotosession/_DSC7595.jpg
new file mode 100755
index 0000000..14525af
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7595.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7597.jpg b/foto/views/images/st/fotosession/_DSC7597.jpg
new file mode 100755
index 0000000..6df8fac
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7597.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7599.jpg b/foto/views/images/st/fotosession/_DSC7599.jpg
new file mode 100755
index 0000000..054a9da
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7599.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7636.jpg b/foto/views/images/st/fotosession/_DSC7636.jpg
new file mode 100755
index 0000000..5369a6f
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7636.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7639.jpg b/foto/views/images/st/fotosession/_DSC7639.jpg
new file mode 100755
index 0000000..78b18d9
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7639.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7641.jpg b/foto/views/images/st/fotosession/_DSC7641.jpg
new file mode 100755
index 0000000..f5487ea
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7641.jpg differ
diff --git a/foto/views/images/st/fotosession/_DSC7644.jpg b/foto/views/images/st/fotosession/_DSC7644.jpg
new file mode 100755
index 0000000..81e432f
Binary files /dev/null and b/foto/views/images/st/fotosession/_DSC7644.jpg differ
diff --git a/foto/views/images/st/impressionen/_DSC7645.jpg b/foto/views/images/st/impressionen/_DSC7645.jpg
new file mode 100755
index 0000000..aee6912
Binary files /dev/null and b/foto/views/images/st/impressionen/_DSC7645.jpg differ
diff --git a/foto/views/images/st/impressionen/_DSC7647.jpg b/foto/views/images/st/impressionen/_DSC7647.jpg
new file mode 100755
index 0000000..b27320d
Binary files /dev/null and b/foto/views/images/st/impressionen/_DSC7647.jpg differ
diff --git a/foto/views/images/st/impressionen/_DSC7648.jpg b/foto/views/images/st/impressionen/_DSC7648.jpg
new file mode 100755
index 0000000..37b543c
Binary files /dev/null and b/foto/views/images/st/impressionen/_DSC7648.jpg differ
diff --git a/foto/views/images/st/impressionen/_DSC7652.jpg b/foto/views/images/st/impressionen/_DSC7652.jpg
new file mode 100755
index 0000000..7e48307
Binary files /dev/null and b/foto/views/images/st/impressionen/_DSC7652.jpg differ
diff --git a/foto/views/images/st/impressionen/_DSC7654.jpg b/foto/views/images/st/impressionen/_DSC7654.jpg
new file mode 100755
index 0000000..4a55596
Binary files /dev/null and b/foto/views/images/st/impressionen/_DSC7654.jpg differ
diff --git a/foto/views/images/st/impressionen/_DSC7656.jpg b/foto/views/images/st/impressionen/_DSC7656.jpg
new file mode 100755
index 0000000..1192b98
Binary files /dev/null and b/foto/views/images/st/impressionen/_DSC7656.jpg differ
diff --git a/foto/views/images/st/impressionen/_DSC7657.jpg b/foto/views/images/st/impressionen/_DSC7657.jpg
new file mode 100755
index 0000000..90985bd
Binary files /dev/null and b/foto/views/images/st/impressionen/_DSC7657.jpg differ
diff --git a/foto/views/images/st/portrait/Ich_will.jpg b/foto/views/images/st/portrait/Ich_will.jpg
new file mode 100755
index 0000000..e2e5453
Binary files /dev/null and b/foto/views/images/st/portrait/Ich_will.jpg differ
diff --git a/foto/views/images/st/portrait/PE_DSC7539_bearbeitet-1.jpg b/foto/views/images/st/portrait/PE_DSC7539_bearbeitet-1.jpg
new file mode 100755
index 0000000..cbc9f1d
Binary files /dev/null and b/foto/views/images/st/portrait/PE_DSC7539_bearbeitet-1.jpg differ
diff --git a/foto/views/images/st/portrait/PM_DSC7533_1.jpg b/foto/views/images/st/portrait/PM_DSC7533_1.jpg
new file mode 100755
index 0000000..bcbc99f
Binary files /dev/null and b/foto/views/images/st/portrait/PM_DSC7533_1.jpg differ
diff --git a/foto/views/images/st/portrait/PM_DSC7551.jpg b/foto/views/images/st/portrait/PM_DSC7551.jpg
new file mode 100755
index 0000000..1a5b1f8
Binary files /dev/null and b/foto/views/images/st/portrait/PM_DSC7551.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7520.jpg b/foto/views/images/st/portrait/_DSC7520.jpg
new file mode 100755
index 0000000..bd5f526
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7520.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7522.jpg b/foto/views/images/st/portrait/_DSC7522.jpg
new file mode 100755
index 0000000..5369fd7
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7522.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7523.jpg b/foto/views/images/st/portrait/_DSC7523.jpg
new file mode 100755
index 0000000..63f900a
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7523.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7524.jpg b/foto/views/images/st/portrait/_DSC7524.jpg
new file mode 100755
index 0000000..cbc3022
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7524.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7525.jpg b/foto/views/images/st/portrait/_DSC7525.jpg
new file mode 100755
index 0000000..f512632
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7525.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7527.jpg b/foto/views/images/st/portrait/_DSC7527.jpg
new file mode 100755
index 0000000..b320793
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7527.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7528.jpg b/foto/views/images/st/portrait/_DSC7528.jpg
new file mode 100755
index 0000000..ee6e788
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7528.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7528_1.jpg b/foto/views/images/st/portrait/_DSC7528_1.jpg
new file mode 100755
index 0000000..8194a19
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7528_1.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7529.jpg b/foto/views/images/st/portrait/_DSC7529.jpg
new file mode 100755
index 0000000..3513bcb
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7529.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7530.jpg b/foto/views/images/st/portrait/_DSC7530.jpg
new file mode 100755
index 0000000..8c8c7b1
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7530.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7531.jpg b/foto/views/images/st/portrait/_DSC7531.jpg
new file mode 100755
index 0000000..3213864
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7531.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7532.jpg b/foto/views/images/st/portrait/_DSC7532.jpg
new file mode 100755
index 0000000..689291e
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7532.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7533.jpg b/foto/views/images/st/portrait/_DSC7533.jpg
new file mode 100755
index 0000000..c065098
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7533.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7534.jpg b/foto/views/images/st/portrait/_DSC7534.jpg
new file mode 100755
index 0000000..d6d1816
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7534.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7537.jpg b/foto/views/images/st/portrait/_DSC7537.jpg
new file mode 100755
index 0000000..a12e379
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7537.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7538.jpg b/foto/views/images/st/portrait/_DSC7538.jpg
new file mode 100755
index 0000000..fced566
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7538.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7539.jpg b/foto/views/images/st/portrait/_DSC7539.jpg
new file mode 100755
index 0000000..a55a8bc
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7539.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7542.jpg b/foto/views/images/st/portrait/_DSC7542.jpg
new file mode 100755
index 0000000..8a796c9
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7542.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7543.jpg b/foto/views/images/st/portrait/_DSC7543.jpg
new file mode 100755
index 0000000..84da864
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7543.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7546.jpg b/foto/views/images/st/portrait/_DSC7546.jpg
new file mode 100755
index 0000000..d88545c
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7546.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7547.jpg b/foto/views/images/st/portrait/_DSC7547.jpg
new file mode 100755
index 0000000..9c52584
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7547.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7549.jpg b/foto/views/images/st/portrait/_DSC7549.jpg
new file mode 100755
index 0000000..a31e811
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7549.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7550.jpg b/foto/views/images/st/portrait/_DSC7550.jpg
new file mode 100755
index 0000000..fe0f1fc
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7550.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7551.jpg b/foto/views/images/st/portrait/_DSC7551.jpg
new file mode 100755
index 0000000..4d48963
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7551.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7553.jpg b/foto/views/images/st/portrait/_DSC7553.jpg
new file mode 100755
index 0000000..4715335
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7553.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7554.jpg b/foto/views/images/st/portrait/_DSC7554.jpg
new file mode 100755
index 0000000..dd0be0e
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7554.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7554_1.jpg b/foto/views/images/st/portrait/_DSC7554_1.jpg
new file mode 100755
index 0000000..873218c
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7554_1.jpg differ
diff --git a/foto/views/images/st/portrait/_DSC7554_final_bearbeitet-1.jpg b/foto/views/images/st/portrait/_DSC7554_final_bearbeitet-1.jpg
new file mode 100755
index 0000000..b6b055c
Binary files /dev/null and b/foto/views/images/st/portrait/_DSC7554_final_bearbeitet-1.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7371.jpg b/foto/views/images/st/trauung/_DSC7371.jpg
new file mode 100755
index 0000000..69d7ae8
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7371.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7372.jpg b/foto/views/images/st/trauung/_DSC7372.jpg
new file mode 100755
index 0000000..63957a4
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7372.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7375.jpg b/foto/views/images/st/trauung/_DSC7375.jpg
new file mode 100755
index 0000000..434a614
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7375.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7376.jpg b/foto/views/images/st/trauung/_DSC7376.jpg
new file mode 100755
index 0000000..ebc13e5
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7376.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7381.jpg b/foto/views/images/st/trauung/_DSC7381.jpg
new file mode 100755
index 0000000..2e72bce
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7381.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7384.jpg b/foto/views/images/st/trauung/_DSC7384.jpg
new file mode 100755
index 0000000..4cac414
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7384.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7385.jpg b/foto/views/images/st/trauung/_DSC7385.jpg
new file mode 100755
index 0000000..4466051
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7385.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7387.jpg b/foto/views/images/st/trauung/_DSC7387.jpg
new file mode 100755
index 0000000..4588471
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7387.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7387_1.jpg b/foto/views/images/st/trauung/_DSC7387_1.jpg
new file mode 100755
index 0000000..04bce48
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7387_1.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7389.jpg b/foto/views/images/st/trauung/_DSC7389.jpg
new file mode 100755
index 0000000..0deb208
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7389.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7391.jpg b/foto/views/images/st/trauung/_DSC7391.jpg
new file mode 100755
index 0000000..07a70f8
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7391.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7392.jpg b/foto/views/images/st/trauung/_DSC7392.jpg
new file mode 100755
index 0000000..745fc34
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7392.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7393.jpg b/foto/views/images/st/trauung/_DSC7393.jpg
new file mode 100755
index 0000000..eb715b0
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7393.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7394.jpg b/foto/views/images/st/trauung/_DSC7394.jpg
new file mode 100755
index 0000000..d7f436d
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7394.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7396.jpg b/foto/views/images/st/trauung/_DSC7396.jpg
new file mode 100755
index 0000000..6bf1435
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7396.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7397.jpg b/foto/views/images/st/trauung/_DSC7397.jpg
new file mode 100755
index 0000000..904f649
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7397.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7398.jpg b/foto/views/images/st/trauung/_DSC7398.jpg
new file mode 100755
index 0000000..f1321d1
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7398.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7400.jpg b/foto/views/images/st/trauung/_DSC7400.jpg
new file mode 100755
index 0000000..9173eb3
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7400.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7401.jpg b/foto/views/images/st/trauung/_DSC7401.jpg
new file mode 100755
index 0000000..3d33b8c
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7401.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7402.jpg b/foto/views/images/st/trauung/_DSC7402.jpg
new file mode 100755
index 0000000..f671d4a
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7402.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7403.jpg b/foto/views/images/st/trauung/_DSC7403.jpg
new file mode 100755
index 0000000..17bf4d2
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7403.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7414_0.jpg b/foto/views/images/st/trauung/_DSC7414_0.jpg
new file mode 100755
index 0000000..61f9ff3
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7414_0.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7417.jpg b/foto/views/images/st/trauung/_DSC7417.jpg
new file mode 100755
index 0000000..2d88982
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7417.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7423.jpg b/foto/views/images/st/trauung/_DSC7423.jpg
new file mode 100755
index 0000000..0446214
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7423.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7425.jpg b/foto/views/images/st/trauung/_DSC7425.jpg
new file mode 100755
index 0000000..f023a5b
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7425.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7426.jpg b/foto/views/images/st/trauung/_DSC7426.jpg
new file mode 100755
index 0000000..3d28eb6
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7426.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7427.jpg b/foto/views/images/st/trauung/_DSC7427.jpg
new file mode 100755
index 0000000..b9a5c5c
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7427.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7430.jpg b/foto/views/images/st/trauung/_DSC7430.jpg
new file mode 100755
index 0000000..773e8d7
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7430.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7432.jpg b/foto/views/images/st/trauung/_DSC7432.jpg
new file mode 100755
index 0000000..a2edb2e
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7432.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7433.jpg b/foto/views/images/st/trauung/_DSC7433.jpg
new file mode 100755
index 0000000..628a160
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7433.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7434.jpg b/foto/views/images/st/trauung/_DSC7434.jpg
new file mode 100755
index 0000000..810f23c
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7434.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7439.jpg b/foto/views/images/st/trauung/_DSC7439.jpg
new file mode 100755
index 0000000..f589c38
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7439.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7441.jpg b/foto/views/images/st/trauung/_DSC7441.jpg
new file mode 100755
index 0000000..eceff6a
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7441.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7443.jpg b/foto/views/images/st/trauung/_DSC7443.jpg
new file mode 100755
index 0000000..48218a3
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7443.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7444.jpg b/foto/views/images/st/trauung/_DSC7444.jpg
new file mode 100755
index 0000000..58ade45
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7444.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7445.jpg b/foto/views/images/st/trauung/_DSC7445.jpg
new file mode 100755
index 0000000..a861442
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7445.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7446.jpg b/foto/views/images/st/trauung/_DSC7446.jpg
new file mode 100755
index 0000000..9cd9233
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7446.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7447.jpg b/foto/views/images/st/trauung/_DSC7447.jpg
new file mode 100755
index 0000000..355c5dc
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7447.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7455.jpg b/foto/views/images/st/trauung/_DSC7455.jpg
new file mode 100755
index 0000000..810a2f3
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7455.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7461.jpg b/foto/views/images/st/trauung/_DSC7461.jpg
new file mode 100755
index 0000000..f122013
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7461.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7466.jpg b/foto/views/images/st/trauung/_DSC7466.jpg
new file mode 100755
index 0000000..9723692
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7466.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7472.jpg b/foto/views/images/st/trauung/_DSC7472.jpg
new file mode 100755
index 0000000..ed333d2
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7472.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7473.jpg b/foto/views/images/st/trauung/_DSC7473.jpg
new file mode 100755
index 0000000..4feaf09
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7473.jpg differ
diff --git a/foto/views/images/st/trauung/_DSC7600.jpg b/foto/views/images/st/trauung/_DSC7600.jpg
new file mode 100755
index 0000000..3b1a409
Binary files /dev/null and b/foto/views/images/st/trauung/_DSC7600.jpg differ
diff --git a/foto/views/images/test/ella/DSC_0487.jpg b/foto/views/images/test/ella/DSC_0487.jpg
new file mode 100755
index 0000000..9fdd751
Binary files /dev/null and b/foto/views/images/test/ella/DSC_0487.jpg differ
diff --git a/foto/views/images/test/gruppe/DSC_1392.jpg b/foto/views/images/test/gruppe/DSC_1392.jpg
new file mode 100755
index 0000000..e3d8483
Binary files /dev/null and b/foto/views/images/test/gruppe/DSC_1392.jpg differ
diff --git a/foto/views/images/test/portrait/AZ6_1464.jpg b/foto/views/images/test/portrait/AZ6_1464.jpg
new file mode 100755
index 0000000..0f2920a
Binary files /dev/null and b/foto/views/images/test/portrait/AZ6_1464.jpg differ
diff --git a/foto/views/images/test/portrait/DSC_1119.jpg b/foto/views/images/test/portrait/DSC_1119.jpg
new file mode 100755
index 0000000..50a86d3
Binary files /dev/null and b/foto/views/images/test/portrait/DSC_1119.jpg differ
diff --git a/foto/views/images/test/portrait/DSC_1125.jpg b/foto/views/images/test/portrait/DSC_1125.jpg
new file mode 100755
index 0000000..22102f3
Binary files /dev/null and b/foto/views/images/test/portrait/DSC_1125.jpg differ
diff --git a/foto/views/images/test/portrait/DSC_1416.jpg b/foto/views/images/test/portrait/DSC_1416.jpg
new file mode 100755
index 0000000..2445649
Binary files /dev/null and b/foto/views/images/test/portrait/DSC_1416.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0008.jpg b/foto/views/imgEyeC/DSC_0008.jpg
new file mode 100755
index 0000000..d2590f7
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0008.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0010.jpg b/foto/views/imgEyeC/DSC_0010.jpg
new file mode 100755
index 0000000..8d19cb9
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0010.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0036.jpg b/foto/views/imgEyeC/DSC_0036.jpg
new file mode 100755
index 0000000..a30df43
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0036.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0172.jpg b/foto/views/imgEyeC/DSC_0172.jpg
new file mode 100755
index 0000000..e671023
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0172.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0226.jpg b/foto/views/imgEyeC/DSC_0226.jpg
new file mode 100755
index 0000000..53cb473
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0226.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0343.jpg b/foto/views/imgEyeC/DSC_0343.jpg
new file mode 100755
index 0000000..8b05572
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0343.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0927.jpg b/foto/views/imgEyeC/DSC_0927.jpg
new file mode 100755
index 0000000..f959e44
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0927.jpg differ
diff --git a/foto/views/imgEyeC/DSC_0936.jpg b/foto/views/imgEyeC/DSC_0936.jpg
new file mode 100755
index 0000000..9fe86c6
Binary files /dev/null and b/foto/views/imgEyeC/DSC_0936.jpg differ
diff --git a/foto/views/imgLogo/ich.jpg b/foto/views/imgLogo/ich.jpg
new file mode 100755
index 0000000..4124793
Binary files /dev/null and b/foto/views/imgLogo/ich.jpg differ
diff --git a/foto/views/imgLogo/logo.jpg b/foto/views/imgLogo/logo.jpg
new file mode 100755
index 0000000..d069362
Binary files /dev/null and b/foto/views/imgLogo/logo.jpg differ
diff --git a/foto/views/inc/carussel_body.php b/foto/views/inc/carussel_body.php
new file mode 100755
index 0000000..78f42ca
--- /dev/null
+++ b/foto/views/inc/carussel_body.php
@@ -0,0 +1,35 @@
+
+
+
+
+
+
"
+ alt="hbc fotos" style="width:100%;">
+
= ($anz_themen[$m+1])) { // Themenzähler bginnt bei 0
+ $m = $m+1;
+ }
+ } ?>
+
+
❮
+
❯
+
+
+
";?>
+
+
"
+ onclick="currentSlide()" alt="hbc fotos" style="width:100%;">
+
+
+
diff --git a/foto/views/inc/foto_carussel.inc.php b/foto/views/inc/foto_carussel.inc.php
new file mode 100755
index 0000000..b7344aa
--- /dev/null
+++ b/foto/views/inc/foto_carussel.inc.php
@@ -0,0 +1,101 @@
+
+Thema: ".$bild_thema; echo "";
+ $ordner = $base_ordner.$thema."/".$bild_thema;
+
+
+ //$ordner = $base_ordner.$thema."/".$bild_thema; //echo "
+
+
+
+
+
+
+
+
";} else { echo "item\">";}?>
+
"
+ alt="hbc fotos" style="width:100%;">
+
+
+
hb fotos
+
+
+
= ($anz_themen[$m+1])) { // Themenzähler bginnt bei 0
+ $m = $m+1;
+ }
+ //$b++;
+ } ?>
+
+
+
+
+ Previous
+
+
+
+ Next
+
+
+
+
+
+
+
+
diff --git a/foto/views/inc/foto_carussel_vorschau.inc.php b/foto/views/inc/foto_carussel_vorschau.inc.php
new file mode 100755
index 0000000..dfd3562
--- /dev/null
+++ b/foto/views/inc/foto_carussel_vorschau.inc.php
@@ -0,0 +1,73 @@
+
+Thema: ".$bild_thema; echo "";
+ $ordner = $base_ordner.$thema."/".$bild_thema;
+
+ //$ordner = $base_ordner.$thema."/".$bild_thema; //echo "
+
+
+
+
+
+
+
+
diff --git a/foto/views/inc/foto_grid.inc.php b/foto/views/inc/foto_grid.inc.php
new file mode 100755
index 0000000..8dd3991
--- /dev/null
+++ b/foto/views/inc/foto_grid.inc.php
@@ -0,0 +1,162 @@
+
+
+
+ Es werden ".$n." Bilder pro Spalte angezeigt (auswahl = 4) ";
+
+ $rest = count($alle) % 4; // Rest
+ $anz_themen[] = $i + $rest; // tats. Anzahl Bilder
+ $unter_thema[] = "Ende"; // verhinder Fehlermeldung
+
+ $l = 1; // 1. Bold
+ $anz = $n; // Anzahl Bilder pro Spalte => $anz / 4
+ $i = 1; //1. Bild
+ $m = 0; //1. Matrix-Eintrag
+ $g = 0; // Gesamtzahl Bilder
+ echo "";
+ while ($g <= $anz_images) {
+ for ($i = 1; $i<=4; $i++) {
+ echo "
";
+ for ($j = $l; $j <= $n; $j++) { // Anzahl pro Spalte
+ if ($g <= $anz_images){ ?>
+
"
+ alt="hbc fotos" style="width:100%;"> ";
+ $l = $n; // weitere 4 Bilder pro Spalte
+ $n = $n+$anz; // nächste Spalte mit n Bildern
+ }
+ }
+ echo "
";
+?>
+
+
+
+
diff --git a/foto/views/inc/foto_nav.php b/foto/views/inc/foto_nav.php
new file mode 100755
index 0000000..4155a51
--- /dev/null
+++ b/foto/views/inc/foto_nav.php
@@ -0,0 +1,53 @@
+
+
+
+
+
diff --git a/foto/views/inc/foto_portfolio.inc.php b/foto/views/inc/foto_portfolio.inc.php
new file mode 100755
index 0000000..019c2e4
--- /dev/null
+++ b/foto/views/inc/foto_portfolio.inc.php
@@ -0,0 +1,78 @@
+
+
+
+
+
Thema ".$thema.": ";?>
+
+ Show all
+ ";
+ } ?>
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/inc/foto_portfolio_old.inc.php b/foto/views/inc/foto_portfolio_old.inc.php
new file mode 100755
index 0000000..2d01791
--- /dev/null
+++ b/foto/views/inc/foto_portfolio_old.inc.php
@@ -0,0 +1,77 @@
+
+
+
+
+
Thema ".$thema.": ";?>
+
+ Show all ".$bild_thema."";
+ } ?>
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/js/bildwechsel.inc.js b/foto/views/js/bildwechsel.inc.js
new file mode 100755
index 0000000..8fa2164
--- /dev/null
+++ b/foto/views/js/bildwechsel.inc.js
@@ -0,0 +1,16 @@
+
+
diff --git a/foto/views/js/filter_1.inc.js b/foto/views/js/filter_1.inc.js
new file mode 100755
index 0000000..ddf3e5a
--- /dev/null
+++ b/foto/views/js/filter_1.inc.js
@@ -0,0 +1,47 @@
+
+<
+
+
diff --git a/foto/views/js/gallery.js b/foto/views/js/gallery.js
new file mode 100755
index 0000000..5127b28
--- /dev/null
+++ b/foto/views/js/gallery.js
@@ -0,0 +1,30 @@
+
diff --git a/foto/views/layout/footer.php b/foto/views/layout/footer.php
new file mode 100755
index 0000000..cbb9c8f
--- /dev/null
+++ b/foto/views/layout/footer.php
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/foto/views/layout/header.php b/foto/views/layout/header.php
new file mode 100755
index 0000000..db3ec31
--- /dev/null
+++ b/foto/views/layout/header.php
@@ -0,0 +1,40 @@
+
+
+
+
harald börgmann homepages
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/layout/header_drop.php b/foto/views/layout/header_drop.php
new file mode 100755
index 0000000..759b691
--- /dev/null
+++ b/foto/views/layout/header_drop.php
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/layout/header_fotos.php b/foto/views/layout/header_fotos.php
new file mode 100755
index 0000000..b671d34
--- /dev/null
+++ b/foto/views/layout/header_fotos.php
@@ -0,0 +1,59 @@
+
+
+
+
Fotografie und mehr
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/foto/views/layout/navigation.php b/foto/views/layout/navigation.php
new file mode 100755
index 0000000..a0618cc
--- /dev/null
+++ b/foto/views/layout/navigation.php
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
diff --git a/foto/views/user/dashboard.php b/foto/views/user/dashboard.php
new file mode 100755
index 0000000..4562dc4
--- /dev/null
+++ b/foto/views/user/dashboard.php
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
Sie wurden erfolgreich eingeloggt!
+
+
+
diff --git a/foto/views/user/homepages.php b/foto/views/user/homepages.php
new file mode 100755
index 0000000..efb3a57
--- /dev/null
+++ b/foto/views/user/homepages.php
@@ -0,0 +1,25 @@
+
+
+
Startseite
+
+
+
+
+
+
+
diff --git a/foto/views/user/impressum.php b/foto/views/user/impressum.php
new file mode 100755
index 0000000..fe1ce02
--- /dev/null
+++ b/foto/views/user/impressum.php
@@ -0,0 +1,6 @@
+";
+header("Location: ./../../../public/index.php/impressum");
+die();
+
+?>
diff --git a/foto/views/user/index.php b/foto/views/user/index.php
new file mode 100755
index 0000000..5ab7254
--- /dev/null
+++ b/foto/views/user/index.php
@@ -0,0 +1,56 @@
+".$str_path."";
+$str_path = "/home/foto/views/imgEyeC/DSC_0008.jpg";
+//echo $str_path."";
+//echo __DIR__ . "";
+//die();
+ ?>
+
+
+
+
+
+
+
+ Fotografie und mehr ...
+
+
+
+
+
+
+
Die Idee zu dieser Foto-Homepage ist mir gekommen, als mich immer wieder Leute fragten,
+ wann und wo sie denn mal Bilder von mir sehen könnten.
+ Außerdem hat es mich gereizt, eine eigene Foto-Homepage zu erstellen -
+ also habe ich mich mit den Werkzeugen vertraut gemacht, einen PHP-Kurs absolviert und
+ erste Entwürfe gestartet. Noch ist nicht alles komplett fertig,
+ aber erste Seiten sind erstellt.
+
Auf der Seite About me erfahren Sie
+ etwas persönliches über mich, unter anderem wie ich zum Fotografieren gekommen bin.
+ Dort stelle ich auch meine heutige Ausrüstung vor.
+ Außerdem finden Sie hier ein Formular zur Kontaktaufnahme vor - dieses Formular ist momentan deaktiviert,
+ weil von meine Seite gehackt wurde und Spam E-Mails versendet wurden.
+
Im Portfolio erhalten Sie einen Überblick zu verschiedenen Themen
+ und ausgesuchten Fotos. Eine Auswahl der besten Fotos finden Sie unter
+ Auswahl .
+
+
Meiner ursprünglichen Heimat Ostfriesland und dem
+ Rhein / Ruhrgebiet habe ich jeweils eine Seite gewidmet.
+ Hier erwarten Sie Landschaftsbilder und Impressionen aus Ostfriesland und Fotos zur Industriegeschichte aus dem Rhein/Ruhrgebiet.
+
Genießen Sie die Zeit während des virtuellen Spaziergangs.
+
Viel Vergnügen dabei wünscht Ihnen Harald Börgmann
+
+
+
+
+
+
+
diff --git a/foto/views/user/login.php b/foto/views/user/login.php
new file mode 100755
index 0000000..e125b56
--- /dev/null
+++ b/foto/views/user/login.php
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+