vv5-portfolio 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +53 -0
  4. data/_includes/about_abstract.html +14 -0
  5. data/_includes/footer.html +16 -0
  6. data/_includes/footer_social.html +39 -0
  7. data/_includes/head.html +27 -0
  8. data/_includes/header-taglines.html +9 -0
  9. data/_includes/header.html +23 -0
  10. data/_includes/nav.html +26 -0
  11. data/_includes/portfolio.html +26 -0
  12. data/_includes/portfolio_carousel.html +30 -0
  13. data/_includes/portfolio_detail.html +46 -0
  14. data/_includes/portfolio_nav.html +9 -0
  15. data/_includes/spacer.html +5 -0
  16. data/_layouts/default.html +11 -0
  17. data/_layouts/home.html +13 -0
  18. data/_layouts/page.html +7 -0
  19. data/_layouts/post.html +32 -0
  20. data/_sass/_footer.scss +42 -0
  21. data/_sass/_header.scss +32 -0
  22. data/_sass/_portfolio.scss +64 -0
  23. data/_sass/_variables.scss +3 -0
  24. data/_sass/bootstrap/_bootstrap-grid.scss +35 -0
  25. data/_sass/bootstrap/_bootstrap-reboot.scss +12 -0
  26. data/_sass/bootstrap/_bootstrap.scss +42 -0
  27. data/_sass/bootstrap/bootstrap/_alert.scss +51 -0
  28. data/_sass/bootstrap/bootstrap/_badge.scss +47 -0
  29. data/_sass/bootstrap/bootstrap/_breadcrumb.scss +38 -0
  30. data/_sass/bootstrap/bootstrap/_button-group.scss +166 -0
  31. data/_sass/bootstrap/bootstrap/_buttons.scss +147 -0
  32. data/_sass/bootstrap/bootstrap/_card.scss +270 -0
  33. data/_sass/bootstrap/bootstrap/_carousel.scss +191 -0
  34. data/_sass/bootstrap/bootstrap/_close.scss +34 -0
  35. data/_sass/bootstrap/bootstrap/_code.scss +56 -0
  36. data/_sass/bootstrap/bootstrap/_custom-forms.scss +282 -0
  37. data/_sass/bootstrap/bootstrap/_dropdown.scss +131 -0
  38. data/_sass/bootstrap/bootstrap/_forms.scss +333 -0
  39. data/_sass/bootstrap/bootstrap/_functions.scss +86 -0
  40. data/_sass/bootstrap/bootstrap/_grid.scss +52 -0
  41. data/_sass/bootstrap/bootstrap/_images.scss +42 -0
  42. data/_sass/bootstrap/bootstrap/_input-group.scss +156 -0
  43. data/_sass/bootstrap/bootstrap/_jumbotron.scss +16 -0
  44. data/_sass/bootstrap/bootstrap/_list-group.scss +115 -0
  45. data/_sass/bootstrap/bootstrap/_media.scss +8 -0
  46. data/_sass/bootstrap/bootstrap/_mixins.scss +42 -0
  47. data/_sass/bootstrap/bootstrap/_modal.scss +168 -0
  48. data/_sass/bootstrap/bootstrap/_nav.scss +118 -0
  49. data/_sass/bootstrap/bootstrap/_navbar.scss +311 -0
  50. data/_sass/bootstrap/bootstrap/_pagination.scss +72 -0
  51. data/_sass/bootstrap/bootstrap/_popover.scss +183 -0
  52. data/_sass/bootstrap/bootstrap/_print.scss +110 -0
  53. data/_sass/bootstrap/bootstrap/_progress.scss +33 -0
  54. data/_sass/bootstrap/bootstrap/_reboot.scss +505 -0
  55. data/_sass/bootstrap/bootstrap/_root.scss +19 -0
  56. data/_sass/bootstrap/bootstrap/_tables.scss +180 -0
  57. data/_sass/bootstrap/bootstrap/_tooltip.scss +115 -0
  58. data/_sass/bootstrap/bootstrap/_transitions.scss +36 -0
  59. data/_sass/bootstrap/bootstrap/_type.scss +125 -0
  60. data/_sass/bootstrap/bootstrap/_utilities.scss +14 -0
  61. data/_sass/bootstrap/bootstrap/_variables.scss +872 -0
  62. data/_sass/bootstrap/bootstrap/mixins/_alert.scss +13 -0
  63. data/_sass/bootstrap/bootstrap/mixins/_background-variant.scss +21 -0
  64. data/_sass/bootstrap/bootstrap/mixins/_badge.scss +12 -0
  65. data/_sass/bootstrap/bootstrap/mixins/_border-radius.scss +35 -0
  66. data/_sass/bootstrap/bootstrap/mixins/_box-shadow.scss +5 -0
  67. data/_sass/bootstrap/bootstrap/mixins/_breakpoints.scss +121 -0
  68. data/_sass/bootstrap/bootstrap/mixins/_buttons.scss +101 -0
  69. data/_sass/bootstrap/bootstrap/mixins/_caret.scss +65 -0
  70. data/_sass/bootstrap/bootstrap/mixins/_clearfix.scss +7 -0
  71. data/_sass/bootstrap/bootstrap/mixins/_float.scss +11 -0
  72. data/_sass/bootstrap/bootstrap/mixins/_forms.scss +133 -0
  73. data/_sass/bootstrap/bootstrap/mixins/_gradients.scss +45 -0
  74. data/_sass/bootstrap/bootstrap/mixins/_grid-framework.scss +69 -0
  75. data/_sass/bootstrap/bootstrap/mixins/_grid.scss +52 -0
  76. data/_sass/bootstrap/bootstrap/mixins/_hover.scss +61 -0
  77. data/_sass/bootstrap/bootstrap/mixins/_image.scss +36 -0
  78. data/_sass/bootstrap/bootstrap/mixins/_list-group.scss +24 -0
  79. data/_sass/bootstrap/bootstrap/mixins/_lists.scss +7 -0
  80. data/_sass/bootstrap/bootstrap/mixins/_nav-divider.scss +10 -0
  81. data/_sass/bootstrap/bootstrap/mixins/_navbar-align.scss +10 -0
  82. data/_sass/bootstrap/bootstrap/mixins/_pagination.scss +22 -0
  83. data/_sass/bootstrap/bootstrap/mixins/_reset-text.scss +17 -0
  84. data/_sass/bootstrap/bootstrap/mixins/_resize.scss +6 -0
  85. data/_sass/bootstrap/bootstrap/mixins/_screen-reader.scss +35 -0
  86. data/_sass/bootstrap/bootstrap/mixins/_size.scss +6 -0
  87. data/_sass/bootstrap/bootstrap/mixins/_table-row.scss +30 -0
  88. data/_sass/bootstrap/bootstrap/mixins/_text-emphasis.scss +14 -0
  89. data/_sass/bootstrap/bootstrap/mixins/_text-hide.scss +9 -0
  90. data/_sass/bootstrap/bootstrap/mixins/_text-truncate.scss +8 -0
  91. data/_sass/bootstrap/bootstrap/mixins/_transition.scss +9 -0
  92. data/_sass/bootstrap/bootstrap/mixins/_visibility.scss +7 -0
  93. data/_sass/bootstrap/bootstrap/utilities/_align.scss +8 -0
  94. data/_sass/bootstrap/bootstrap/utilities/_background.scss +19 -0
  95. data/_sass/bootstrap/bootstrap/utilities/_borders.scss +54 -0
  96. data/_sass/bootstrap/bootstrap/utilities/_clearfix.scss +3 -0
  97. data/_sass/bootstrap/bootstrap/utilities/_display.scss +56 -0
  98. data/_sass/bootstrap/bootstrap/utilities/_embed.scss +52 -0
  99. data/_sass/bootstrap/bootstrap/utilities/_flex.scss +46 -0
  100. data/_sass/bootstrap/bootstrap/utilities/_float.scss +9 -0
  101. data/_sass/bootstrap/bootstrap/utilities/_position.scss +36 -0
  102. data/_sass/bootstrap/bootstrap/utilities/_screenreaders.scss +11 -0
  103. data/_sass/bootstrap/bootstrap/utilities/_sizing.scss +12 -0
  104. data/_sass/bootstrap/bootstrap/utilities/_spacing.scss +51 -0
  105. data/_sass/bootstrap/bootstrap/utilities/_text.scss +52 -0
  106. data/_sass/bootstrap/bootstrap/utilities/_visibility.scss +11 -0
  107. data/assets/brand/header.jpg +0 -0
  108. data/assets/brand/logo.svg +15 -0
  109. data/assets/brand/profile.jpg +0 -0
  110. data/assets/main.js +0 -0
  111. data/assets/main.scss +28 -0
  112. data/assets/smooth.js +2 -0
  113. metadata +225 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 158f92b6ab0aeb36cb55ec907bde11b54ac09afe
