jekyll-theme-digitalebrain 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed12df08a24362c1d15f59fef499306c0bd1efe3
4
- data.tar.gz: 28d06002c65db284d53a8e4be13db0d64797e252
3
+ metadata.gz: 7b09a7c94af35a0832c182239a1da14b01f88f24
4
+ data.tar.gz: 79a3c12eb0914ebf97f4bb97d927c376201b4493
5
5
  SHA512:
6
- metadata.gz: 0e18defbc4903a172e1e951d8f9eb9f574907563a9621de7f37838a981306e209da38a536205752d1f6917ead54eeed5e7e569b296d13adff460c07e40033969
7
- data.tar.gz: 76080d84269d378f77880a803c41abc7b7383b2df8a181134ad8ebf849ebd9cb52bf25287cff1f9f4b8def528dcc63014e352857027810cdfbcd2b3cf553939c
6
+ metadata.gz: 287a2d45b52e4f554b53d5091ddcdbd110bbd9189696fd1613354d55e83c8d44d3330da9bf18cf3133d817e354228618e2a59666c9f57932fde949d1389d82fd
7
+ data.tar.gz: e3d5038de445791d72bab9d459a320ed49cea6a10248d0863a4e004f22e141ecb206d402e5b35704ac4dd973f7309c067c7f8f8d514f8e578d938d7fd4c32327
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 PC
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/_config.yml ADDED
@@ -0,0 +1,49 @@
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
+ # Site settings
12
+ # These are used to personalize your new site. If you look in the HTML files,
13
+ # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14
+ # You can create any custom variable you would like, and they will be accessible
15
+ # in the templates via {{ site.myvariable }}.
16
+ title: Digitale Brain
17
+ email: pcisnerp@gmail.com
18
+ description: >- # this means to ignore newlines until "baseurl:"
19
+ Write an awesome description for your new site here. You can edit this
20
+ line in _config.yml. It will appear in your document head meta (for
21
+ Google search results) and in your feed.xml site description.
22
+ # Index File
23
+ #####################################
24
+ content: DigitaleBrain
25
+ content2: Demo
26
+ ButtonContent: Read Me
27
+ #####################################
28
+ baseurl: "" # the subpath of your site, e.g. /blog
29
+ url: "" # the base hostname & protocol for your site, e.g. http://example.com
30
+ twitter_username:
31
+ github_username:
32
+
33
+ # Build settings
34
+ markdown: kramdown
35
+ theme: jekyll-theme-digitalebrain
36
+ plugins:
37
+ - jekyll-feed
38
+
39
+ # Exclude from processing.
40
+ # The following items will not be processed, by default. Create a custom list
41
+ # to override the default setting.
42
+ # exclude:
43
+ # - Gemfile
44
+ # - Gemfile.lock
45
+ # - node_modules
46
+ # - vendor/bundle/
47
+ # - vendor/cache/
48
+ # - vendor/gems/
49
+ # - vendor/ruby/
@@ -1,41 +1 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- {% include _head.html %}
4
- <body>
5
- {% include _navbar.html %}
6
-
7
- <section class="bg-mobile ftco-cover overlay" id="section-home" data-aos="fade" data-stellar-background-ratio="0.5">
8
- <div class="container">
9
- <div class="row align-items-center justify-content-center ftco-vh-100">
10
- <div class="col-md-8 text-center">
11
- <h1 class="ftco-heading mb-4" data-aos="fade-up" data-aos-delay="500"> {{ site.content }} </h1>
12
- <h2 class="h5 ftco-subheading mb-5" data-aos="fade-up" data-aos-delay="600"> {{ site.content2 }} </h2>
13
- <p data-aos="fade-up" data-aos-delay="700"><a href="#" target="_blank" class="btn btn-outline-white px-4 py-3" data-toggle="modal" data-target="#reservationModal">{{ site.ButtonContent }}</a></p>
14
- </div>
15
- </div>
16
- </div>
17
- </section>
18
-
19
- <!-- extra content -->
20
-
21
- <!-- loader -->
22
-
23
- {% include _footer.html %}
24
-
25
- <div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
26
-
27
- <script src="assets/js/jquery.min.js"></script>
28
- <script src="assets/js/jquery-migrate-3.0.1.min.js"></script>
29
- <script src="assets/js/popper.min.js"></script>
30
- <script src="assets/js/bootstrap.min.js"></script>
31
- <script src="assets/js/jquery.easing.1.3.js"></script>
32
- <script src="assets/js/jquery.waypoints.min.js"></script>
33
- <script src="assets/js/jquery.stellar.min.js"></script>
34
- <script src="assets/js/owl.carousel.min.js"></script>
35
- <script src="assets/js/jquery.magnific-popup.min.js"></script>
36
- <script src="assets/js/aos.js"></script>
37
- <script src="assets/js/jquery.animateNumber.min.js"></script>
38
- <script src="assets/js/main.js"></script>
39
-
40
- </body>
41
- </html>
1
+ {{ content }}
data/_layouts/page.html CHANGED
@@ -1,39 +1,5 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- {% include _head.html %}
4
- <body>
5
- {% include _navbar.html %}
6
- <section class="bg-pages ftco-cover overlay" id="section-home" data-aos="fade" data-stellar-background-ratio="0.5">
7
- <div class="container">
8
- <div class="row align-items-center justify-content-center ftco-vh-100">
9
- <div id="left-main" class="col-md-8 text-center">
1
+ ---
2
+ layout: default
3
+ ---
10
4
 
