CV-Portfolio 0.0.1
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 +53 -0
- data/_config.yml +111 -0
- data/_includes/backtotop.html +1 -0
- data/_includes/clients.html +37 -0
- data/_includes/header.html +2 -0
- data/_includes/javascripts.html +4 -0
- data/_includes/mapbox-init.html +2 -0
- data/_includes/mapbox.html +3 -0
- data/_includes/meta.html +28 -0
- data/_includes/photoswipe.html +40 -0
- data/_includes/preloader.html +4 -0
- data/_includes/review.html +79 -0
- data/_includes/scroll.html +2 -0
- data/_includes/sidebar.html +68 -0
- data/_includes/skills.html +31 -0
- data/_includes/testimonials.html +54 -0
- data/_layouts/contact.html +20 -0
- data/_layouts/default.html +18 -0
- data/_layouts/post.html +21 -0
- data/_layouts/project.html +23 -0
- data/_layouts/resume.html +18 -0
- data/_sass/style.scss +3353 -0
- data/assets/css/app/_button.scss +70 -0
- data/assets/css/app/_cases.scss +35 -0
- data/assets/css/app/_clients.scss +22 -0
- data/assets/css/app/_contact.scss +74 -0
- data/assets/css/app/_form.scss +264 -0
- data/assets/css/app/_general.scss +106 -0
- data/assets/css/app/_navbar.scss +98 -0
- data/assets/css/app/_news.scss +112 -0
- data/assets/css/app/_other.scss +58 -0
- data/assets/css/app/_popup.scss +167 -0
- data/assets/css/app/_portfolio.scss +269 -0
- data/assets/css/app/_sections.scss +265 -0
- data/assets/css/app/_sidebar.scss +181 -0
- data/assets/css/app/_single-news.scss +445 -0
- data/assets/css/app/_single-project.scss +97 -0
- data/assets/css/app/_testimonials.scss +147 -0
- data/assets/css/app/_timeline.scss +78 -0
- data/assets/css/app/_typography.scss +253 -0
- data/assets/css/main.scss +9 -0
- data/assets/css/style.css.map +30 -0
- data/assets/css/style.scss +43 -0
- data/assets/css/variables/_media.scss +8 -0
- data/assets/css/variables/_mixins.scss +59 -0
- data/assets/css/variables/_vars.scss +48 -0
- data/assets/css/vendors/bootstrap.css +10819 -0
- data/assets/css/vendors/bootstrap.css.map +1 -0
- data/assets/css/vendors/bootstrap.min.css +7 -0
- data/assets/css/vendors/bootstrap.min.css.map +1 -0
- data/assets/css/vendors/default-skin.css +482 -0
- data/assets/css/vendors/magnific-popup.css +351 -0
- data/assets/css/vendors/photoswipe.css +179 -0
- data/assets/css/vendors/simplebar.css +211 -0
- data/assets/css/vendors/simplebar.min.css +1 -0
- data/assets/css/vendors/swiper.min.css +12 -0
- data/assets/icons/dark/icon-app.svg +4 -0
- data/assets/icons/dark/icon-design.svg +5 -0
- data/assets/icons/dark/icon-dev.svg +12 -0
- data/assets/icons/dark/icon-education.svg +10 -0
- data/assets/icons/dark/icon-experience.svg +4 -0
- data/assets/icons/dark/icon-photo.svg +7 -0
- data/assets/icons/dark/icon-quote.svg +3 -0
- data/assets/icons/emoji/emoji-angry.svg +15 -0
- data/assets/icons/emoji/emoji-bad.svg +15 -0
- data/assets/icons/emoji/emoji-crazy.svg +15 -0
- data/assets/icons/emoji/emoji-happy-2.svg +12 -0
- data/assets/icons/emoji/emoji-happy-3.svg +16 -0
- data/assets/icons/emoji/emoji-happy.svg +15 -0
- data/assets/icons/emoji/emoji-in-love.svg +15 -0
- data/assets/icons/emoji/emoji-laughing.svg +15 -0
- data/assets/icons/emoji/emoji-nerd.svg +16 -0
- data/assets/icons/emoji/emoji-pressure.svg +17 -0
- data/assets/icons/emoji/emoji-sad-2.svg +15 -0
- data/assets/icons/emoji/emoji-sad.svg +13 -0
- data/assets/icons/emoji/emoji-shocked-2.svg +15 -0
- data/assets/icons/emoji/emoji-shocked-3.svg +11 -0
- data/assets/icons/emoji/emoji-shocked.svg +14 -0
- data/assets/icons/emoji/emoji-sweating.svg +10 -0
- data/assets/icons/emoji/emoji-thinking.svg +13 -0
- data/assets/icons/emoji/emoji-wink.svg +12 -0
- data/assets/icons/feather.css +871 -0
- data/assets/icons/feather.woff +0 -0
- data/assets/icons/feather.woff2 +0 -0
- data/assets/icons/icomoon.svg +45 -0
- data/assets/icons/icomoon.ttf +0 -0
- data/assets/icons/icomoon.woff +0 -0
- data/assets/icons/icon-app.svg +14 -0
- data/assets/icons/icon-at.svg +3 -0
- data/assets/icons/icon-calendar.svg +3 -0
- data/assets/icons/icon-design.svg +27 -0
- data/assets/icons/icon-dev.svg +54 -0
- data/assets/icons/icon-download.svg +3 -0
- data/assets/icons/icon-education.svg +10 -0
- data/assets/icons/icon-envelope.svg +3 -0
- data/assets/icons/icon-experience.svg +4 -0
- data/assets/icons/icon-like-fill.svg +3 -0
- data/assets/icons/icon-like.svg +3 -0
- data/assets/icons/icon-location.svg +3 -0
- data/assets/icons/icon-news.svg +3 -0
- data/assets/icons/icon-phone.svg +3 -0
- data/assets/icons/icon-photo.svg +45 -0
- data/assets/icons/icon-quote.svg +9 -0
- data/assets/icons/icon-reply.svg +3 -0
- data/assets/icons/icon-send.svg +3 -0
- data/assets/icons/icon-skype.svg +3 -0
- data/assets/icons/icon-user.svg +6 -0
- data/assets/icons/style-custome-icons.css +132 -0
- data/assets/images/280x204.jpg +0 -0
- data/assets/images/400x550.jpg +0 -0
- data/assets/images/433x240.jpg +0 -0
- data/assets/images/560x340.jpg +0 -0
- data/assets/images/958x400.jpg +0 -0
- data/assets/images/_icon-map-pic.svg +15 -0
- data/assets/images/apple-store.png +0 -0
- data/assets/images/avatar-1.png +0 -0
- data/assets/images/avatar-2.png +0 -0
- data/assets/images/avatar-3.png +0 -0
- data/assets/images/avatar-4.png +0 -0
- data/assets/images/clients/logo-1-color.png +0 -0
- data/assets/images/clients/logo-1-white.png +0 -0
- data/assets/images/clients/logo-2-color.png +0 -0
- data/assets/images/clients/logo-2-white.png +0 -0
- data/assets/images/clients/logo-3-color.png +0 -0
- data/assets/images/clients/logo-3-white.png +0 -0
- data/assets/images/clients/logo-4-color.png +0 -0
- data/assets/images/clients/logo-4-white.png +0 -0
- data/assets/images/clients/logo-5-color.png +0 -0
- data/assets/images/clients/logo-5-white.png +0 -0
- data/assets/images/clients/logo-6-color.png +0 -0
- data/assets/images/clients/logo-6-white.png +0 -0
- data/assets/images/clients/logo-7-color.png +0 -0
- data/assets/images/clients/logo-7-white.png +0 -0
- data/assets/images/clients/logo-8-color.png +0 -0
- data/assets/images/clients/logo-8-white.png +0 -0
- data/assets/images/clients/logo-9-color.png +0 -0
- data/assets/images/clients/logo-9-white.png +0 -0
- data/assets/images/cover.png +0 -0
- data/assets/images/cv-portfolio.jpg +0 -0
- data/assets/images/favicons/apple-touch-icon-114x114.png +0 -0
- data/assets/images/favicons/apple-touch-icon-144x144.png +0 -0
- data/assets/images/favicons/apple-touch-icon-57x57.png +0 -0
- data/assets/images/favicons/apple-touch-icon-72x72.png +0 -0
- data/assets/images/favicons/favicon.png +0 -0
- data/assets/images/icon-map-pic.svg +30 -0
- data/assets/images/icon-quote.svg +3 -0
- data/assets/images/logotype.svg +9 -0
- data/assets/images/my-avatar.png +0 -0
- data/assets/images/photoswiper/default-skin.png +0 -0
- data/assets/images/photoswiper/default-skin.svg +1 -0
- data/assets/images/photoswiper/preloader.gif +0 -0
- data/assets/images/play-store.png +0 -0
- data/assets/images/splash.gif +0 -0
- data/assets/img/posts/400x550.jpg +0 -0
- data/assets/img/posts/958x400.jpg +0 -0
- data/assets/js/common.js +737 -0
- data/assets/js/jquery-3.4.1.min.js +2 -0
- data/assets/js/mapbox.init.js +32 -0
- data/assets/js/plugins.js +33367 -0
- data/assets/js/plugins.min.js +106 -0
- data/assets/php/form-contact.php +95 -0
- data/assets/php/phpmailer/COMMITMENT +46 -0
- data/assets/php/phpmailer/LICENSE +502 -0
- data/assets/php/phpmailer/README.md +218 -0
- data/assets/php/phpmailer/SECURITY.md +28 -0
- data/assets/php/phpmailer/VERSION +1 -0
- data/assets/php/phpmailer/composer.json +55 -0
- data/assets/php/phpmailer/get_oauth_token.php +144 -0
- data/assets/php/phpmailer/language/phpmailer.lang-am.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ar.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-az.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ba.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-be.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-bg.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ca.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ch.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-cs.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-da.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-de.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-el.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-eo.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-es.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-et.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fa.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fi.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fo.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-fr.php +29 -0
- data/assets/php/phpmailer/language/phpmailer.lang-gl.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-he.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-hi.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-hr.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-hu.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-id.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-it.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ja.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ka.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ko.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-lt.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-lv.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-mg.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ms.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-nb.php +25 -0
- data/assets/php/phpmailer/language/phpmailer.lang-nl.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-pl.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-pt.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-pt_br.php +29 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ro.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-ru.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sk.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sl.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sr.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-sv.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-tl.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-tr.php +30 -0
- data/assets/php/phpmailer/language/phpmailer.lang-uk.php +27 -0
- data/assets/php/phpmailer/language/phpmailer.lang-vi.php +26 -0
- data/assets/php/phpmailer/language/phpmailer.lang-zh.php +28 -0
- data/assets/php/phpmailer/language/phpmailer.lang-zh_cn.php +28 -0
- data/assets/php/phpmailer/src/Exception.php +39 -0
- data/assets/php/phpmailer/src/OAuth.php +138 -0
- data/assets/php/phpmailer/src/PHPMailer.php +4502 -0
- data/assets/php/phpmailer/src/POP3.php +419 -0
- data/assets/php/phpmailer/src/SMTP.php +1326 -0
- data/assets/videos/video-1.mp4 +0 -0
- data/assets/videos/video-2.mp4 +0 -0
- metadata +283 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 2be7e43e22af2cdb342ba7b589f7436346def172b53b113838ea26749d77251b
|
|
4
|
+
data.tar.gz: b6aa5b6fef7957d034c5c2e923074e53f4833b6b129df9276fd13ae25494b431
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: abbee3cfa366748531f441f1c0612a33054cb0a68f8bf6d935ab87a5058e81ffd6dc8bb32163b067b5deb99f4055d8136aeead68c8e50bd8adfc9d3d3044d6f8
|
|
7
|
+
data.tar.gz: 16ab2c371c7e093651c6d1362ae4b9ea49c11a56b09b21f16de912dd7370878443522f0dc059a29d6de2ab9a2d866a9c0344eee7f8ad65e37050d0e49701dba0
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 DesignofCp
|
|
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,53 @@
|
|
|
1
|
+
# 4-in-1 Telecommunications | CV Card Portfolio
|
|
2
|
+
[](https://app.netlify.com/sites/4in1telecommunications/deploys)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
# CV-Portfolio
|
|
8
|
+
Welcome to your CV-Portfolio Jekyll theme!
|
|
9
|
+
CV Portfolio is an all in one premium Jekyll and Netlify CMS Stactic website for developers to promote themselves.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Add this line to your Jekyll site's `Gemfile`:
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
gem "CV-Portfolio"
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
20
|
+
|
|
21
|
+
```yaml
|
|
22
|
+
theme: CV-Portfolio
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
And then execute:
|
|
26
|
+
|
|
27
|
+
$ bundle
|
|
28
|
+
|
|
29
|
+
Or install it yourself as:
|
|
30
|
+
|
|
31
|
+
$ gem install CV-Portfolio
|
|
32
|
+
|
|
33
|
+
## Usage
|
|
34
|
+
|
|
35
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
|
36
|
+
|
|
37
|
+
## Contributing
|
|
38
|
+
|
|
39
|
+
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.
|
|
40
|
+
|
|
41
|
+
## Development
|
|
42
|
+
|
|
43
|
+
To set up your environment to develop this theme, run `bundle install`.
|
|
44
|
+
|
|
45
|
+
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.
|
|
46
|
+
|
|
47
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
|
48
|
+
To add a custom directory to your theme-gem, please edit the regexp in `CV-Portfolio.gemspec` accordingly.
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
53
|
+
|
data/_config.yml
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# Welcome to Jekyll!
|
|
2
|
+
#
|
|
3
|
+
# This config file is meant for settings that affect your whole blog, values
|
|
4
|
+
# which you are expected to set up once and rarely edit after that. If you find
|
|
5
|
+
# yourself editing this file very often, consider using Jekyll's data files
|
|
6
|
+
# feature for the data you need to update frequently.
|
|
7
|
+
#
|
|
8
|
+
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
|
9
|
+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
|
|
10
|
+
#
|
|
11
|
+
# If you need help with YAML syntax, here are some quick references for you:
|
|
12
|
+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
|
|
13
|
+
# https://learnxinyminutes.com/docs/yaml/
|
|
14
|
+
#
|
|
15
|
+
# Site settings
|
|
16
|
+
# These are used to personalize your new site. If you look in the HTML files,
|
|
17
|
+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
|
18
|
+
# You can create any custom variable you would like, and they will be accessible
|
|
19
|
+
# in the templates via {{ site.myvariable }}.
|
|
20
|
+
|
|
21
|
+
title: 4-in-1 Telecommunications
|
|
22
|
+
email: support@4in1telecommunications.com
|
|
23
|
+
description: >- # this means to ignore newlines until "baseurl:"
|
|
24
|
+
A Jekyll Build CV Card | Portfolio
|
|
25
|
+
baseurl: "" # the subpath of your site, e.g. /blog
|
|
26
|
+
url: "https://4in1telecommunications.com" # the base hostname & protocol for your site, e.g. http://example.com
|
|
27
|
+
|
|
28
|
+
urls:
|
|
29
|
+
- text: About Me
|
|
30
|
+
url: /index.html
|
|
31
|
+
- text: Resume
|
|
32
|
+
url: /resume.html
|
|
33
|
+
- text: Portfolio
|
|
34
|
+
url: /portfolio.html
|
|
35
|
+
- text: Templates
|
|
36
|
+
url: /templates.html
|
|
37
|
+
- text: Blog
|
|
38
|
+
url: /blog.html
|
|
39
|
+
- text: Contact
|
|
40
|
+
url: /contact.html
|
|
41
|
+
- text: Post
|
|
42
|
+
url: /post.html
|
|
43
|
+
- text: Project
|
|
44
|
+
url: /project.html
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# Social Media
|
|
48
|
+
socials:
|
|
49
|
+
GitHub:
|
|
50
|
+
GitLab:
|
|
51
|
+
Instagram:
|
|
52
|
+
Facebook:
|
|
53
|
+
|
|
54
|
+
# Build settings
|
|
55
|
+
# Markdown Processing
|
|
56
|
+
markdown: kramdown
|
|
57
|
+
highlighter: rouge
|
|
58
|
+
permalink: pretty
|
|
59
|
+
|
|
60
|
+
# Markdown Processing
|
|
61
|
+
plugins:
|
|
62
|
+
- jekyll-feed
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# Custom Collections
|
|
66
|
+
collections:
|
|
67
|
+
portfolio:
|
|
68
|
+
output: true
|
|
69
|
+
|
|
70
|
+
# Sass Converter
|
|
71
|
+
sass:
|
|
72
|
+
style: compact
|
|
73
|
+
|
|
74
|
+
# Custom Sitemap
|
|
75
|
+
sitemap:
|
|
76
|
+
filename: "/sitemap.xml"
|
|
77
|
+
exclude:
|
|
78
|
+
- "/atom.xml"
|
|
79
|
+
- "/feed.xml"
|
|
80
|
+
- "/feed/index.xml"
|
|
81
|
+
include_posts:
|
|
82
|
+
- "/index.html"
|
|
83
|
+
change_frequency_name: "change_frequency"
|
|
84
|
+
priority_name: "priority"
|
|
85
|
+
|
|
86
|
+
# Exclude from processing.
|
|
87
|
+
# The following items will not be processed, by default.
|
|
88
|
+
# Any item listed under the `exclude:` key here will be automatically added to
|
|
89
|
+
# the internal "default list".
|
|
90
|
+
#
|
|
91
|
+
# Excluded items can be processed by explicitly listing the directories or
|
|
92
|
+
# their entries' file path in the `include:` list.
|
|
93
|
+
#
|
|
94
|
+
exclude:
|
|
95
|
+
- .sass-cache/
|
|
96
|
+
- .jekyll-cache/
|
|
97
|
+
- gemfiles/
|
|
98
|
+
- Gemfile
|
|
99
|
+
- Gemfile.lock
|
|
100
|
+
- node_modules/
|
|
101
|
+
- vendor/bundle/
|
|
102
|
+
- vendor/cache/
|
|
103
|
+
- vendor/gems/
|
|
104
|
+
- vendor/ruby/
|
|
105
|
+
- "README.md"
|
|
106
|
+
- "LICENSE.md"
|
|
107
|
+
- CNAME
|
|
108
|
+
|
|
109
|
+
destination: ./build
|
|
110
|
+
|
|
111
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<div class="back-to-top"></div>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<!-- Clients -->
|
|
2
|
+
<h2 class="title title--h2 mt-4">Clients</h2>
|
|
3
|
+
<div class="swiper-container js-carousel-clients">
|
|
4
|
+
<div class="swiper-wrapper">
|
|
5
|
+
<!-- Item client -->
|
|
6
|
+
<figure class="swiper-slide">
|
|
7
|
+
<a href="#"><img class="logo-client" src="assets/images/clients/logo-1-color.png" alt="Logo" /></a>
|
|
8
|
+
</figure>
|
|
9
|
+
|
|
10
|
+
<!-- Item client -->
|
|
11
|
+
<figure class="swiper-slide">
|
|
12
|
+
<a href="#"><img class="logo-client" src="assets/images/clients/logo-2-color.png" alt="Logo" /></a>
|
|
13
|
+
</figure>
|
|
14
|
+
|
|
15
|
+
<!-- Item client -->
|
|
16
|
+
<figure class="swiper-slide">
|
|
17
|
+
<a href="#"><img class="logo-client" src="assets/images/clients/logo-3-color.png" alt="Logo" /></a>
|
|
18
|
+
</figure>
|
|
19
|
+
|
|
20
|
+
<!-- Item client -->
|
|
21
|
+
<figure class="swiper-slide">
|
|
22
|
+
<a href="#"><img class="logo-client" src="assets/images/clients/logo-4-color.png" alt="Logo" /></a>
|
|
23
|
+
</figure>
|
|
24
|
+
|
|
25
|
+
<!-- Item client -->
|
|
26
|
+
<figure class="swiper-slide">
|
|
27
|
+
<a href="#"><img class="logo-client" src="assets/images/clients/logo-5-color.png" alt="Logo" /></a>
|
|
28
|
+
</figure>
|
|
29
|
+
|
|
30
|
+
<!-- Item client -->
|
|
31
|
+
<figure class="swiper-slide">
|
|
32
|
+
<a href="#"><img class="logo-client" src="assets/images/clients/logo-6-color.png" alt="Logo" /></a>
|
|
33
|
+
</figure>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<div class="swiper-pagination"></div>
|
|
37
|
+
</div><!-- /swiper-container -->
|
data/_includes/meta.html
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
2
|
+
<meta charset="utf-8">
|
|
3
|
+
<title>{{ page.title }} - {{ site.title }}</title>
|
|
4
|
+
<!-- Meta Data -->
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
7
|
+
<meta name="format-detection" content="telephone=no"/>
|
|
8
|
+
<meta name="format-detection" content="address=no"/>
|
|
9
|
+
<meta name="author" content="DesignofCp" />
|
|
10
|
+
<meta name="description" content="vCard" />
|
|
11
|
+
|
|
12
|
+
<!-- Open Graph data -->
|
|
13
|
+
<meta property="og:title" content="DesignofCp" />
|
|
14
|
+
<meta property="og:type" content="4-in-1 Telecommunications" />
|
|
15
|
+
<meta property="og:url" content="https://4in1telecommunications.com" />
|
|
16
|
+
<meta property="og:image" content="{{ site.url }}/assets/images/social.jpg" />
|
|
17
|
+
<meta property="og:description" content="vCard" />
|
|
18
|
+
<meta property="og:site_name" content="vCard" />
|
|
19
|
+
|
|
20
|
+
<!-- Favicons -->
|
|
21
|
+
<link rel="apple-touch-icon" sizes="144x144" href="{{ site.url }}/assets/images/favicons/apple-touch-icon-144x144.png">
|
|
22
|
+
<link rel="apple-touch-icon" sizes="114x114" href="{{ site.url }}/assets/images/favicons/apple-touch-icon-114x114.png">
|
|
23
|
+
<link rel="apple-touch-icon" sizes="72x72" href="{{ site.url }}/assets/images/favicons/apple-touch-icon-72x72.png">
|
|
24
|
+
<link rel="apple-touch-icon" sizes="57x57" href="{{ site.url }}/assets/images/favicons/apple-touch-icon-57x57.png">
|
|
25
|
+
<link rel="shortcut icon" href="{{ site.url }}/assets/images/favicons/favicon.png" type="image/png">
|
|
26
|
+
|
|
27
|
+
<link rel="stylesheet" type="text/css" href="{{ site.url }}/assets/css/vendors/bootstrap.min.css"/>
|
|
28
|
+
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!-- PhotoSwipe -->
|
|
2
|
+
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
|
|
3
|
+
<div class="pswp__bg"></div>
|
|
4
|
+
|
|
5
|
+
<div class="pswp__scroll-wrap">
|
|
6
|
+
<div class="pswp__container">
|
|
7
|
+
<div class="pswp__item"></div>
|
|
8
|
+
<div class="pswp__item"></div>
|
|
9
|
+
<div class="pswp__item"></div>
|
|
10
|
+
</div>
|
|
11
|
+
|
|
12
|
+
<div class="pswp__ui pswp__ui--hidden">
|
|
13
|
+
<div class="pswp__top-bar">
|
|
14
|
+
<div class="pswp__counter"></div>
|
|
15
|
+
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
|
|
16
|
+
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
|
|
17
|
+
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
|
|
18
|
+
|
|
19
|
+
<div class="pswp__preloader">
|
|
20
|
+
<div class="pswp__preloader__icn">
|
|
21
|
+
<div class="pswp__preloader__cut">
|
|
22
|
+
<div class="pswp__preloader__donut"></div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
|
|
28
|
+
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
|
|
29
|
+
<div class="pswp__share-tooltip"></div>
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
|
|
33
|
+
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
|
|
34
|
+
|
|
35
|
+
<div class="pswp__caption">
|
|
36
|
+
<div class="pswp__caption__center"></div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<!-- Full review 1 -->
|
|
2
|
+
<div id="review-1" class="popup mfp-hide mfp-with-anim">
|
|
3
|
+
<div class="row">
|
|
4
|
+
<div class="col-12 col-sm-2 full-rewiew-con-avatar">
|
|
5
|
+
<figure class="box box-avatar">
|
|
6
|
+
<img src="assets/images/avatar-1.png" alt="DesignofCp">
|
|
7
|
+
</figure>
|
|
8
|
+
<div class="review-icon-quote"></div>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="col-12 col-sm-10 full-rewiew-con-text">
|
|
11
|
+
<h2 class="title title--h2 mb-1">DesignofCp</h2>
|
|
12
|
+
<span class="review-date">14 June, 2021</span>
|
|
13
|
+
<p>DesignofCp was hired to create a corporate identity. We were very pleased with the work done. She has a lot of experience and is very concerned about the needs of client.
|
|
14
|
+
Lorem ipsum dolor sit amet, ullamcous cididt consectetur adipiscing elit, seds do et eiusmod tempor incididunt ut laborels dolore magnarels alia.</p>
|
|
15
|
+
<p>Ut enim ad nesid utminim veniam, quis nostrud eiusmo exercitation ullamco labori is amco commodo consequat seds eiusmod. Adipisicing velit eu eiusmod nisi ad nulla.
|
|
16
|
+
Magna deserunt ipsum pariatur sunt incididunt culpa cupidatat. Pariatur occaecat enim dolor culpa nisi ea eiusmod do qui culpa consectetur laboris eiusmod anim.</p>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<!-- Full review 2 -->
|
|
22
|
+
<div id="review-2" class="popup mfp-hide mfp-with-anim">
|
|
23
|
+
<div class="row">
|
|
24
|
+
<div class="col-12 col-sm-2 full-rewiew-con-avatar">
|
|
25
|
+
<figure class="box box-avatar">
|
|
26
|
+
<img src="assets/images/avatar-2.png" alt="Daniel Lewis">
|
|
27
|
+
</figure>
|
|
28
|
+
<div class="review-icon-quote"></div>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="col-12 col-sm-10 full-rewiew-con-text">
|
|
31
|
+
<h2 class="title title--h2 mb-1">Jessica Miller</h2>
|
|
32
|
+
<span class="review-date">14 June, 2021</span>
|
|
33
|
+
<p>Ricardo was hired to create a corporate identity. We were very pleased with the work done. She has a lot of experience and is very concerned about the needs of client.
|
|
34
|
+
Lorem ipsum dolor sit amet, ullamcous cididt consectetur adipiscing elit, seds do et eiusmod tempor incididunt ut laborels dolore magnarels alia.</p>
|
|
35
|
+
<p>Ut enim ad nesid utminim veniam, quis nostrud eiusmo exercitation ullamco labori is amco commodo consequat seds eiusmod. Adipisicing velit eu eiusmod nisi ad nulla.
|
|
36
|
+
Magna deserunt ipsum pariatur sunt incididunt culpa cupidatat. Pariatur occaecat enim dolor culpa nisi ea eiusmod do qui culpa consectetur laboris eiusmod anim.</p>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<!-- Full review 3 -->
|
|
42
|
+
<div id="review-3" class="popup mfp-hide mfp-with-anim">
|
|
43
|
+
<div class="row">
|
|
44
|
+
<div class="col-12 col-sm-2 full-rewiew-con-avatar">
|
|
45
|
+
<figure class="box box-avatar">
|
|
46
|
+
<img src="assets/images/avatar-3.png" alt="Daniel Lewis">
|
|
47
|
+
</figure>
|
|
48
|
+
<div class="review-icon-quote"></div>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="col-12 col-sm-10 full-rewiew-con-text">
|
|
51
|
+
<h2 class="title title--h2 mb-1">Emily Evans</h2>
|
|
52
|
+
<span class="review-date">14 June, 2021</span>
|
|
53
|
+
<p>Ricardo was hired to create a corporate identity. We were very pleased with the work done. She has a lot of experience and is very concerned about the needs of client.
|
|
54
|
+
Lorem ipsum dolor sit amet, ullamcous cididt consectetur adipiscing elit, seds do et eiusmod tempor incididunt ut laborels dolore magnarels alia.</p>
|
|
55
|
+
<p>Ut enim ad nesid utminim veniam, quis nostrud eiusmo exercitation ullamco labori is amco commodo consequat seds eiusmod. Adipisicing velit eu eiusmod nisi ad nulla.
|
|
56
|
+
Magna deserunt ipsum pariatur sunt incididunt culpa cupidatat. Pariatur occaecat enim dolor culpa nisi ea eiusmod do qui culpa consectetur laboris eiusmod anim.</p>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
|
|
61
|
+
<!-- Full review 4 -->
|
|
62
|
+
<div id="review-4" class="popup mfp-hide mfp-with-anim">
|
|
63
|
+
<div class="row">
|
|
64
|
+
<div class="col-12 col-sm-2 full-rewiew-con-avatar">
|
|
65
|
+
<figure class="box box-avatar">
|
|
66
|
+
<img src="assets/images/avatar-4.png" alt="Daniel Lewis">
|
|
67
|
+
</figure>
|
|
68
|
+
<div class="review-icon-quote"></div>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="col-12 col-sm-10 full-rewiew-con-text">
|
|
71
|
+
<h2 class="title title--h2 mb-1">Henry William</h2>
|
|
72
|
+
<span class="review-date">14 June, 2021</span>
|
|
73
|
+
<p>Ricardo was hired to create a corporate identity. We were very pleased with the work done. She has a lot of experience and is very concerned about the needs of client.
|
|
74
|
+
Lorem ipsum dolor sit amet, ullamcous cididt consectetur adipiscing elit, seds do et eiusmod tempor incididunt ut laborels dolore magnarels alia.</p>
|
|
75
|
+
<p>Ut enim ad nesid utminim veniam, quis nostrud eiusmo exercitation ullamco labori is amco commodo consequat seds eiusmod. Adipisicing velit eu eiusmod nisi ad nulla.
|
|
76
|
+
Magna deserunt ipsum pariatur sunt incididunt culpa cupidatat. Pariatur occaecat enim dolor culpa nisi ea eiusmod do qui culpa consectetur laboris eiusmod anim.</p>
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<!-- Sidebar -->
|
|
2
|
+
<aside class="col-12 col-md-12 col-xl-3">
|
|
3
|
+
<div class="sidebar box-outer sticky-column">
|
|
4
|
+
<!-- My photo -->
|
|
5
|
+
<div class="sidebar__base-info">
|
|
6
|
+
<figure class="avatar-box">
|
|
7
|
+
<img src="assets/images/my-avatar.png" alt="DesignofCp" />
|
|
8
|
+
</figure>
|
|
9
|
+
|
|
10
|
+
<div class="text-xl-center">
|
|
11
|
+
<h3 class="title title--h3 sidebar__name">DesignofCp</h3>
|
|
12
|
+
<div class="badge">Creative Director</div>
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
<button class="btn btn--small btn--icon-right sidebar__btn js-btn-toggle"><span>Show Contacts</span><i
|
|
16
|
+
class="feathericon-chevron-down"></i></button>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
<div class="sidebar__additional-info js-show">
|
|
20
|
+
<div class="separation"></div>
|
|
21
|
+
<ul class="details-info">
|
|
22
|
+
<!-- Email -->
|
|
23
|
+
<li class="details-info__item">
|
|
24
|
+
<span class="box icon-box"><i class="font-icon icon-envelope"></i></span>
|
|
25
|
+
<div class="contacts-block__info">
|
|
26
|
+
<span class="overhead">Email</span>
|
|
27
|
+
<a class="text-overflow" href="mailto:support@4in1telecommunications.com"
|
|
28
|
+
title="support@4in1telecommunications.com">support@4in1telecommunications.com</a>
|
|
29
|
+
</div>
|
|
30
|
+
</li>
|
|
31
|
+
<!-- Phone -->
|
|
32
|
+
<li class="details-info__item">
|
|
33
|
+
<span class="box icon-box"><i class="font-icon icon-phone"></i></span>
|
|
34
|
+
<div class="contacts-block__info">
|
|
35
|
+
<span class="overhead">Phone</span>
|
|
36
|
+
<span class="text-overflow" title="+1 (512) 655-3315">+1 (512) 655-3315</span>
|
|
37
|
+
</div>
|
|
38
|
+
</li>
|
|
39
|
+
<!-- Remote Developer -->
|
|
40
|
+
<li class="details-info__item">
|
|
41
|
+
<span class="box icon-box"><i class="font-icon icon-calendar"></i></span>
|
|
42
|
+
<div class="contacts-block__info">
|
|
43
|
+
<span class="overhead">Remote Developer</span>
|
|
44
|
+
<span class="text-overflow" title="Web Design">Web Design</span>
|
|
45
|
+
</div>
|
|
46
|
+
</li>
|
|
47
|
+
<!-- Location -->
|
|
48
|
+
<li class="details-info__item">
|
|
49
|
+
<span class="box icon-box"><i class="font-icon icon-location"></i></span>
|
|
50
|
+
<div class="contacts-block__info">
|
|
51
|
+
<span class="overhead">Location</span>
|
|
52
|
+
<span class="text-overflow" title="Internet">Internet</span>
|
|
53
|
+
</div>
|
|
54
|
+
</li>
|
|
55
|
+
</ul>
|
|
56
|
+
<div class="separation d-xl-none"></div>
|
|
57
|
+
|
|
58
|
+
<!-- Social -->
|
|
59
|
+
<div class="social">
|
|
60
|
+
<a class="social__link" href="https://github.com/4-in-1-telecommunications"><i class="feathericon-github"></i></a>
|
|
61
|
+
<a class="social__link" href="https://www.facebook.com/4in1Telecommunications"><i class="feathericon-facebook"></i></a>
|
|
62
|
+
<a class="social__link" href="https://www.youtube.com/channel/UCj03VatAzQy7PY_8QTxKZeA?sub_confirmation=1"><i class="feathericon-youtube"></i></a>
|
|
63
|
+
<a class="social__link" href="https://www.instagram.com/tookooltech/"><i class="feathericon-instagram"></i></a>
|
|
64
|
+
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
</aside>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<!-- Skills -->
|
|
2
|
+
<h2 class="title title--h2 mt-3">My Skills</h2>
|
|
3
|
+
<div class="box box-inner mb-0">
|
|
4
|
+
<!-- Web Design -->
|
|
5
|
+
<div class="progress">
|
|
6
|
+
<div class="progress-text"><span>Web Design</span> 80%</div>
|
|
7
|
+
<div class="progress-bar"><span role="progressbar" aria-valuenow="80" aria-valuemin="0"
|
|
8
|
+
aria-valuemax="100"></span></div>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
<!-- Web Design -->
|
|
12
|
+
<div class="progress">
|
|
13
|
+
<div class="progress-text"><span>Graphic Design</span> 75%</div>
|
|
14
|
+
<div class="progress-bar"><span role="progressbar" aria-valuenow="75" aria-valuemin="0"
|
|
15
|
+
aria-valuemax="100"></span></div>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
<!-- Web Design -->
|
|
19
|
+
<div class="progress">
|
|
20
|
+
<div class="progress-text"><span>Branding</span> 90%</div>
|
|
21
|
+
<div class="progress-bar"><span role="progressbar" aria-valuenow="90" aria-valuemin="0"
|
|
22
|
+
aria-valuemax="100"></span></div>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<!-- Web Design -->
|
|
26
|
+
<div class="progress">
|
|
27
|
+
<div class="progress-text"><span>WordPress</span> 50%</div>
|
|
28
|
+
<div class="progress-bar"><span role="progressbar" aria-valuenow="50" aria-valuemin="0"
|
|
29
|
+
aria-valuemax="100"></span></div>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<!-- Testimonials -->
|
|
2
|
+
<div class="testimonials">
|
|
3
|
+
<h2 class="title title--h2 mt-3">Testimonials</h2>
|
|
4
|
+
|
|
5
|
+
<div class="swiper-container js-carousel-review">
|
|
6
|
+
<div class="swiper-wrapper">
|
|
7
|
+
<!-- Item review -->
|
|
8
|
+
<div class="swiper-slide review-item box box-inner js-open-review" data-mfp-src="#review-1"
|
|
9
|
+
data-effect="mfp-zoom-out">
|
|
10
|
+
<figure class="box box-avatar">
|
|
11
|
+
<img src="assets/images/avatar-1.png" alt="DesignofCp">
|
|
12
|
+
</figure>
|
|
13
|
+
<h4 class="title title--h3">DesignofCp</h4>
|
|
14
|
+
<p class="review-item__caption">DesignofCp was hired to create a corporate identity. We were very
|
|
15
|
+
pleased with the work done...</p>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
<!-- Item review -->
|
|
19
|
+
<div class="swiper-slide review-item box box-inner js-open-review" data-mfp-src="#review-2"
|
|
20
|
+
data-effect="mfp-zoom-out">
|
|
21
|
+
<figure class="box box-avatar">
|
|
22
|
+
<img src="assets/images/avatar-2.png" alt="Daniel Lewis">
|
|
23
|
+
</figure>
|
|
24
|
+
<h4 class="title title--h3">Jessica Miller</h4>
|
|
25
|
+
<p class="review-item__caption">Thanks to the skill of Ricardo, we have a design that we can be
|
|
26
|
+
proud of. We are impressed with...</p>
|
|
27
|
+
</div>
|
|
28
|
+
|
|
29
|
+
<!-- Item review -->
|
|
30
|
+
<div class="swiper-slide review-item box box-inner js-open-review" data-mfp-src="#review-3"
|
|
31
|
+
data-effect="mfp-zoom-out">
|
|
32
|
+
<figure class="box box-avatar">
|
|
33
|
+
<img src="assets/images/avatar-3.png" alt="Daniel Lewis">
|
|
34
|
+
</figure>
|
|
35
|
+
<h4 class="title title--h3">Emily Evans</h4>
|
|
36
|
+
<p class="review-item__caption">Ricardo did a miracle with my website. It looks exactly as I
|
|
37
|
+
imagined it. Now I have a profession...</p>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
<!-- Item review -->
|
|
41
|
+
<div class="swiper-slide review-item box box-inner js-open-review" data-mfp-src="#review-4"
|
|
42
|
+
data-effect="mfp-zoom-out">
|
|
43
|
+
<figure class="box box-avatar">
|
|
44
|
+
<img src="assets/images/avatar-4.png" alt="Daniel Lewis">
|
|
45
|
+
</figure>
|
|
46
|
+
<h4 class="title title--h3">Henry William</h4>
|
|
47
|
+
<p class="review-item__caption">Thank you very much for your work on our project. It was a big
|
|
48
|
+
help for us. Thanks to the...</p>
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
|
|
52
|
+
<div class="swiper-pagination"></div>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{% include header.html %}
|
|
2
|
+
<head>
|
|
3
|
+
{% include meta.html %}
|
|
4
|
+
{% include mapbox.html %}
|
|
5
|
+
</head>
|
|
6
|
+
<body>
|
|
7
|
+
{% include preloader.html %}
|
|
8
|
+
<main class="main">
|
|
9
|
+
<div class="container gutter-top gutter-bottom">
|
|
10
|
+
<div class="row sticky-parent">
|
|
11
|
+
{% include sidebar.html %}
|
|
12
|
+
{{ content }}
|
|
13
|
+
</div><!-- sticky-parent -->
|
|
14
|
+
</div><!-- container -->
|
|
15
|
+
</main>
|
|
16
|
+
{% include backtotop.html %}
|
|
17
|
+
{% include javascripts.html %}
|
|
18
|
+
{% include mapbox-init.html %}
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{% include header.html %}
|
|
2
|
+
<head>
|
|
3
|
+
{% include meta.html %}
|
|
4
|
+
</head>
|
|
5
|
+
<body>
|
|
6
|
+
{% include preloader.html %}
|
|
7
|
+
<main class="main">
|
|
8
|
+
<div class="container gutter-top gutter-bottom">
|
|
9
|
+
<div class="row sticky-parent">
|
|
10
|
+
{% include sidebar.html %}
|
|
11
|
+
{{ content }}
|
|
12
|
+
</div><!-- sticky-parent -->
|
|
13
|
+
</div><!-- container -->
|
|
14
|
+
</main>
|
|
15
|
+
{% include backtotop.html %}
|
|
16
|
+
{% include javascripts.html %}
|
|
17
|
+
</body>
|
|
18
|
+
</html>
|
data/_layouts/post.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{% include header.html %}
|
|
2
|
+
<head>
|
|
3
|
+
{% include meta.html %}
|
|
4
|
+
</head>
|
|
5
|
+
<body>
|
|
6
|
+
{% include preloader.html %}
|
|
7
|
+
{% include scroll.html %}
|
|
8
|
+
<main class="main">
|
|
9
|
+
<div class="container gutter-top gutter-bottom">
|
|
10
|
+
<div class="row sticky-parent">
|
|
11
|
+
{% include sidebar.html %}
|
|
12
|
+
|
|
13
|
+
{{ content }}
|
|
14
|
+
</div><!-- /sticky -->
|
|
15
|
+
</div><!-- container -->
|
|
16
|
+
</main>
|
|
17
|
+
|
|
18
|
+
{% include backtotop.html %}
|
|
19
|
+
{% include javascripts.html %}
|
|
20
|
+
</body>
|
|
21
|
+
</html>
|