webdesign-sopelnik 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_layouts/default.html +109 -0
- data/_layouts/home.html +296 -0
- data/assets/css/styles.scss +6 -0
- data/assets/cv.pdf +0 -0
- data/assets/fonts/fa-brands-400.woff +0 -0
- data/assets/fonts/fa-brands-400.woff2 +0 -0
- data/assets/fonts/fa-regular-400.woff +0 -0
- data/assets/fonts/fa-regular-400.woff2 +0 -0
- data/assets/fonts/fa-solid-900.woff +0 -0
- data/assets/fonts/fa-solid-900.woff2 +0 -0
- data/assets/fonts/montserrat-v12-latin-300.woff +0 -0
- data/assets/fonts/montserrat-v12-latin-300.woff2 +0 -0
- data/assets/fonts/montserrat-v12-latin-600.woff +0 -0
- data/assets/fonts/montserrat-v12-latin-600.woff2 +0 -0
- data/assets/img/c59c1141913253.57b9af00e8120.jpg +0 -0
- data/assets/img/me-maybe.jpg +0 -0
- data/assets/img/me.jpg +0 -0
- data/assets/img/me2.jpg +0 -0
- data/assets/img/me3.jpg +0 -0
- data/assets/img/meOld.jpg +0 -0
- data/assets/img/portfolio-boxzoom.jpg +0 -0
- data/assets/img/portfolio-cementus.jpg +0 -0
- data/assets/img/portfolio-cementus.png +0 -0
- data/assets/img/portfolio-cementus.png.jpg +0 -0
- data/assets/img/portfolio-elektroschneider.jpg +0 -0
- data/assets/img/portfolio-framename.jpg +0 -0
- data/assets/img/portfolio-mikisfahrschule.jpg +0 -0
- data/assets/img/portfolio-wedding.png +0 -0
- data/assets/img/ws-bg.jpg +0 -0
- data/assets/img/ws-bg.webp +0 -0
- data/assets/js/main.js +76 -0
- data/assets/js/main.min.js +1 -0
- data/assets/portfolio.pdf +0 -0
- metadata +78 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 735d1e2a07a5fb79831b137b3a3f81dfb16b6447ebd3dcb5639f13e550425edf
|
|
4
|
+
data.tar.gz: cfa2f7f97a7483abcf57551430aaba57be630e6388cec9a3ce4dec11bc9d0c34
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 5d887d1eff463a90bb94caf420b3ce7b429481cafbfdc59400658367b4e8ab8d4895d71453f5ad57cdbcb1c06ac8da562de1ceacaf3f0926546fc60a2db2b4aa
|
|
7
|
+
data.tar.gz: 6bd330ad827ca7bd75e112617df71077b04e580c2e5e516b2f5936322b65d0a46c745e9274ee8a336cd1ee1e284d2ed302ae36bf2421cbd5eb03aa3ce9999c60
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Artur Sopelnik
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# webdesign-sopelnik
|
|
2
|
+
|
|
3
|
+
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
|
|
4
|
+
|
|
5
|
+
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
|
6
|
+
|
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
Add this line to your Jekyll site's `Gemfile`:
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
gem "webdesign-sopelnik"
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
19
|
+
|
|
20
|
+
```yaml
|
|
21
|
+
theme: webdesign-sopelnik
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
And then execute:
|
|
25
|
+
|
|
26
|
+
$ bundle
|
|
27
|
+
|
|
28
|
+
Or install it yourself as:
|
|
29
|
+
|
|
30
|
+
$ gem install webdesign-sopelnik
|
|
31
|
+
|
|
32
|
+
## Usage
|
|
33
|
+
|
|
34
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
|
35
|
+
|
|
36
|
+
## Contributing
|
|
37
|
+
|
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
39
|
+
|
|
40
|
+
## Development
|
|
41
|
+
|
|
42
|
+
To set up your environment to develop this theme, run `bundle install`.
|
|
43
|
+
|
|
44
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
|
45
|
+
|
|
46
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
|
47
|
+
To add a custom directory to your theme-gem, please edit the regexp in `webdesign-sopelnik.gemspec` accordingly.
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
52
|
+
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="de">
|
|
3
|
+
<head>
|
|
4
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126210788-1"></script>
|
|
5
|
+
<script src="https://www.youtube.com/iframe_api"></script>
|
|
6
|
+
<script>
|
|
7
|
+
window.dataLayer = window.dataLayer || [];
|
|
8
|
+
|
|
9
|
+
function gtag() {
|
|
10
|
+
dataLayer.push(arguments);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
gtag('js', new Date());
|
|
14
|
+
|
|
15
|
+
gtag('config', 'UA-126210788-1', {'anonymize_ip': true});
|
|
16
|
+
</script>
|
|
17
|
+
<meta charset="utf-8">
|
|
18
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
19
|
+
<title> {{ page.title }}</title>
|
|
20
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
21
|
+
<meta name="author" content="Artur Sopelnik">
|
|
22
|
+
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
23
|
+
<script src="/assets/js/main.min.js"></script>
|
|
24
|
+
</head>
|
|
25
|
+
<body>
|
|
26
|
+
|
|
27
|
+
<header class="video-head">
|
|
28
|
+
<div class="video-head__stage">
|
|
29
|
+
<div class="video-head__logo">
|
|
30
|
+
<div class="container">
|
|
31
|
+
<a href="{{ site.url }}" class="video-head__logo-link">
|
|
32
|
+
<svg class="video-head__logo-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 228.31 43.8">
|
|
33
|
+
<path fill="#FFFFFF" d="M135.87,0a.43.43,0,0,1,.47.51l-2.11,18.63a.45.45,0,0,1-.51.47h-2.4a.51.51,0,0,1-.54-.44L128.23,8.09l-2.58,11.1a.51.51,0,0,1-.54.42h-2.45a.45.45,0,0,1-.51-.47l-2-18.63A.43.43,0,0,1,120.6,0h2.33a.48.48,0,0,1,.52.47l1,11.47h.13L127,.44a.52.52,0,0,1,.54-.44H129a.51.51,0,0,1,.54.44l2.4,11.5H132L133,.47a.48.48,0,0,1,.52-.47Z"/>
|
|
34
|
+
<path fill="#FFFFFF" d="M148.57,2.84c0,.25-.1.42-.39.42h-6.13v4.9h4.68a.37.37,0,0,1,.4.42V11a.37.37,0,0,1-.4.41h-4.68v5h6.13c.29,0,.39.13.39.4v2.45a.34.34,0,0,1-.39.39h-9a.36.36,0,0,1-.37-.39V.39a.36.36,0,0,1,.37-.39h9a.34.34,0,0,1,.39.39Z"/>
|
|
35
|
+
<path fill="#FFFFFF" d="M160.85,8a1.77,1.77,0,0,1-1.54,1.74v.05a1.77,1.77,0,0,1,1.54,1.74v4.51c0,2.3-1.25,3.53-3.55,3.53h-5.89a.36.36,0,0,1-.39-.39V.39a.35.35,0,0,1,.39-.39h5.89c2.3,0,3.55,1.23,3.55,3.53Zm-3.26-3.82a.87.87,0,0,0-1-1h-2.23V8.19h2.23a.88.88,0,0,0,1-1Zm0,8.18a.87.87,0,0,0-1-1h-2.23v5h2.23a.87.87,0,0,0,1-1Z"/>
|
|
36
|
+
<path fill="#FFFFFF" d="M163.3.39a.35.35,0,0,1,.39-.39h5.89c2.3,0,3.53,1.25,3.53,3.55V16.08a3.16,3.16,0,0,1-3.53,3.53h-5.89a.34.34,0,0,1-.39-.39Zm5.59,16a.87.87,0,0,0,1-1V4.24a.88.88,0,0,0-1-1h-2.25V16.37Z"/>
|
|
37
|
+
<path fill="#FFFFFF" d="M185.34,2.84c0,.25-.1.42-.39.42h-6.13v4.9h4.68a.37.37,0,0,1,.39.42V11a.36.36,0,0,1-.39.41h-4.68v5H185c.29,0,.39.13.39.4v2.45a.34.34,0,0,1-.39.39h-9a.36.36,0,0,1-.37-.39V.39a.36.36,0,0,1,.37-.39h9a.34.34,0,0,1,.39.39Z"/>
|
|
38
|
+
<path fill="#FFFFFF" d="M193.33,0a3.16,3.16,0,0,1,3.53,3.53v2.6a.35.35,0,0,1-.39.39h-2.55a.36.36,0,0,1-.39-.39V4.22a.87.87,0,0,0-1-1h-1.17a.89.89,0,0,0-1,1V7.6l5.83,1.91a.9.9,0,0,1,.64.91v5.66a3.16,3.16,0,0,1-3.53,3.53h-2.75a3.17,3.17,0,0,1-3.53-3.53V13.51a.36.36,0,0,1,.4-.4H190c.27,0,.39.13.39.4v1.88a.88.88,0,0,0,1,1h1.17a.88.88,0,0,0,1-1V12.13l-5.81-1.91a.88.88,0,0,1-.67-.91V3.53A3.17,3.17,0,0,1,190.58,0Z"/>
|
|
39
|
+
<path fill="#FFFFFF" d="M202.25,0a.36.36,0,0,1,.39.39V19.22a.36.36,0,0,1-.39.39H199.7a.35.35,0,0,1-.39-.39V.39A.35.35,0,0,1,199.7,0Z"/>
|
|
40
|
+
<path fill="#FFFFFF" d="M205.09,3.53A3.16,3.16,0,0,1,208.62,0h3.24a3.17,3.17,0,0,1,3.53,3.53V6.08a.36.36,0,0,1-.39.39h-2.45a.36.36,0,0,1-.4-.39V4.22a.88.88,0,0,0-1-1h-1.76a.87.87,0,0,0-1,1V15.39a.87.87,0,0,0,1,1h1.76a.87.87,0,0,0,1-1V12.11h-1.27a.35.35,0,0,1-.39-.39V9.26a.34.34,0,0,1,.39-.39H215a.35.35,0,0,1,.39.39v6.82a3.17,3.17,0,0,1-3.53,3.53h-3.24a3.16,3.16,0,0,1-3.53-3.53Z"/>
|
|
41
|
+
<path fill="#FFFFFF" d="M227.91,0a.37.37,0,0,1,.4.39V19.22a.37.37,0,0,1-.4.39h-2.42a.42.42,0,0,1-.44-.32L221.3,8.82h-.13v10.4a.35.35,0,0,1-.39.39h-2.55a.36.36,0,0,1-.39-.39V.39a.36.36,0,0,1,.39-.39h2.43a.42.42,0,0,1,.44.32l3.73,10.42H225V.39a.36.36,0,0,1,.4-.39Z"/>
|
|
42
|
+
<path fill="#FFFFFF" d="M126.46,24.19c2.33,0,3.56,1.23,3.56,3.53v2.6a.34.34,0,0,1-.39.39h-2.57a.36.36,0,0,1-.4-.39V28.41a.87.87,0,0,0-1-1h-1.18a.89.89,0,0,0-1,1v3.38l5.88,1.91a.9.9,0,0,1,.64.91v5.66c0,2.31-1.23,3.53-3.56,3.53H123.7c-2.3,0-3.56-1.22-3.56-3.53V37.7a.35.35,0,0,1,.39-.39h2.57c.28,0,.4.12.4.39v1.89a.88.88,0,0,0,1,1h1.18a.87.87,0,0,0,1-1V36.33l-5.85-1.92a.86.86,0,0,1-.67-.9V27.72c0-2.3,1.26-3.53,3.56-3.53Z"/>
|
|
43
|
+
<path fill="#FFFFFF" d="M134.89,27.72c0-2.3,1.24-3.53,3.56-3.53h2.77c2.32,0,3.56,1.23,3.56,3.53V40.27c0,2.31-1.24,3.53-3.56,3.53h-2.77c-2.32,0-3.56-1.22-3.56-3.53Zm5.71,12.92a.88.88,0,0,0,1-1V28.34a.88.88,0,0,0-1-1h-1.43a.88.88,0,0,0-1,1V39.66a.88.88,0,0,0,1,1Z"/>
|
|
44
|
+
<path fill="#FFFFFF" d="M149.65,24.59a.37.37,0,0,1,.39-.4H156c2.33,0,3.56,1.23,3.56,3.53v6c0,2.28-1.23,3.53-3.56,3.53h-3v6.18a.36.36,0,0,1-.4.39H150a.36.36,0,0,1-.39-.39ZM155.18,34a.88.88,0,0,0,1-1V28.41a.87.87,0,0,0-1-1H153V34Z"/>
|
|
45
|
+
<path fill="#FFFFFF" d="M174.26,27c0,.24-.1.41-.39.41h-6.18v4.91h4.72a.36.36,0,0,1,.39.41V35.2a.37.37,0,0,1-.39.42h-4.72v5h6.18c.29,0,.39.12.39.39v2.45a.34.34,0,0,1-.39.39h-9.1a.36.36,0,0,1-.37-.39V24.59a.36.36,0,0,1,.37-.4h9.1c.29,0,.39.15.39.4Z"/>
|
|
46
|
+
<path fill="#FFFFFF" d="M182.49,40.57h5.88a.35.35,0,0,1,.4.39v2.45c0,.27-.13.39-.4.39h-8.84a.35.35,0,0,1-.4-.39V24.59a.37.37,0,0,1,.4-.4h2.57a.35.35,0,0,1,.39.4Z"/>
|
|
47
|
+
<path fill="#FFFFFF" d="M203.79,24.19a.37.37,0,0,1,.4.4V43.41a.37.37,0,0,1-.4.39h-2.44a.43.43,0,0,1-.45-.32L197.12,33H197V43.41a.36.36,0,0,1-.4.39H194a.36.36,0,0,1-.39-.39V24.59a.37.37,0,0,1,.39-.4h2.45a.42.42,0,0,1,.44.32l3.76,10.42h.15V24.59a.35.35,0,0,1,.39-.4Z"/>
|
|
48
|
+
<path fill="#FFFFFF" d="M212,24.19a.37.37,0,0,1,.4.4V43.41a.37.37,0,0,1-.4.39h-2.57a.35.35,0,0,1-.39-.39V24.59a.35.35,0,0,1,.39-.4Z"/>
|
|
49
|
+
<path fill="#FFFFFF" d="M225.24,43.8a.54.54,0,0,1-.56-.37l-3.12-7.28-.91,1.74v5.42a.44.44,0,0,1-.5.49h-2.37a.44.44,0,0,1-.49-.49V24.68a.44.44,0,0,1,.49-.49h2.37a.44.44,0,0,1,.5.49v7.6l3.8-7.72a.61.61,0,0,1,.57-.37h2.6c.37,0,.52.25.34.59l-4.2,8.56,4.48,9.9c.17.32,0,.56-.38.56Z"/>
|
|
50
|
+
<path fill="#FFFFFF" d="M0,31.09V0H10.06V31.15a2.68,2.68,0,0,0,2.65,2.65H23.82V0h10V33.8h13.7V0H57.59V43.8H12.71a12.17,12.17,0,0,1-9-3.72,12.18,12.18,0,0,1-3.73-9"/>
|
|
51
|
+
<rect fill="#f7a711" x="63.63" y="33.8" width="27.25" height="10"/>
|
|
52
|
+
<path fill="#FFFFFF" d="M109.89,17.18H73V12.89a2.93,2.93,0,0,1,1-2A2.91,2.91,0,0,1,76.13,10h33.76V0H76.13a12.17,12.17,0,0,0-8.9,3.79,12.34,12.34,0,0,0-3.63,9.1v13.7H99.29v4.65a3.35,3.35,0,0,1-1,1.66,2.92,2.92,0,0,1-2.14.9H93v10H97.4A12.18,12.18,0,0,0,106.29,40a12.38,12.38,0,0,0,3.63-9.11Z"/>
|
|
53
|
+
</svg>
|
|
54
|
+
</a>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
|
|
58
|
+
<div class="video-head__bg">
|
|
59
|
+
<div data-video="HZRm9MNvb9c" class="video-head__iframe-video js-background-video">
|
|
60
|
+
<div class="video-head__background">
|
|
61
|
+
<div id="yt-player"></div>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="video-head__overlay js-video-overlay"
|
|
65
|
+
style="background-image: url('https://img.youtube.com/vi/HZRm9MNvb9c/hqdefault.jpg');">
|
|
66
|
+
<div class="video-head__spinner-border spinner-border" role="status">
|
|
67
|
+
<span class="sr-only">Loading...</span>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
</div>
|
|
72
|
+
|
|
73
|
+
<div class="video-head__description-content contact-box">
|
|
74
|
+
<a href="{{ site.url }}#beratungstermin" class="contact-now">
|
|
75
|
+
Beratungstermin vereinbaren
|
|
76
|
+
</a>
|
|
77
|
+
<div class="contact-name">
|
|
78
|
+
<h1 class="title">
|
|
79
|
+
Artur Sopelnik
|
|
80
|
+
<small>
|
|
81
|
+
Geprüfter Medienfachwirt & Berater für Digitalmedien
|
|
82
|
+
</small>
|
|
83
|
+
</h1>
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
</header>
|
|
87
|
+
|
|
88
|
+
{{ content }}
|
|
89
|
+
|
|
90
|
+
<footer class="foot">
|
|
91
|
+
<div class="container">
|
|
92
|
+
<div class="row">
|
|
93
|
+
<div class="col-md col-md-6">
|
|
94
|
+
<span class="copyright">© {{ 'now' | date: "%Y" }} {{ site.title }}</span>
|
|
95
|
+
</div>
|
|
96
|
+
<div class="col-md col-md-6">
|
|
97
|
+
<span class="list"><a href="/impressum/">Impressum</a> | <a href="/datenschutz/">Datenschutz</a></span>
|
|
98
|
+
</div>
|
|
99
|
+
</div>
|
|
100
|
+
</div>
|
|
101
|
+
</footer>
|
|
102
|
+
</body>
|
|
103
|
+
</html>
|
|
104
|
+
|
|
105
|
+
</body>
|
|
106
|
+
</html>
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
data/_layouts/home.html
ADDED
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="de">
|
|
3
|
+
<head>
|
|
4
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126210788-1"></script>
|
|
5
|
+
<script src="https://www.youtube.com/iframe_api"></script>
|
|
6
|
+
<script>
|
|
7
|
+
window.dataLayer = window.dataLayer || [];
|
|
8
|
+
|
|
9
|
+
function gtag() {
|
|
10
|
+
dataLayer.push(arguments);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
gtag('js', new Date());
|
|
14
|
+
|
|
15
|
+
gtag('config', 'UA-126210788-1', {'anonymize_ip': true});
|
|
16
|
+
</script>
|
|
17
|
+
<meta charset="utf-8">
|
|
18
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
19
|
+
<title> {{ page.title }}</title>
|
|
20
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
21
|
+
<meta name="author" content="Artur Sopelnik">
|
|
22
|
+
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
23
|
+
<script src="/assets/js/main.min.js"></script>
|
|
24
|
+
</head>
|
|
25
|
+
<body>
|
|
26
|
+
|
|
27
|
+
<header class="video-head">
|
|
28
|
+
<div class="video-head__stage">
|
|
29
|
+
<div class="video-head__logo">
|
|
30
|
+
<div class="container">
|
|
31
|
+
<a href="{{ site.url }}" class="video-head__logo-link">
|
|
32
|
+
<svg class="video-head__logo-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 228.31 43.8">
|
|
33
|
+
<path fill="#FFFFFF" d="M135.87,0a.43.43,0,0,1,.47.51l-2.11,18.63a.45.45,0,0,1-.51.47h-2.4a.51.51,0,0,1-.54-.44L128.23,8.09l-2.58,11.1a.51.51,0,0,1-.54.42h-2.45a.45.45,0,0,1-.51-.47l-2-18.63A.43.43,0,0,1,120.6,0h2.33a.48.48,0,0,1,.52.47l1,11.47h.13L127,.44a.52.52,0,0,1,.54-.44H129a.51.51,0,0,1,.54.44l2.4,11.5H132L133,.47a.48.48,0,0,1,.52-.47Z"/>
|
|
34
|
+
<path fill="#FFFFFF" d="M148.57,2.84c0,.25-.1.42-.39.42h-6.13v4.9h4.68a.37.37,0,0,1,.4.42V11a.37.37,0,0,1-.4.41h-4.68v5h6.13c.29,0,.39.13.39.4v2.45a.34.34,0,0,1-.39.39h-9a.36.36,0,0,1-.37-.39V.39a.36.36,0,0,1,.37-.39h9a.34.34,0,0,1,.39.39Z"/>
|
|
35
|
+
<path fill="#FFFFFF" d="M160.85,8a1.77,1.77,0,0,1-1.54,1.74v.05a1.77,1.77,0,0,1,1.54,1.74v4.51c0,2.3-1.25,3.53-3.55,3.53h-5.89a.36.36,0,0,1-.39-.39V.39a.35.35,0,0,1,.39-.39h5.89c2.3,0,3.55,1.23,3.55,3.53Zm-3.26-3.82a.87.87,0,0,0-1-1h-2.23V8.19h2.23a.88.88,0,0,0,1-1Zm0,8.18a.87.87,0,0,0-1-1h-2.23v5h2.23a.87.87,0,0,0,1-1Z"/>
|
|
36
|
+
<path fill="#FFFFFF" d="M163.3.39a.35.35,0,0,1,.39-.39h5.89c2.3,0,3.53,1.25,3.53,3.55V16.08a3.16,3.16,0,0,1-3.53,3.53h-5.89a.34.34,0,0,1-.39-.39Zm5.59,16a.87.87,0,0,0,1-1V4.24a.88.88,0,0,0-1-1h-2.25V16.37Z"/>
|
|
37
|
+
<path fill="#FFFFFF" d="M185.34,2.84c0,.25-.1.42-.39.42h-6.13v4.9h4.68a.37.37,0,0,1,.39.42V11a.36.36,0,0,1-.39.41h-4.68v5H185c.29,0,.39.13.39.4v2.45a.34.34,0,0,1-.39.39h-9a.36.36,0,0,1-.37-.39V.39a.36.36,0,0,1,.37-.39h9a.34.34,0,0,1,.39.39Z"/>
|
|
38
|
+
<path fill="#FFFFFF" d="M193.33,0a3.16,3.16,0,0,1,3.53,3.53v2.6a.35.35,0,0,1-.39.39h-2.55a.36.36,0,0,1-.39-.39V4.22a.87.87,0,0,0-1-1h-1.17a.89.89,0,0,0-1,1V7.6l5.83,1.91a.9.9,0,0,1,.64.91v5.66a3.16,3.16,0,0,1-3.53,3.53h-2.75a3.17,3.17,0,0,1-3.53-3.53V13.51a.36.36,0,0,1,.4-.4H190c.27,0,.39.13.39.4v1.88a.88.88,0,0,0,1,1h1.17a.88.88,0,0,0,1-1V12.13l-5.81-1.91a.88.88,0,0,1-.67-.91V3.53A3.17,3.17,0,0,1,190.58,0Z"/>
|
|
39
|
+
<path fill="#FFFFFF" d="M202.25,0a.36.36,0,0,1,.39.39V19.22a.36.36,0,0,1-.39.39H199.7a.35.35,0,0,1-.39-.39V.39A.35.35,0,0,1,199.7,0Z"/>
|
|
40
|
+
<path fill="#FFFFFF" d="M205.09,3.53A3.16,3.16,0,0,1,208.62,0h3.24a3.17,3.17,0,0,1,3.53,3.53V6.08a.36.36,0,0,1-.39.39h-2.45a.36.36,0,0,1-.4-.39V4.22a.88.88,0,0,0-1-1h-1.76a.87.87,0,0,0-1,1V15.39a.87.87,0,0,0,1,1h1.76a.87.87,0,0,0,1-1V12.11h-1.27a.35.35,0,0,1-.39-.39V9.26a.34.34,0,0,1,.39-.39H215a.35.35,0,0,1,.39.39v6.82a3.17,3.17,0,0,1-3.53,3.53h-3.24a3.16,3.16,0,0,1-3.53-3.53Z"/>
|
|
41
|
+
<path fill="#FFFFFF" d="M227.91,0a.37.37,0,0,1,.4.39V19.22a.37.37,0,0,1-.4.39h-2.42a.42.42,0,0,1-.44-.32L221.3,8.82h-.13v10.4a.35.35,0,0,1-.39.39h-2.55a.36.36,0,0,1-.39-.39V.39a.36.36,0,0,1,.39-.39h2.43a.42.42,0,0,1,.44.32l3.73,10.42H225V.39a.36.36,0,0,1,.4-.39Z"/>
|
|
42
|
+
<path fill="#FFFFFF" d="M126.46,24.19c2.33,0,3.56,1.23,3.56,3.53v2.6a.34.34,0,0,1-.39.39h-2.57a.36.36,0,0,1-.4-.39V28.41a.87.87,0,0,0-1-1h-1.18a.89.89,0,0,0-1,1v3.38l5.88,1.91a.9.9,0,0,1,.64.91v5.66c0,2.31-1.23,3.53-3.56,3.53H123.7c-2.3,0-3.56-1.22-3.56-3.53V37.7a.35.35,0,0,1,.39-.39h2.57c.28,0,.4.12.4.39v1.89a.88.88,0,0,0,1,1h1.18a.87.87,0,0,0,1-1V36.33l-5.85-1.92a.86.86,0,0,1-.67-.9V27.72c0-2.3,1.26-3.53,3.56-3.53Z"/>
|
|
43
|
+
<path fill="#FFFFFF" d="M134.89,27.72c0-2.3,1.24-3.53,3.56-3.53h2.77c2.32,0,3.56,1.23,3.56,3.53V40.27c0,2.31-1.24,3.53-3.56,3.53h-2.77c-2.32,0-3.56-1.22-3.56-3.53Zm5.71,12.92a.88.88,0,0,0,1-1V28.34a.88.88,0,0,0-1-1h-1.43a.88.88,0,0,0-1,1V39.66a.88.88,0,0,0,1,1Z"/>
|
|
44
|
+
<path fill="#FFFFFF" d="M149.65,24.59a.37.37,0,0,1,.39-.4H156c2.33,0,3.56,1.23,3.56,3.53v6c0,2.28-1.23,3.53-3.56,3.53h-3v6.18a.36.36,0,0,1-.4.39H150a.36.36,0,0,1-.39-.39ZM155.18,34a.88.88,0,0,0,1-1V28.41a.87.87,0,0,0-1-1H153V34Z"/>
|
|
45
|
+
<path fill="#FFFFFF" d="M174.26,27c0,.24-.1.41-.39.41h-6.18v4.91h4.72a.36.36,0,0,1,.39.41V35.2a.37.37,0,0,1-.39.42h-4.72v5h6.18c.29,0,.39.12.39.39v2.45a.34.34,0,0,1-.39.39h-9.1a.36.36,0,0,1-.37-.39V24.59a.36.36,0,0,1,.37-.4h9.1c.29,0,.39.15.39.4Z"/>
|
|
46
|
+
<path fill="#FFFFFF" d="M182.49,40.57h5.88a.35.35,0,0,1,.4.39v2.45c0,.27-.13.39-.4.39h-8.84a.35.35,0,0,1-.4-.39V24.59a.37.37,0,0,1,.4-.4h2.57a.35.35,0,0,1,.39.4Z"/>
|
|
47
|
+
<path fill="#FFFFFF" d="M203.79,24.19a.37.37,0,0,1,.4.4V43.41a.37.37,0,0,1-.4.39h-2.44a.43.43,0,0,1-.45-.32L197.12,33H197V43.41a.36.36,0,0,1-.4.39H194a.36.36,0,0,1-.39-.39V24.59a.37.37,0,0,1,.39-.4h2.45a.42.42,0,0,1,.44.32l3.76,10.42h.15V24.59a.35.35,0,0,1,.39-.4Z"/>
|
|
48
|
+
<path fill="#FFFFFF" d="M212,24.19a.37.37,0,0,1,.4.4V43.41a.37.37,0,0,1-.4.39h-2.57a.35.35,0,0,1-.39-.39V24.59a.35.35,0,0,1,.39-.4Z"/>
|
|
49
|
+
<path fill="#FFFFFF" d="M225.24,43.8a.54.54,0,0,1-.56-.37l-3.12-7.28-.91,1.74v5.42a.44.44,0,0,1-.5.49h-2.37a.44.44,0,0,1-.49-.49V24.68a.44.44,0,0,1,.49-.49h2.37a.44.44,0,0,1,.5.49v7.6l3.8-7.72a.61.61,0,0,1,.57-.37h2.6c.37,0,.52.25.34.59l-4.2,8.56,4.48,9.9c.17.32,0,.56-.38.56Z"/>
|
|
50
|
+
<path fill="#FFFFFF" d="M0,31.09V0H10.06V31.15a2.68,2.68,0,0,0,2.65,2.65H23.82V0h10V33.8h13.7V0H57.59V43.8H12.71a12.17,12.17,0,0,1-9-3.72,12.18,12.18,0,0,1-3.73-9"/>
|
|
51
|
+
<rect fill="#f7a711" x="63.63" y="33.8" width="27.25" height="10"/>
|
|
52
|
+
<path fill="#FFFFFF" d="M109.89,17.18H73V12.89a2.93,2.93,0,0,1,1-2A2.91,2.91,0,0,1,76.13,10h33.76V0H76.13a12.17,12.17,0,0,0-8.9,3.79,12.34,12.34,0,0,0-3.63,9.1v13.7H99.29v4.65a3.35,3.35,0,0,1-1,1.66,2.92,2.92,0,0,1-2.14.9H93v10H97.4A12.18,12.18,0,0,0,106.29,40a12.38,12.38,0,0,0,3.63-9.11Z"/>
|
|
53
|
+
</svg>
|
|
54
|
+
</a>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
|
|
58
|
+
<div class="video-head__bg">
|
|
59
|
+
<div data-video="HZRm9MNvb9c" class="video-head__iframe-video js-background-video">
|
|
60
|
+
<div class="video-head__background">
|
|
61
|
+
<div id="yt-player"></div>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="video-head__overlay js-video-overlay"
|
|
65
|
+
style="background-image: url('https://img.youtube.com/vi/HZRm9MNvb9c/hqdefault.jpg');">
|
|
66
|
+
<div class="video-head__spinner-border spinner-border" role="status">
|
|
67
|
+
<span class="sr-only">Loading...</span>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
</div>
|
|
72
|
+
|
|
73
|
+
<div class="video-head__description-content contact-box">
|
|
74
|
+
<a href="#beratungstermin" class="contact-now">
|
|
75
|
+
Beratungstermin vereinbaren
|
|
76
|
+
</a>
|
|
77
|
+
<div class="contact-name">
|
|
78
|
+
<h1 class="title">
|
|
79
|
+
Artur Sopelnik
|
|
80
|
+
<small>
|
|
81
|
+
Geprüfter Medienfachwirt & Berater für Digitalmedien
|
|
82
|
+
</small>
|
|
83
|
+
</h1>
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
</header>
|
|
87
|
+
|
|
88
|
+
<section class="section introduction">
|
|
89
|
+
<div class="container">
|
|
90
|
+
<h2 class="title"><strong>Willkommen auf meiner Website.</strong> Ich biete professionelle
|
|
91
|
+
Webseitengestaltung und Umsetzung zu fairen Bedingungen an.</h2>
|
|
92
|
+
</div>
|
|
93
|
+
</section>
|
|
94
|
+
|
|
95
|
+
<section class="section bio">
|
|
96
|
+
<div class="container">
|
|
97
|
+
<div class="row">
|
|
98
|
+
<div class="col-lg col-lg-8">
|
|
99
|
+
<h2>Leistungen</h2>
|
|
100
|
+
<p class="lead">
|
|
101
|
+
Als Medienfachwirt Digital und Berufsausbilder nach AEVO
|
|
102
|
+
arbeite ich seit vielen Jahren leidenschaftlich an der Entwicklung neuer Webseiten, Apps und
|
|
103
|
+
eCommerce-Lösungen.
|
|
104
|
+
</p>
|
|
105
|
+
|
|
106
|
+
<p>
|
|
107
|
+
Hallo! Mein Name ist Artur, ich bin <?php echo $age; ?> Jahre alt und komme aus Frankfurt am Main.
|
|
108
|
+
Nach meiner Ausbildung zum Mediengestalter Digital, arbeitete ich noch viele Jahre bei
|
|
109
|
+
<a href="https://www.electronic-minds.de/" rel="nofollow external" target="_blank">Electronic
|
|
110
|
+
Minds</a> in Darmstadt. Neben diversen Schulungen, habe ich eine Aufstiegsfortbildung zum
|
|
111
|
+
Medienfachwirt Digital an der
|
|
112
|
+
<a href="https://www.dtp-rm.de/" rel="nofollow external" target="_blank">DTP Akademie</a> in
|
|
113
|
+
Offenbach absolviert. Aktuell bin ich als Berater für
|
|
114
|
+
<a href="https://www.mhp.com/de/home" rel="nofollow external" target="_blank">MHP – A Porsche
|
|
115
|
+
Company</a> weltweit tätig.
|
|
116
|
+
</p>
|
|
117
|
+
|
|
118
|
+
<div class="row">
|
|
119
|
+
<div class="col-lg col-lg-6">
|
|
120
|
+
<p>
|
|
121
|
+
<strong>Fähigkeiten und Kenntnisse:</strong><br>- Layout: Sketch, Adobe Photoshop<br>-
|
|
122
|
+
Frontend: Angular, Backbone<br>- Backend: Shopware, WordPress<br>
|
|
123
|
+
</p>
|
|
124
|
+
</div>
|
|
125
|
+
<div class="col-lg col-lg-6">
|
|
126
|
+
<p>
|
|
127
|
+
<strong>Ausbildung und Zertifikate:</strong><br>
|
|
128
|
+
- Medienfachwirt Digital<br>
|
|
129
|
+
- Berufsausbilder nach AEVO<br>
|
|
130
|
+
- Professional Scrum Master
|
|
131
|
+
</p>
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
<div class="col-lg col-lg-4">
|
|
136
|
+
<img class="bio-image" src="/assets/img/me.jpg" alt="Artur Sopelnik">
|
|
137
|
+
<blockquote>
|
|
138
|
+
<p>
|
|
139
|
+
If you do what you love, you'll never work a day in your life.
|
|
140
|
+
</p>
|
|
141
|
+
</blockquote>
|
|
142
|
+
<p>
|
|
143
|
+
<a href="/assets/cv.pdf" target="_blank" rel="external" class="btn btn-outline">
|
|
144
|
+
DOWNLOAD CV
|
|
145
|
+
</a>
|
|
146
|
+
</p>
|
|
147
|
+
</div>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
</section>
|
|
151
|
+
|
|
152
|
+
<!--googleoff: all-->
|
|
153
|
+
<section class="section">
|
|
154
|
+
<div class="container">
|
|
155
|
+
<h3>Ausgewählte Kunden, für die ich arbeite oder während meiner beruflichen Laufbahn gearbeitet habe, direkt als
|
|
156
|
+
auch über Agenturen und Auftraggeber:</h3>
|
|
157
|
+
<div class="row" rel="nofollow">
|
|
158
|
+
<div class="col-lg col-lg-3">
|
|
159
|
+
<p>
|
|
160
|
+
Porsche AG<br>
|
|
161
|
+
RAYBOUNCE GmbH<br>
|
|
162
|
+
VACHWERK<br>
|
|
163
|
+
</p>
|
|
164
|
+
</div>
|
|
165
|
+
<div class="col-lg col-lg-3">
|
|
166
|
+
<p>
|
|
167
|
+
J.CON MARCOM CONSULTING<br>
|
|
168
|
+
Schufa Holding AG<br>
|
|
169
|
+
RAYBOUNCE GmbH
|
|
170
|
+
</p>
|
|
171
|
+
</div>
|
|
172
|
+
<div class="col-lg col-lg-3">
|
|
173
|
+
<p>
|
|
174
|
+
Holgers Zweirad Shop GmbH<br>
|
|
175
|
+
Fahrschule Kalkan UG<br>
|
|
176
|
+
ZMSK
|
|
177
|
+
</p>
|
|
178
|
+
</div>
|
|
179
|
+
<div class="col-lg col-lg-3">
|
|
180
|
+
<p>
|
|
181
|
+
Mikis-Fahrschule<br>
|
|
182
|
+
Musikschule Minz <br>
|
|
183
|
+
DREIDK
|
|
184
|
+
</p>
|
|
185
|
+
</div>
|
|
186
|
+
</div>
|
|
187
|
+
<p>
|
|
188
|
+
<a href="/assets/portfolio.pdf" target="_blank" rel="external" class="btn btn-outline">
|
|
189
|
+
DOWNLOAD PORTFOLIO</a>
|
|
190
|
+
</p>
|
|
191
|
+
</div>
|
|
192
|
+
</section>
|
|
193
|
+
<!--googleon: all-->
|
|
194
|
+
|
|
195
|
+
<section class="section" id="beratungstermin">
|
|
196
|
+
<div class="container">
|
|
197
|
+
<div class="row">
|
|
198
|
+
<div class="col-lg col-lg-8 order-lg-2">
|
|
199
|
+
<h3 class="mb-3">Beratungstermin vereinbaren</h3>
|
|
200
|
+
<form id="contact-form" action="https://formspree.io/mzbaenbk" method="POST" class="needs-validation">
|
|
201
|
+
<div class="row">
|
|
202
|
+
<div class="col-md-6 mb-3">
|
|
203
|
+
<label for="firstName">Vorname</label>
|
|
204
|
+
<input name="firstname" type="text" class="form-control" id="firstName" placeholder="" value="" required>
|
|
205
|
+
</div>
|
|
206
|
+
<div class="col-md-6 mb-3">
|
|
207
|
+
<label for="lastName">Nachname</label>
|
|
208
|
+
<input name="lastname" type="text" class="form-control" id="lastName" placeholder="" value="" required>
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
|
|
212
|
+
<div class="row">
|
|
213
|
+
<div class="col-md-6 mb-3">
|
|
214
|
+
<label for="email">E-Mail</label>
|
|
215
|
+
<input name="_replyto" type="email" class="form-control" id="email" required>
|
|
216
|
+
</div>
|
|
217
|
+
<div class="col-md-6 mb-3">
|
|
218
|
+
<label for="telephone">Telefon <span class="text-muted">(optional)</span></label>
|
|
219
|
+
<input name="phone" type="tel" class="form-control" id="telephone">
|
|
220
|
+
</div>
|
|
221
|
+
</div>
|
|
222
|
+
|
|
223
|
+
<div class="mb-3">
|
|
224
|
+
<label for="message">Terminwunsch <span class="text-muted">(optional)</span></label>
|
|
225
|
+
<textarea rows="2" name="message" class="form-control" id="message" placeholder="Zum nächstmöglichen Termin."></textarea>
|
|
226
|
+
</div>
|
|
227
|
+
|
|
228
|
+
<div class="save-info mb-4 pl-4">
|
|
229
|
+
<input name="saveinfo" type="checkbox" class="custom-control-input" id="save-info" required>
|
|
230
|
+
<label class="custom-control-label" for="save-info">
|
|
231
|
+
Ich willige ein, dass meine Daten zum Zwecke der Kontaktaufnahme gespeichert und verarbeitet
|
|
232
|
+
werden. Weitere Informationen erhalten Sie unter
|
|
233
|
+
<a href="/datenschutz/">Datenschutz</a>.
|
|
234
|
+
</label>
|
|
235
|
+
</div>
|
|
236
|
+
|
|
237
|
+
<input type="hidden" name="_language" value="de" aria-hidden="true">
|
|
238
|
+
|
|
239
|
+
<button id="contact-form-button" class="btn" type="submit"><i class="pr-2 fas fa-paper-plane"></i>
|
|
240
|
+
Beratungstermin vereinbaren
|
|
241
|
+
</button>
|
|
242
|
+
|
|
243
|
+
<p id="contact-form-status"></p>
|
|
244
|
+
</form>
|
|
245
|
+
</div>
|
|
246
|
+
</div>
|
|
247
|
+
</div>
|
|
248
|
+
</section>
|
|
249
|
+
|
|
250
|
+
<section class="section social">
|
|
251
|
+
<div class="container">
|
|
252
|
+
<h3 style="display: none;" aria-hidden="true">Soziale Netzwerke</h3>
|
|
253
|
+
<ul class="social-network">
|
|
254
|
+
<li>
|
|
255
|
+
<a target="_blank" rel="external" href="https://codepen.io/artursopelnik/">
|
|
256
|
+
<i class="fab fa-codepen"></i>
|
|
257
|
+
</a>
|
|
258
|
+
</li>
|
|
259
|
+
<li>
|
|
260
|
+
<a target="_blank" rel="external" href="https://github.com/artursopelnik">
|
|
261
|
+
<i class="fab fa-github"></i>
|
|
262
|
+
</a>
|
|
263
|
+
</li>
|
|
264
|
+
<li>
|
|
265
|
+
<a target="_blank" rel="external" href="https://www.linkedin.com/in/artur-sopelnik-b93656110/">
|
|
266
|
+
<i class="fab fa-linkedin-in"></i>
|
|
267
|
+
</a>
|
|
268
|
+
</li>
|
|
269
|
+
<li>
|
|
270
|
+
<a target="_blank" rel="external" href="https://www.xing.com/profile/Artur_Sopelnik/">
|
|
271
|
+
<i class="fab fa-xing"></i>
|
|
272
|
+
</a>
|
|
273
|
+
</li>
|
|
274
|
+
</ul>
|
|
275
|
+
</div>
|
|
276
|
+
</section>
|
|
277
|
+
|
|
278
|
+
<footer class="foot">
|
|
279
|
+
<div class="container">
|
|
280
|
+
<div class="row">
|
|
281
|
+
<div class="col-md col-md-6">
|
|
282
|
+
<span class="copyright">© {{ 'now' | date: "%Y" }} {{ site.title }}</span>
|
|
283
|
+
</div>
|
|
284
|
+
<div class="col-md col-md-6">
|
|
285
|
+
<span class="list"><a href="/impressum/">Impressum</a> | <a href="/datenschutz/">Datenschutz</a></span>
|
|
286
|
+
</div>
|
|
287
|
+
</div>
|
|
288
|
+
</div>
|
|
289
|
+
</footer>
|
|
290
|
+
</body>
|
|
291
|
+
</html>
|
|
292
|
+
|
|
293
|
+
</body>
|
|
294
|
+
</html>
|
|
295
|
+
|
|
296
|
+
|
data/assets/cv.pdf
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/img/me.jpg
ADDED
|
Binary file
|
data/assets/img/me2.jpg
ADDED
|
Binary file
|
data/assets/img/me3.jpg
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/js/main.js
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
(function (global, doc) {
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
var videoHead = {
|
|
5
|
+
options: {
|
|
6
|
+
el: '.js-background-video'
|
|
7
|
+
},
|
|
8
|
+
init: function () {
|
|
9
|
+
this.$element = doc.querySelector(this.options.el);
|
|
10
|
+
|
|
11
|
+
if (!this.$element) {
|
|
12
|
+
return false;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
this.$elementVideoId = this.$element.getAttribute('data-video');
|
|
16
|
+
this.$videoOverlay = doc.querySelector('.js-video-overlay');
|
|
17
|
+
|
|
18
|
+
this.addListeners();
|
|
19
|
+
},
|
|
20
|
+
addListeners: function () {
|
|
21
|
+
var $elementVideoId = this.$elementVideoId;
|
|
22
|
+
var $videoOverlay = this.$videoOverlay;
|
|
23
|
+
|
|
24
|
+
global.onYouTubeIframeAPIReady = function () {
|
|
25
|
+
return new global.YT.Player('yt-player', {
|
|
26
|
+
width: '1920',
|
|
27
|
+
height: '1080',
|
|
28
|
+
videoId: $elementVideoId,
|
|
29
|
+
playerVars: {
|
|
30
|
+
autoplay: 1,
|
|
31
|
+
mute: 1,
|
|
32
|
+
autohide: 1,
|
|
33
|
+
modestbranding: 1,
|
|
34
|
+
rel: 0,
|
|
35
|
+
showinfo: 0,
|
|
36
|
+
controls: 0,
|
|
37
|
+
disablekb: 1,
|
|
38
|
+
enablejsapi: 1,
|
|
39
|
+
iv_load_policy: 3,
|
|
40
|
+
loop: 1,
|
|
41
|
+
playlist: $elementVideoId
|
|
42
|
+
},
|
|
43
|
+
events: {
|
|
44
|
+
'onReady': global.onPlayerReady,
|
|
45
|
+
'onStateChange': global.onPlayerStateChange
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
global.onPlayerReady = function (event) {
|
|
51
|
+
event.target.playVideo();
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
global.onPlayerStateChange = function (event) {
|
|
55
|
+
if (event.data === global.YT.PlayerState.PLAYING) {
|
|
56
|
+
$videoOverlay.classList.add('video-head__overlay--fadeOut');
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
var ready = function (fn) {
|
|
63
|
+
if (document.readyState !== 'loading') {
|
|
64
|
+
fn();
|
|
65
|
+
} else {
|
|
66
|
+
document.addEventListener('DOMContentLoaded', fn);
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
ready(function () {
|
|
71
|
+
videoHead.init();
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
}(window, document));
|
|
75
|
+
|
|
76
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(e,t){"use strict";var a,n={options:{el:".js-background-video"},init:function(){if(this.$element=t.querySelector(this.options.el),!this.$element)return!1;this.$elementVideoId=this.$element.getAttribute("data-video"),this.$videoOverlay=t.querySelector(".js-video-overlay"),this.addListeners()},addListeners:function(){var t=this.$elementVideoId,a=this.$videoOverlay;e.onYouTubeIframeAPIReady=function(){return new e.YT.Player("yt-player",{width:"1920",height:"1080",videoId:t,playerVars:{autoplay:1,mute:1,autohide:1,modestbranding:1,rel:0,showinfo:0,controls:0,disablekb:1,enablejsapi:1,iv_load_policy:3,loop:1,playlist:t},events:{onReady:e.onPlayerReady,onStateChange:e.onPlayerStateChange}})},e.onPlayerReady=function(e){e.target.playVideo()},e.onPlayerStateChange=function(t){t.data===e.YT.PlayerState.PLAYING&&a.classList.add("video-head__overlay--fadeOut")}}};a=function(){n.init()},"loading"!==document.readyState?a():document.addEventListener("DOMContentLoaded",a)}(window,document);
|
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: webdesign-sopelnik
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Artur Sopelnik
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2020-11-14 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description:
|
|
14
|
+
email:
|
|
15
|
+
- artur.sopelnik93@gmail.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- LICENSE.txt
|
|
21
|
+
- README.md
|
|
22
|
+
- _layouts/default.html
|
|
23
|
+
- _layouts/home.html
|
|
24
|
+
- assets/css/styles.scss
|
|
25
|
+
- assets/cv.pdf
|
|
26
|
+
- assets/fonts/fa-brands-400.woff
|
|
27
|
+
- assets/fonts/fa-brands-400.woff2
|
|
28
|
+
- assets/fonts/fa-regular-400.woff
|
|
29
|
+
- assets/fonts/fa-regular-400.woff2
|
|
30
|
+
- assets/fonts/fa-solid-900.woff
|
|
31
|
+
- assets/fonts/fa-solid-900.woff2
|
|
32
|
+
- assets/fonts/montserrat-v12-latin-300.woff
|
|
33
|
+
- assets/fonts/montserrat-v12-latin-300.woff2
|
|
34
|
+
- assets/fonts/montserrat-v12-latin-600.woff
|
|
35
|
+
- assets/fonts/montserrat-v12-latin-600.woff2
|
|
36
|
+
- assets/img/c59c1141913253.57b9af00e8120.jpg
|
|
37
|
+
- assets/img/me-maybe.jpg
|
|
38
|
+
- assets/img/me.jpg
|
|
39
|
+
- assets/img/me2.jpg
|
|
40
|
+
- assets/img/me3.jpg
|
|
41
|
+
- assets/img/meOld.jpg
|
|
42
|
+
- assets/img/portfolio-boxzoom.jpg
|
|
43
|
+
- assets/img/portfolio-cementus.jpg
|
|
44
|
+
- assets/img/portfolio-cementus.png
|
|
45
|
+
- assets/img/portfolio-cementus.png.jpg
|
|
46
|
+
- assets/img/portfolio-elektroschneider.jpg
|
|
47
|
+
- assets/img/portfolio-framename.jpg
|
|
48
|
+
- assets/img/portfolio-mikisfahrschule.jpg
|
|
49
|
+
- assets/img/portfolio-wedding.png
|
|
50
|
+
- assets/img/ws-bg.jpg
|
|
51
|
+
- assets/img/ws-bg.webp
|
|
52
|
+
- assets/js/main.js
|
|
53
|
+
- assets/js/main.min.js
|
|
54
|
+
- assets/portfolio.pdf
|
|
55
|
+
homepage: https://www.webdesign-sopelnik.de
|
|
56
|
+
licenses:
|
|
57
|
+
- MIT
|
|
58
|
+
metadata: {}
|
|
59
|
+
post_install_message:
|
|
60
|
+
rdoc_options: []
|
|
61
|
+
require_paths:
|
|
62
|
+
- lib
|
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0'
|
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '0'
|
|
73
|
+
requirements: []
|
|
74
|
+
rubygems_version: 3.1.2
|
|
75
|
+
signing_key:
|
|
76
|
+
specification_version: 4
|
|
77
|
+
summary: Website webdesign-sopelnik.de
|
|
78
|
+
test_files: []
|