vv5cv 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.
Files changed (111) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +138 -0
  4. data/_includes/colorpicker.html +7 -0
  5. data/_includes/head.html +13 -0
  6. data/_includes/icon-at.svg +4 -0
  7. data/_includes/icon-globe.svg +4 -0
  8. data/_includes/icon-marker.svg +4 -0
  9. data/_includes/icon-phone.svg +4 -0
  10. data/_includes/zone-languages.html +27 -0
  11. data/_includes/zone-otherskills.html +22 -0
  12. data/_includes/zone-profile.html +32 -0
  13. data/_includes/zone-software.html +20 -0
  14. data/_layouts/default.html +10 -0
  15. data/_layouts/home.html +27 -0
  16. data/_layouts/page.html +9 -0
  17. data/_layouts/post.html +5 -0
  18. data/_sass/_bootstrap-grid.scss +37 -0
  19. data/_sass/_bootstrap-reboot.scss +9 -0
  20. data/_sass/_bootstrap.scss +41 -0
  21. data/_sass/_custom.scss +123 -0
  22. data/_sass/_fonts.scss +1 -0
  23. data/_sass/_variables.scss +33 -0
  24. data/_sass/bootstrap/_alert.scss +48 -0
  25. data/_sass/bootstrap/_badge.scss +48 -0
  26. data/_sass/bootstrap/_breadcrumb.scss +38 -0
  27. data/_sass/bootstrap/_button-group.scss +198 -0
  28. data/_sass/bootstrap/_buttons.scss +141 -0
  29. data/_sass/bootstrap/_card.scss +223 -0
  30. data/_sass/bootstrap/_carousel.scss +185 -0
  31. data/_sass/bootstrap/_close.scss +29 -0
  32. data/_sass/bootstrap/_code.scss +64 -0
  33. data/_sass/bootstrap/_custom-forms.scss +254 -0
  34. data/_sass/bootstrap/_dropdown.scss +128 -0
  35. data/_sass/bootstrap/_forms.scss +390 -0
  36. data/_sass/bootstrap/_functions.scss +90 -0
  37. data/_sass/bootstrap/_grid.scss +53 -0
  38. data/_sass/bootstrap/_images.scss +43 -0
  39. data/_sass/bootstrap/_input-group.scss +176 -0
  40. data/_sass/bootstrap/_jumbotron.scss +16 -0
  41. data/_sass/bootstrap/_list-group.scss +114 -0
  42. data/_sass/bootstrap/_media.scss +8 -0
  43. data/_sass/bootstrap/_mixins.scss +41 -0
  44. data/_sass/bootstrap/_modal.scss +142 -0
  45. data/_sass/bootstrap/_nav.scss +118 -0
  46. data/_sass/bootstrap/_navbar.scss +284 -0
  47. data/_sass/bootstrap/_pagination.scss +66 -0
  48. data/_sass/bootstrap/_popover.scss +195 -0
  49. data/_sass/bootstrap/_print.scss +111 -0
  50. data/_sass/bootstrap/_progress.scss +32 -0
  51. data/_sass/bootstrap/_reboot.scss +481 -0
  52. data/_sass/bootstrap/_tables.scss +168 -0
  53. data/_sass/bootstrap/_tooltip.scss +107 -0
  54. data/_sass/bootstrap/_transitions.scss +34 -0
  55. data/_sass/bootstrap/_type.scss +123 -0
  56. data/_sass/bootstrap/_utilities.scss +14 -0
  57. data/_sass/bootstrap/_variables.scss +839 -0
  58. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  59. data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  60. data/_sass/bootstrap/mixins/_badge.scss +12 -0
  61. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  62. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  63. data/_sass/bootstrap/mixins/_breakpoints.scss +105 -0
  64. data/_sass/bootstrap/mixins/_buttons.scss +83 -0
  65. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  66. data/_sass/bootstrap/mixins/_float.scss +9 -0
  67. data/_sass/bootstrap/mixins/_forms.scss +81 -0
  68. data/_sass/bootstrap/mixins/_gradients.scss +37 -0
  69. data/_sass/bootstrap/mixins/_grid-framework.scss +56 -0
  70. data/_sass/bootstrap/mixins/_grid.scss +47 -0
  71. data/_sass/bootstrap/mixins/_hover.scss +60 -0
  72. data/_sass/bootstrap/mixins/_image.scss +36 -0
  73. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  74. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  75. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  76. data/_sass/bootstrap/mixins/_navbar-align.scss +9 -0
  77. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  78. data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  79. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  80. data/_sass/bootstrap/mixins/_screen-reader.scss +35 -0
  81. data/_sass/bootstrap/mixins/_size.scss +6 -0
  82. data/_sass/bootstrap/mixins/_table-row.scss +30 -0
  83. data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  84. data/_sass/bootstrap/mixins/_text-hide.scss +8 -0
  85. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  86. data/_sass/bootstrap/mixins/_transition.scss +9 -0
  87. data/_sass/bootstrap/mixins/_visibility.scss +5 -0
  88. data/_sass/bootstrap/utilities/_align.scss +6 -0
  89. data/_sass/bootstrap/utilities/_background.scss +6 -0
  90. data/_sass/bootstrap/utilities/_borders.scss +52 -0
  91. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  92. data/_sass/bootstrap/utilities/_display.scss +53 -0
  93. data/_sass/bootstrap/utilities/_embed.scss +52 -0
  94. data/_sass/bootstrap/utilities/_flex.scss +44 -0
  95. data/_sass/bootstrap/utilities/_float.scss +9 -0
  96. data/_sass/bootstrap/utilities/_position.scss +25 -0
  97. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  98. data/_sass/bootstrap/utilities/_sizing.scss +10 -0
  99. data/_sass/bootstrap/utilities/_spacing.scss +41 -0
  100. data/_sass/bootstrap/utilities/_text.scss +49 -0
  101. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  102. data/assets/icons/android.svg +1 -0
  103. data/assets/icons/angular.svg +1 -0
  104. data/assets/icons/apple.svg +1 -0
  105. data/assets/icons/freebsd.svg +1 -0
  106. data/assets/icons/github.svg +1 -0
  107. data/assets/icons/line.svg +1 -0
  108. data/assets/icons/playstation.svg +1 -0
  109. data/assets/icons/slack.svg +1 -0
  110. data/assets/main.scss +10 -0
  111. metadata +183 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 78f90f9f70027e792f6e684dfc6aa05824a97437