4
+ data.tar.gz: eaec3ab1081d047d115c6da2ecb05b83fee60fd1
5
+ SHA512:
6
+ metadata.gz: a43a16e713dde1352adc1b16d773c6b8850ec1381a733bf52e29e06d58e8786cd53829c0f2e56607937960c70434deceb4b28e5f8aad1a41b13bde82c3b656f7
7
+ data.tar.gz: 940b37d7e6a426604855072013bd19635582f6c145d94a32eab4d3f81f27394e5d142d151a0a98fe5e1d2395799b00569f0d857a7ecc7200a7f9c0e5e3de58ca
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Ivan Reyes
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.
@@ -0,0 +1,53 @@
1
+ # portfolio
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 "portfolio"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: portfolio
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install portfolio
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/vectorvcinco/jekyll-portfolio. 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 `portfolio.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
+
53
+ Profile Photo by Matheus Bertelli from Pexels https://www.pexels.com/photo/adolescence-attractive-beautiful-blur-573299/
@@ -0,0 +1,14 @@
1
+ <section id="about" class="container row w-75 py-5 mx-auto">
2
+ <div class="col-md-4">
3
+ <img class="img-fluid rounded-circle" src="{{ site.picture }}">
4
+ </div>
5
+ <div class="col text-center">
6
+ <h1>About</h1>
7
+ <hr class="border-primary">
8
+ <p>
9
+ {% for page in site.pages %}{% if page.name =="about.md" %}
10
+ {{ page.content }}
11
+ {% endif %}{% endfor %}
12
+ </p>
13
+ </div>
14
+ </section>
@@ -0,0 +1,16 @@
1
+ <footer class="container-fluid bg-dark text-muted pt-3 footer">
2
+ <div class="row w-75 mx-auto">
3
+
4
+ <div class="col-sm-8">
5
+ <h5>{{ site.thanks }}</h5>
6
+ <p>{{ site.title }} – {{ site.jobtitle }}</p>
7
+ <p>{{ site.copyright }}</p>
8
+ </div>
9
+
10
+ <div class="col text-right">
11
+ <h5>Follow me!</h5>
12
+ {% include footer_social.html %}
13
+ </div>
14
+
15
+ </div>
16
+ </footer>
@@ -0,0 +1,39 @@
1
+ <ul class="list-inline">
2
+ {% if site.social.instagram %}
3
+ <li class="list-inline-item">
4
+ <a href="https://www.instagram.com/{{ site.social.instagram }}">
5
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>
6
+ </a>
7
+ </li>
8
+ {% endif %}
9
+ {% if site.social.tumblr %}
10
+ <li class="list-inline-item">
11
+ <a href="http://{{ site.social.tumblr }}.tumblr.com/">
12
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z"/></svg>
13
+ </a>
14
+ </li>
15
+ {% endif %}
16
+ {% if site.social.facebook %}
17
+ <li class="list-inline-item">
18
+ <a href="http://facebook.com/{{ site.social.facebook }}">
19
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"/></svg>
20
+ </a>
21
+ </li>
22
+ {% endif %}
23
+ {% if site.social.pinterest %}
24
+ <li class="list-inline-item">
25
+ <a href="https://www.pinterest.com/{{ site.social.pinterest }}/">
26
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"/></svg>
27
+ </a>
28
+ </li>
29
+ {% endif %}
30
+
31
+ {% if site.social.email %}
32
+ <li class="list-inline-item">
33
+ <a href="mailto:{{ site.social.email }}?Subject=Contact">
34
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"/></svg>
35
+ </a>
36
+ </li>
37
+ {% endif %}
38
+
39
+ </ul>
@@ -0,0 +1,27 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {% seo %}
6
+ <link rel="shortcut icon" type="image/png" href="/assets/brand/logo.svg"/>
7
+
8
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
9
+
10
+ {% comment %} Fonts {% endcomment %}
11
+ <link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
12
+ <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
13
+ <link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
14
+
15
+ {% comment %} JQuery y Bootstrap Javascript {% endcomment %}
16
+ <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
17
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
18
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js" integrity="sha384-a5N7Y/aK3qNeh15eJKGWxsqtnX/wWdSZSKp+81YjTmS15nvnvxKHuzaWwXHDli+4" crossorigin="anonymous"></script>
19
+
20
+ {% comment %} Local css and js files {% endcomment %}
21
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
22
+ <script src="{{ "/assets/main.js" | relative_url }}"></script>
23
+ {% comment %}
24
+ <!-- Resolver error de smooth.js https://github.com/cferdinandi/smooth-scroll -->
25
+ <script src="{{ "/assets/smooth.js" | relative_url }}"></script>
26
+ {% endcomment %}
27
+ </head>
@@ -0,0 +1,9 @@
1
+ <div id="taglinesCarousel" class="carousel slide w-100" data-ride="carousel">
2
+ <div class="carousel-inner">
3
+ {% for tagline in about.taglines %}
4
+ <div class="carousel-item {% if forloop.first %} active {%endif%}">
5
+ <h4 class="tagline my-3">{{ tagline }}</h4>
6
+ </div>
7
+ {% endfor %}
8
+ </div>
9
+ </div>
@@ -0,0 +1,23 @@
1
+ {% for page in site.pages %}{% if page.name =="about.md" %}
2
+ {% assign about = page %}
3
+ {% endif %}{% endfor %}
4
+
5
+ <header class="intro-img text-white text-center">
6
+
7
+ <div class="container d-flex align-items-center flex-column h-100">
8
+ <div>
9
+ <div class="intro-welcome">{{ about.welcome }}</div>
10
+ <br>
11
+ <h1 class="brand-heading">{{ about.firstname }}<br><span class="text-primary">{{ about.lastname }}</span></h1>
12
+ </div>
13
+
14
+ {% include header-taglines.html %}
15
+
16
+ <div class="page-scroll mt-auto mb-5">
17
+ <a href="#about">
18
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"/></svg>
19
+ </a>
20
+ </div>
21
+ </div>
22
+
23
+ </header>
@@ -0,0 +1,26 @@
1
+ <nav id="mainNav" class="navbar position-fixed navbar-expand-lg sticky-top justify-content-between navbar-dark">
2
+ <a class="navbar-brand" href="/">
3
+ <img src="/assets/brand/logo.svg" width="30" height="30" class="d-inline-block align-top" alt="Mi logo">
4
+ {{ site.title }}
5
+ </a>
6
+
7
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
8
+ <span class="navbar-toggler-icon"></span>
9
+ </button>
10
+
11
+ {% if page.path == "index.md" %}
12
+ <div class="collapse navbar-collapse" id ="navbarSupportedContent">
13
+ <div class="navbar-nav">
14
+ <a data-scroll class="nav-item nav-link active" href="#about">ABOUT</a>
15
+ <a data-scroll class="nav-item nav-link" href="#portfolio">PORTFOLIO</a>
16
+ </div>
17
+ </div>
18
+ {% else %}
19
+ <div class="collapse navbar-collapse" id ="navbarSupportedContent">
20
+ <div class="navbar-nav">
21
+ <a data-scroll class="nav-item nav-link active" href="/">HOME</a>
22
+ </div>
23
+ </div>
24
+ {% endif %}
25
+
26
+ </nav>
@@ -0,0 +1,26 @@
1
+ <section id="portfolio" class="container py-5 text-center">
2
+ <h1>Portfolio</h1>
3
+ <hr class="border-primary">
4
+
5
+ {% include portfolio_nav.html %}
6
+
7
+ <div class="tab-content" id="pills-tabContent">
8
+ {% for category in site.categories %}
9
+ <div id="pills-{{ category[0] }}" class="card-columns tab-pane fade {% if forloop.first %}show active{% endif %}" role="tabpanel">
10
+
11
+ {% for post in category[1] %}
12
+ <div class="card">
13
+ <img class="card-img" src="{{ post.images[0] }}" alt="{{ post.project_name }} thumbnail">
14
+ <button type="button" class="btn btn-link card-overlay position-absolute" data-toggle="modal" data-target="#{{ post.project_name | url_encode }}-Modal">
15
+ <span class="d-inline-flex h-100">
16
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="learnmore"><path d="M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"/></svg>
17
+ </span>
18
+ </button>
19
+ </div>
20
+ {% endfor %}
21
+
22
+ </div>
23
+ {% endfor %}
24
+ </div>
25
+ {% include portfolio_detail.html %}
26
+ </section>
@@ -0,0 +1,30 @@
1
+ <div id="carousel-{{ include.project_name | url_encode }}" class="carousel slide" data-ride="carousel">
2
+
3
+ {% if include.images.size > 1 %}
4
+ <ol class="carousel-indicators">
5
+ {% for image in include.images %}
6
+ <li data-target="#carousel-{{ include.project_name | url_encode }}" data-slide-to="{{ forloop.index0 }}" class="{% if forloop.first%}active{% endif %}"></li>
7
+ {% endfor %}
8
+ </ol>
9
+ {% endif %}
10
+
11
+ <div class="carousel-inner">
12
+ {% for image in include.images %}
13
+ <div class="carousel-item {% if forloop.first%}active{% endif %}">
14
+ <img class="d-block w-100" src="{{ image }}" alt="{{ include.project_name }} photo">
15
+ </div>
16
+ {% endfor %}
17
+ </div>
18
+
19
+ {% if include.images.size > 1 %}
20
+ <a class="carousel-control-prev" href="#carousel-{{ include.project_name | url_encode }}" role="button" data-slide="prev">
21
+ <span class="carousel-control-prev-icon" aria-hidden="true"></span>
22
+ <span class="sr-only">Previous</span>
23
+ </a>
24
+ <a class="carousel-control-next" href="#carousel-{{ include.project_name | url_encode }}" role="button" data-slide="next">
25
+ <span class="carousel-control-next-icon" aria-hidden="true"></span>
26
+ <span class="sr-only">Next</span>
27
+ </a>
28
+ {% endif %}
29
+
30
+ </div>
@@ -0,0 +1,46 @@
1
+ {% for post in site.posts %}
2
+
3
+ <div class="modal fade" id="{{ post.project_name | url_encode }}-Modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
4
+ <div class="modal-dialog modal-lg" role="document">
5
+ <div class="modal-content">
6
+ <div class="modal-header">
7
+ <h5 class="modal-title" id="exampleModalLabel">{{ post.project_name }}</h5>
8
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
9
+ <span aria-hidden="true">&times;</span>
10
+ </button>
11
+ </div>
12
+ <div class="modal-body">
13
+ <div class="row">
14
+ <div class="col-sm-7">
15
+ {% include portfolio_carousel.html images=post.images project_name=post.project_name %}
16
+ </div>
17
+ <div class="col px-2 text-left">
18
+ {{ post.content }}
19
+ </div>
20
+ </div>
21
+ <hr class="bg-primary">
22
+ <div class="row">
23
+ <div class="col text-left text-dark">
24
+ {% if post.client %}
25
+ <p><span class="font-weight-bold">Client:</span> {{ post.client }}</p>
26
+ {% endif %}
27
+ {% if post.materials %}
28
+ <p><span class="font-weight-bold">Meterials:</span> {{ post.materials }}</p>
29
+ {% endif %}
30
+ {% if post.fecha %}
31
+ <p><span class="font-weight-bold">Date:</span> {{ post.fecha }}</p>
32
+ {% endif %}
33
+ </div>
34
+ </div>
35
+ </div>
36
+ <div class="modal-footer">
37
+ <a class="btn btn-light" href="{{ post.url }}">
38
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"/></svg>
39
+ </a>
40
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+
46
+ {% endfor %}
@@ -0,0 +1,9 @@
1
+ <ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
2
+
3
+ {% for category in site.categories %}
4
+ <li class="nav-item">
5
+ <a class="nav-link {% if forloop.first %}active{% endif %}" id="pills-{{ category[0] }}-tab" data-toggle="pill" href="#pills-{{ category[0] }}" role="tab">{{ category[0] | replace: "-", " " | capitalize }}</a>
6
+ </li>
7
+ {% endfor %}
8
+
9
+ </ul>
@@ -0,0 +1,5 @@
1
+ <div class="container-fluid bg-primary my-5 py-5 text-white text-center">
2
+ <h1>{{ site.catchphrase }}</h1>
3
+ <hr class="border-white">
4
+ <span class="border px-5 py-3 my-5 text-uppercase font-weight-light">{{ site.job }}</span>
5
+ </div>
@@ -0,0 +1,11 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ {% include head.html %}
4
+
5
+ <body data-spy="scroll" data-target="#mainNav">
6
+ {% include nav.html %}
7
+ {{ content }}
8
+ {% include footer.html %}
9
+ </body>
10
+
11
+ </html>
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+
5
+ {% include header.html %}
6
+
7
+ {% include about_abstract.html %}
8
+
9
+ {% include spacer.html %}
10
+
11
+ {% include portfolio.html %}
12
+
13
+ {{ content }}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <main>
6
+ {{ content }}
7
+ </main>
@@ -0,0 +1,32 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="container pt-3 navwrapper">
5
+ <h2 class="text-center">{{ page.project_name }}</h2>
6
+ <hr class="bg-primary">
7
+
8
+ <div class="row">
9
+ <div class="col-sm-7">
10
+ {% include portfolio_carousel.html images=page.images project_name=page.project_name %}
11
+ </div>
12
+ <div class="col px-2 text-left">
13
+ {{ content }}
14
+ </div>
15
+ </div>
16
+
17
+ <hr class="bg-primary">
18
+
19
+ <div class="row">
20
+ <div class="col text-left text-dark">
21
+ {% if page.client %}
22
+ <p><span class="font-weight-bold">Client:</span> {{ page.client }}</p>
23
+ {% endif %}
24
+ {% if page.materials %}
25
+ <p><span class="font-weight-bold">Meterials:</span> {{ page.materials }}</p>
26
+ {% endif %}
27
+ {% if page.fecha %}
28
+ <p><span class="font-weight-bold">Date:</span> {{ page.fecha }}</p>
29
+ {% endif %}
30
+ </div>
31
+ </div>
32
+ </div>
@@ -0,0 +1,42 @@
1
+ html {
2
+ position: relative;
3
+ min-height: 100%;
4
+ }
5
+ body {
6
+ margin-bottom: 150px; /* Margin bottom by footer height */
7
+ @media (max-width: 500px){
8
+ margin-bottom: 290px;
9
+ }
10
+ }
11
+ .footer {
12
+ position: absolute;
13
+ bottom: 0;
14
+ width: 100%;
15
+ height: 150px; /* Set the fixed height of the footer here */
16
+ line-height: 30px; /* Vertically center the text there */
17
+ background-color: theme-color(dark);
18
+
19
+ @media (max-width: 500px) {
20
+ height: 290px;
21
+ }
22
+
23
+ h5 {
24
+ color: darken(theme-color(secondary), 5%);
25
+ }
26
+
27
+ a {
28
+ display: block;
29
+ width: $spacer*3;
30
+ fill: darken(theme-color(primary), 15%);
31
+ transition: fill 0.5s;
32
+
33
+ &:hover {
34
+ fill: darken(theme-color(primary), 25%);
35
+ }
36
+
37
+ @media (max-width: 500px) {
38
+ width: $spacer*2;
39
+ }
40
+
41
+ }
42
+ }