11
- {{ page.content }}
12
-
13
- </div>
14
- </div>
15
- </div>
16
- <section/>
17
- <!-- extra content -->
18
-
19
- <!-- loader -->
20
-
21
- {% include _footer.html %}
22
-
23
- <div id="ftco-loader" class="show fullscreen"><svg class="circular" width="48px" height="48px"><circle class="path-bg" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke="#eeeeee"/><circle class="path" cx="24" cy="24" r="22" fill="none" stroke-width="4" stroke-miterlimit="10" stroke="#F96D00"/></svg></div>
24
-
25
- <script src="assets/js/jquery.min.js"></script>
26
- <script src="assets/js/jquery-migrate-3.0.1.min.js"></script>
27
- <script src="assets/js/popper.min.js"></script>
28
- <script src="assets/js/bootstrap.min.js"></script>
29
- <script src="assets/js/jquery.easing.1.3.js"></script>
30
- <script src="assets/js/jquery.waypoints.min.js"></script>
31
- <script src="assets/js/jquery.stellar.min.js"></script>
32
- <script src="assets/js/owl.carousel.min.js"></script>
33
- <script src="assets/js/jquery.magnific-popup.min.js"></script>
34
- <script src="assets/js/aos.js"></script>
35
- <script src="assets/js/jquery.animateNumber.min.js"></script>
36
- <script src="assets/js/main.js"></script>
37
-
38
- </body>
39
- </html>
5
+ {{ content }}
data/about.md ADDED
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: page
3
+ title: Blogging Like a Hacker - About Us
4
+ ---
5
+
6
+ Lorem ipsum dolor sit amet, nec eu verear phaedrum constituto, timeam admodum temporibus in sed. Sit mutat exerci et, ad inani iuvaret definitionem mel. Ut eum vero nullam vulputate, mel eu scripta probatus. At qui illum paulo, has cu animal ceteros eleifend. Bonorum pertinax te ius, usu fugit dicunt ad, at doming aeterno referrentur nec. In qui illud omittantur, vim ei ubique persecuti honestatis.
7
+
8
+ Quot moderatius cu pri. Eu cum posse scripta, homero euismod scriptorem mea no. Id nostrum postulant sententiae cum, ne ancillae nominati per, ad nec populo qualisque principes. Graeco vulputate ne eam, dicta honestatis eu eam. Veniam everti no vel.
9
+
10
+ Oporteat philosophia sed an. Graeci audiam probatus vim ne, no usu quem autem adolescens. His an ornatus disputationi, accumsan perpetua ei has. In vivendo accusata mei, ne quo elit fierent detracto. At erat facer forensibus nec, oratio essent quodsi pri cu. Libris eligendi legendos nam ad, vitae dolorem dissentiet no his.
data/assets/.DS_Store ADDED
Binary file
@@ -0,0 +1 @@
1
+ eyIxIjp7IklEIjoxLCJuYW1lIjoiTXkgaWNvbnMgY29sbGVjdGlvbiIsImJvb2ttYXJrX2lkIjoieDZzczY2b3plY2cwMDAwMCIsImNyZWF0ZWQiOm51bGwsInVwZGF0ZWQiOjE1NDk2NzIxNzgsImFjdGl2ZSI6MSwic291cmNlIjoibG9jYWwiLCJvcmRlciI6MCwiY29sb3IiOiIwMDAwMDAiLCJzdGF0dXMiOjF9LCJ4NnNzNjZvemVjZzAwMDAwIjpbeyJpZCI6NzMxMTE5LCJ0ZWFtIjowLCJuYW1lIjoiYnJhaW4iLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0IjoxfSx7ImlkIjo5OTI1OTUsInRlYW0iOjAsIm5hbWUiOiJicmFpbiIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjJ9LHsiaWQiOjg4MzAzOSwidGVhbSI6MCwibmFtZSI6ImJyYWluIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6M30seyJpZCI6ODk3MjE5LCJ0ZWFtIjowLCJuYW1lIjoiYnJhaW4iLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0Ijo0fSx7ImlkIjo2NTM1MDAsInRlYW0iOjAsIm5hbWUiOiJicmFpbiIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjV9LHsiaWQiOjExMjI1NzcsInRlYW0iOjAsIm5hbWUiOiJicmFpbiIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjZ9LHsiaWQiOjY1Mzc3OSwidGVhbSI6MCwibmFtZSI6ImJyYWluIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6N30seyJpZCI6MTUyODA5LCJ0ZWFtIjowLCJuYW1lIjoidHdpdHRlciIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjh9LHsiaWQiOjEwNTEzNjAsInRlYW0iOjAsIm5hbWUiOiJmYWNlYm9vayIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjl9LHsiaWQiOjEwNTEzNjQsInRlYW0iOjAsIm5hbWUiOiJpbnN0YWdyYW0iLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0IjoxMH0seyJpZCI6MTA1MTM4MiwidGVhbSI6MCwibmFtZSI6InR3aXR0ZXIiLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0IjoxMX0seyJpZCI6MTA1MTM1MCwidGVhbSI6MCwibmFtZSI6ImJyYW5kIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6MTJ9LHsiaWQiOjEwNTEzODQsInRlYW0iOjAsIm5hbWUiOiJsaW5rZWRpbiIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjEzfSx7ImlkIjoxMDUxMzY4LCJ0ZWFtIjowLCJuYW1lIjoidGVsZWdyYW0iLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0IjoxNH0seyJpZCI6MTA1MTM3NywidGVhbSI6MCwibmFtZSI6ImdpdGh1YiIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjE1fV19
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/index.md ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: default
3
+ title: Blogging Like a Hacker
4
+ ---
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-digitalebrain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pablo Cisneros
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.8'
19
+ version: 3.8.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.8'
26
+ version: 3.8.5
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +59,9 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - LICENSE.txt
62
63
  - README.md