4
+ data.tar.gz: c890a4a3cd3c765dd92871a79e85ac78b99aad73
5
+ SHA512:
6
+ metadata.gz: 1e51be978dc66123d24b90106d104748e3e1c6b9ec1c2fa519fa5c115140a96ec0fa1d4ad4b3ea4a4a2fa4fefdeda23eded9a316a637b8e42b7038a2a382a136
7
+ data.tar.gz: 91567988459ce7c247e613712abb3ab67af85b16f382a57fd3a4c4a0e63cdaedd5995175855ef546f21baf84819652bd24f4cc46ffa9ee02bcf8e84597581f13
data/LICENSE.txt ADDED
@@ -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.
data/README.md ADDED
@@ -0,0 +1,138 @@
1
+ # vectorVcinco CVs
2
+
3
+ Hola, este es un tema de [Jekyll](https://jekyllrb.com) para hacer fácil la cración
4
+ de un CV en inglés. Lo creamos en vectorVcinco para nuestros perfiles personales y lo liberamos
5
+ bajo la licencia [MIT](https://opensource.org/licenses/MIT)
6
+
7
+
8
+ Diseño: https://github.com/Itzelschiaffini
9
+ Development: https://github.com/darkade
10
+
11
+
12
+ ## Instalación
13
+
14
+ Agrega esta linea al `Gemfile` de tu Jekyll site:
15
+
16
+ ```ruby
17
+ gem "vv5cv"
18
+ ```
19
+
20
+ Agrega esta linea a tu `_config.yml`:
21
+
22
+ ```yaml
23
+ theme: vv5cv
24
+ ```
25
+
26
+ Ejecuta:
27
+
28
+ $ bundle
29
+
30
+ O instalalo tu mismo con:
31
+
32
+ $ gem install vv5cv
33
+
34
+ ## Usage
35
+
36
+ Este tema es una sola página con las siguientes secciones:
37
+
38
+ - Profile
39
+ - Software
40
+ - Languages
41
+ - Other skills
42
+ - Main
43
+
44
+ ### Profile
45
+ Contiene información general sobre tu teléfono, e-mail, dirección, sitio web.
46
+
47
+ Para poblar esta sección agrega esto a tu `_config.yml`
48
+
49
+ ```yaml
50
+ profile:
51
+ name: Jane Doe
52
+ tagline: Professional Assasin
53
+ picture: http://lorempixel.com/output/fashion-q-c-480-480-8.jpg
54
+ phone: +52(1) 222 000 0000
55
+ email: me@example.com
56
+ address: >-
57
+ The Honorable Charles W. Anderson (Dear Mr. Ambassador:)
58
+ Department of State
59
+ 2050 Bamako Place
60
+ Washington, DC 20521-2050
61
+ website: https://example.com
62
+ ```
63
+
64
+ ### Software
65
+ La información sobre tus skills con cierto software. Para agregar iconos colocalos en `assets/icons` y en la configuración solo coloca sus nombres con extensión
66
+
67
+ Para poblar esta sección agrega esto a tu `_config.yml`
68
+
69
+ ```yaml
70
+ software:
71
+ Illustrator:
72
+ icon: ai.svg
73
+ skill: 0
74
+ Photoshop:
75
+ icon: ps.svg
76
+ skill: 10
77
+ InDesign:
78
+ icon: id.svg
79
+ skill: 20
80
+ ```
81
+
82
+ ### Languages
83
+ Los lenguajes que manejas. El primer lenguaje que enlistes será marcado con la leyenda _Native Speaker_
84
+
85
+ Para poblar esta sección agrega esto a tu `_config.yml`
86
+
87
+ ```yaml
88
+ languages:
89
+ es: 100
90
+ en: 90
91
+ jp: 20
92
+ ```
93
+
94
+ ### Other Skills
95
+ Esta sección se poblará con una lista llamda other skills. Puedes poner cualquier skill categorizado aquí.
96
+
97
+ Para poblar esta sección agrega esto a tu `_config.yml`
98
+
99
+ ```yaml
100
+ otherskills:
101
+ machinery:
102
+ modeling:
103
+ icon: icon.svg
104
+ skills:
105
+ - 3D printing
106
+ cnc:
107
+ icon: icon.svg
108
+ skills:
109
+ - CNC Router
110
+ - Laser Cutting
111
+ - Vynil Cutting
112
+
113
+ administrative:
114
+ organization:
115
+ icon: icon.svg
116
+ skills:
117
+ - Slack
118
+ - Email
119
+ management:
120
+ icon: icon.svg
121
+ skills:
122
+ - Scrum
123
+ ```
124
+
125
+ ### Main
126
+
127
+ En esta sección se colocará todo lo que escribas en tu `index.md` Puedes dividir las secciones marcando títulos. Puedes leer más sobre escribir en markdown [aquí](https://guides.github.com/features/mastering-markdown/)
128
+
129
+ También te recomendamos agregar esta opción a tu `_config.yml`
130
+
131
+ ```yaml
132
+ kramdown:
133
+ hard_wrap: true
134
+ ```
135
+
136
+ ## License
137
+
138
+ Este tema esta esta disponible en Open Source bajo los términos de la [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,7 @@
1
+ <ul class="nav nav-pills">
2
+ {% for color in site.colors %}
3
+ <li class="nav-item p-1">
4
+ <a class="nav-link text-color-{{ color }}" href="#">{{ color }}</a>
5
+ </li>
6
+ {% endfor %}
7
+ </ul>
@@ -0,0 +1,13 @@
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
+
6
+ <link rel="shortcut icon" type="image/png" href="/favicon.png"/>
7
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
8
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
9
+
10
+ <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
11
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
12
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
13
+ </head>
@@ -0,0 +1,4 @@
1
+ <svg class="{{ include.class }}" id="at" viewBox="0 0 512 512">
2
+ <title id="at-title">At Icon</title>
3
+ <path d="M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"></path>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg class="{{ include.class }}" id="globe" viewBox="0 0 512 512">
2
+ <title id="globe-title">Globe Icon</title>
3
+ <path d="M364.215 192h131.43c5.439 20.419 8.354 41.868 8.354 64s-2.915 43.581-8.354 64h-131.43c5.154-43.049 4.939-86.746 0-128zM185.214 352c10.678 53.68 33.173 112.514 70.125 151.992.221.001.44.008.661.008s.44-.008.661-.008c37.012-39.543 59.467-98.414 70.125-151.992H185.214zm174.13-192h125.385C452.802 84.024 384.128 27.305 300.95 12.075c30.238 43.12 48.821 96.332 58.394 147.925zm-27.35 32H180.006c-5.339 41.914-5.345 86.037 0 128h151.989c5.339-41.915 5.345-86.037-.001-128zM152.656 352H27.271c31.926 75.976 100.6 132.695 183.778 147.925-30.246-43.136-48.823-96.35-58.393-147.925zm206.688 0c-9.575 51.605-28.163 104.814-58.394 147.925 83.178-15.23 151.852-71.949 183.778-147.925H359.344zm-32.558-192c-10.678-53.68-33.174-112.514-70.125-151.992-.221 0-.44-.008-.661-.008s-.44.008-.661.008C218.327 47.551 195.872 106.422 185.214 160h141.572zM16.355 192C10.915 212.419 8 233.868 8 256s2.915 43.581 8.355 64h131.43c-4.939-41.254-5.154-84.951 0-128H16.355zm136.301-32c9.575-51.602 28.161-104.81 58.394-147.925C127.872 27.305 59.198 84.024 27.271 160h125.385z"></path>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg class="{{ include.class }}" id="map-marker-alt" viewBox="0 0 384 512">
2
+ <title id="map-marker-alt-title">Map Marker Icon</title>
3
+ <path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg class="{{ include.class }}" id="mobile" viewBox="0 0 320 512">
2
+ <title id="mobile-title">Mobile Phone Icon</title>
3
+ <path d="M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"></path>
4
+ </svg>
@@ -0,0 +1,27 @@
1
+ <div class="card my-3">
2
+
3
+ <div class="card-header bg-primary">
4
+ <h4 class="card-title">Languages</h4>
5
+ </div>
6
+
7
+ <ul class="list-group list-group-flush">
8
+
9
+ {% for app in site.languages %}
10
+
11
+ <li class="list-group-item skill bg-secondary">
12
+ <span class="align-middle text-uppercase">{{ app[0] }}</span>
13
+ <!--<img src="/assets/icons/{{ app[1].icon }}" alt="{{ app[0] }}">-->
14
+ <div class="skill-meter">
15
+ <div class="float-left skill-{{ app[1] }}">{{ app[1] }}%</div>
16
+ <hr>
17
+ </div>
18
+ <div class="note font-weight-bold d-block">
19
+ {% if forloop.first %}
20
+ Native Speaker
21
+ {% endif %}
22
+ </div>
23
+ </li>
24
+ {% endfor %}
25
+
26
+ </ul>
27
+ </div>
@@ -0,0 +1,22 @@
1
+ {% for category in site.otherskills %}
2
+ <div class="card my-3">
3
+
4
+ <div class="card-header bg-primary">
5
+ <h4 class="card-title text-capitalize">{{ category[0] }}</h4>
6
+ </div>
7
+
8
+ {% for subcategory in category[1] %}
9
+ <ul class="list-group list-group-flush">
10
+ <li class="list-group-item bg-secondary">
11
+ <img class="float-left mr-3" style="width: 3rem;height:3rem;" src="/assets/icons/{{ subcategory[1].icon }}">
12
+ <ul class="list-unstyled d-flex flex-column">
13
+ {% for skill in subcategory[1].skills %}
14
+ <li>{{ skill }}</li>
15
+ {% endfor %}
16
+ </ul>
17
+ </li>
18
+ </ul>
19
+ {% endfor %}
20
+
21
+ </div>
22
+ {% endfor %}
@@ -0,0 +1,32 @@
1
+ <img src="{{ site.profile.picture }}" class="img-fluid rounded-circle m-3 profile-pic" alt="Profile picture">
2
+ <ul class="list-group">
3
+
4
+ {% if site.profile.phone %}
5
+ <li class="list-group-item border-0">
6
+ {% include icon-phone.svg class="profile-icon align-middle" %}
7
+ {{ site.profile.phone }}
8
+ </li>
9
+ {% endif %}
10
+
11
+ {% if site.profile.email %}
12
+ <li class="list-group-item border-0">
13
+ {% include icon-at.svg class="profile-icon align-middle" %}
14
+ {{ site.profile.email }}
15
+ </li>
16
+ {% endif %}
17
+
18
+ {% if site.profile.address %}
19
+ <li class="list-group-item border-0">
20
+ {% include icon-marker.svg class="profile-icon align-middle" %}
21
+ {{ site.profile.address }}
22
+ </li>
23
+ {% endif %}
24
+
25
+ {% if site.profile.website %}
26
+ <li class="list-group-item border-0">
27
+ {% include icon-globe.svg class="profile-icon align-middle" %}
28
+ {{ site.profile.website }}
29
+ </li>
30
+ {% endif %}
31
+
32
+ </ul>
@@ -0,0 +1,20 @@
1
+ <div class="card my-3">
2
+
3
+ <div class="card-header bg-primary">
4
+ <h4 class="card-title">Sofware</h4>
5
+ </div>
6
+
7
+ <ul class="list-group list-group-flush">
8
+
9
+ {% for app in site.software %}
10
+ <li class="list-group-item skill bg-secondary">
11
+ <img src="/assets/icons/{{ app[1].icon }}" alt="{{ app[0] }}">
12
+ <div class="skill-meter">
13
+ <div class="float-left skill-{{ app[1].skill }}">{{ app[1].skill }}%</div>
14
+ <hr>
15
+ </div>
16
+ </li>
17
+ {% endfor %}
18
+
19
+ </ul>
20
+ </div>
@@ -0,0 +1,10 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+ {{ content }}
8
+ </body>
9
+
10
+ </html>
@@ -0,0 +1,27 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+ {% include colorpicker.html %}
5
+
6
+ <div class="row">
7
+ <div class="col-4">
8
+ {% include zone-profile.html %}
9
+ {% include zone-software.html %}
10
+ {% include zone-languages.html %}
11
+ {% include zone-otherskills.html %}
12
+ </div>
13
+ <div class="col">
14
+
15
+ <div class="text-center my-5 name">
16
+ <h1 class="text-uppercase">{{ site.profile.name }}</h1>
17
+ <hr>
18
+ <h3 class="text-uppercase text-secondary">{{ site.profile.tagline }}</h3>
19
+ </div>
20
+
21
+ <section class="experience">
22
+ {{ content }}
23
+ </section>
24
+
25
+ </div>
26
+
27
+ </div>
@@ -0,0 +1,9 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="container">
6
+ <main class="my-3">
7
+ {{ content }}
8
+ </main>
9
+ </div>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,37 @@
1
+ // Bootstrap Grid only
2
+ //
3
+ // Includes relevant variables and mixins for the flexbox grid
4
+ // system, as well as the generated predefined classes (e.g., `.col-sm-4`).
5
+
6
+ //
7
+ // Box sizing, responsive, and more
8
+ //
9
+
10
+ @at-root {
11
+ @-ms-viewport { width: device-width; }
12
+ }
13
+
14
+ html {
15
+ box-sizing: border-box;
16
+ -ms-overflow-style: scrollbar;
17
+ }
18
+
19
+ *,
20
+ *::before,
21
+ *::after {
22
+ box-sizing: inherit;
23
+ }
24
+
25
+ @import "bootstrap/functions";
26
+ @import "bootstrap/variables";
27
+
28
+ //
29
+ // Grid mixins
30
+ //
31
+
32
+ @import "bootstrap/mixins/breakpoints";
33
+ @import "bootstrap/mixins/grid-framework";
34
+ @import "bootstrap/mixins/grid";
35
+
36
+ @import "bootstrap/grid";
37
+ @import "bootstrap/utilities/flex";
@@ -0,0 +1,9 @@
1
+ // Bootstrap Reboot only
2
+ //
3
+ // Includes only Normalize and our custom Reboot reset.
4
+
5
+ @import "bootstrap/functions";
6
+ @import "bootstrap/variables";
7
+ @import "bootstrap/mixins";
8
+
9
+ @import "bootstrap/reboot";
@@ -0,0 +1,41 @@
1
+ /*!
2
+ * Bootstrap v4.0.0-beta (https://getbootstrap.com)
3
+ * Copyright 2011-2017 The Bootstrap Authors
4
+ * Copyright 2011-2017 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
+ */
7
+
8
+ @import "bootstrap/functions";
9
+ @import "bootstrap/variables";
10
+ @import "bootstrap/mixins";
11
+ @import "bootstrap/print";
12
+ @import "bootstrap/reboot";
13
+ @import "bootstrap/type";
14
+ @import "bootstrap/images";
15
+ @import "bootstrap/code";
16
+ @import "bootstrap/grid";
17
+ @import "bootstrap/tables";
18
+ @import "bootstrap/forms";
19
+ @import "bootstrap/buttons";
20
+ @import "bootstrap/transitions";
21
+ @import "bootstrap/dropdown";
22
+ @import "bootstrap/button-group";
23
+ @import "bootstrap/input-group";
24
+ @import "bootstrap/custom-forms";
25
+ @import "bootstrap/nav";
26
+ @import "bootstrap/navbar";
27
+ @import "bootstrap/card";
28
+ @import "bootstrap/breadcrumb";
29
+ @import "bootstrap/pagination";
30
+ @import "bootstrap/badge";
31
+ @import "bootstrap/jumbotron";
32
+ @import "bootstrap/alert";
33
+ @import "bootstrap/progress";
34
+ @import "bootstrap/media";
35
+ @import "bootstrap/list-group";
36
+ @import "bootstrap/close";
37
+ @import "bootstrap/modal";
38
+ @import "bootstrap/tooltip";
39
+ @import "bootstrap/popover";
40
+ @import "bootstrap/carousel";
41
+ @import "bootstrap/utilities";