64
+ - _config.yml
63
65
  - _includes/_footer.html
64
66
  - _includes/_head.html
65
67
  - _includes/_navbar.html
@@ -150,6 +152,8 @@ files:
150
152
  - _sass/bootstrap/utilities/_text.scss
151
153
  - _sass/bootstrap/utilities/_visibility.scss
152
154
  - _sass/style.scss
155
+ - about.md
156
+ - assets/.DS_Store
153
157
  - assets/css/Flaticon.woff
154
158
  - assets/css/Flaticon.woff2
155
159
  - assets/css/_flaticon.scss
@@ -172,6 +176,7 @@ files:
172
176
  - assets/css/owl.carousel.min.css
173
177
  - assets/css/owl.theme.default.min.css
174
178
  - assets/css/style.css
179
+ - assets/fonts/flaticon/backup.txt
175
180
  - assets/fonts/flaticon/font/Flaticon.eot
176
181
  - assets/fonts/flaticon/font/Flaticon.svg
177
182
  - assets/fonts/flaticon/font/Flaticon.ttf
@@ -197,6 +202,12 @@ files:
197
202
  - assets/fonts/open-iconic/open-iconic.svg
198
203
  - assets/fonts/open-iconic/open-iconic.ttf
199
204
  - assets/fonts/open-iconic/open-iconic.woff
205
+ - assets/images/.DS_Store
206
+ - assets/images/bg_1.jpg
207
+ - assets/images/bg_1_.jpg
208
+ - assets/images/bubbles_.jpg
209
+ - assets/images/favicon.png
210
+ - assets/images/loc.png
200
211
  - assets/js/aos.js
201
212
  - assets/js/bootstrap-datepicker.js
202
213
  - assets/js/bootstrap.min.js
@@ -213,6 +224,7 @@ files:
213
224
  - assets/js/main.js
214
225
  - assets/js/owl.carousel.min.js
215
226
  - assets/js/popper.min.js
227
+ - index.md
216
228
  homepage: http://www.digitalebrain.com
217
229
  licenses:
218
230
  - MIT