jekyll-bootstrap-resume-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +172 -0
  4. data/_config.yml +41 -0
  5. data/_includes/custom_head.html +3 -0
  6. data/_includes/footer.html +8 -0
  7. data/_includes/head.html +15 -0
  8. data/_includes/navigation.html +18 -0
  9. data/_includes/sections/about.html +16 -0
  10. data/_includes/sections/awards.html +15 -0
  11. data/_includes/sections/education.html +17 -0
  12. data/_includes/sections/experience.html +16 -0
  13. data/_includes/sections/projects.html +16 -0
  14. data/_includes/sections/skills.html +13 -0
  15. data/_includes/sections/volunteering.html +16 -0
  16. data/_includes/socials.html +8 -0
  17. data/_layouts/default.html +7 -0
  18. data/_layouts/page.html +5 -0
  19. data/_layouts/post.html +5 -0
  20. data/_layouts/resume.html +17 -0
  21. data/_sass/bootstrap_resume/_global.scss +37 -0
  22. data/_sass/bootstrap_resume/_variables.scss +4 -0
  23. data/_sass/bootstrap_resume/bootstrap/_alert.scss +51 -0
  24. data/_sass/bootstrap_resume/bootstrap/_badge.scss +47 -0
  25. data/_sass/bootstrap_resume/bootstrap/_breadcrumb.scss +41 -0
  26. data/_sass/bootstrap_resume/bootstrap/_button-group.scss +172 -0
  27. data/_sass/bootstrap_resume/bootstrap/_buttons.scss +143 -0
  28. data/_sass/bootstrap_resume/bootstrap/_card.scss +301 -0
  29. data/_sass/bootstrap_resume/bootstrap/_carousel.scss +236 -0
  30. data/_sass/bootstrap_resume/bootstrap/_close.scss +35 -0
  31. data/_sass/bootstrap_resume/bootstrap/_code.scss +48 -0
  32. data/_sass/bootstrap_resume/bootstrap/_custom-forms.scss +433 -0
  33. data/_sass/bootstrap_resume/bootstrap/_dropdown.scss +166 -0
  34. data/_sass/bootstrap_resume/bootstrap/_forms.scss +333 -0
  35. data/_sass/bootstrap_resume/bootstrap/_functions.scss +86 -0
  36. data/_sass/bootstrap_resume/bootstrap/_grid.scss +52 -0
  37. data/_sass/bootstrap_resume/bootstrap/_images.scss +42 -0
  38. data/_sass/bootstrap_resume/bootstrap/_input-group.scss +173 -0
  39. data/_sass/bootstrap_resume/bootstrap/_jumbotron.scss +16 -0
  40. data/_sass/bootstrap_resume/bootstrap/_list-group.scss +115 -0
  41. data/_sass/bootstrap_resume/bootstrap/_media.scss +8 -0
  42. data/_sass/bootstrap_resume/bootstrap/_mixins.scss +41 -0
  43. data/_sass/bootstrap_resume/bootstrap/_modal.scss +180 -0
  44. data/_sass/bootstrap_resume/bootstrap/_nav.scss +118 -0
  45. data/_sass/bootstrap_resume/bootstrap/_navbar.scss +299 -0
  46. data/_sass/bootstrap_resume/bootstrap/_pagination.scss +78 -0
  47. data/_sass/bootstrap_resume/bootstrap/_popover.scss +183 -0
  48. data/_sass/bootstrap_resume/bootstrap/_print.scss +141 -0
  49. data/_sass/bootstrap_resume/bootstrap/_progress.scss +34 -0
  50. data/_sass/bootstrap_resume/bootstrap/_reboot.scss +483 -0
  51. data/_sass/bootstrap_resume/bootstrap/_root.scss +19 -0
  52. data/_sass/bootstrap_resume/bootstrap/_tables.scss +187 -0
  53. data/_sass/bootstrap_resume/bootstrap/_tooltip.scss +115 -0
  54. data/_sass/bootstrap_resume/bootstrap/_transitions.scss +22 -0
  55. data/_sass/bootstrap_resume/bootstrap/_type.scss +125 -0
  56. data/_sass/bootstrap_resume/bootstrap/_utilities.scss +15 -0
  57. data/_sass/bootstrap_resume/bootstrap/_variables.scss +952 -0
  58. data/_sass/bootstrap_resume/bootstrap/bootstrap-grid.scss +32 -0
  59. data/_sass/bootstrap_resume/bootstrap/bootstrap-reboot.scss +12 -0
  60. data/_sass/bootstrap_resume/bootstrap/bootstrap.scss +42 -0
  61. data/_sass/bootstrap_resume/bootstrap/mixins/_alert.scss +13 -0
  62. data/_sass/bootstrap_resume/bootstrap/mixins/_background-variant.scss +21 -0
  63. data/_sass/bootstrap_resume/bootstrap/mixins/_badge.scss +12 -0
  64. data/_sass/bootstrap_resume/bootstrap/mixins/_border-radius.scss +35 -0
  65. data/_sass/bootstrap_resume/bootstrap/mixins/_box-shadow.scss +5 -0
  66. data/_sass/bootstrap_resume/bootstrap/mixins/_breakpoints.scss +123 -0
  67. data/_sass/bootstrap_resume/bootstrap/mixins/_buttons.scss +109 -0
  68. data/_sass/bootstrap_resume/bootstrap/mixins/_caret.scss +66 -0
  69. data/_sass/bootstrap_resume/bootstrap/mixins/_clearfix.scss +7 -0
  70. data/_sass/bootstrap_resume/bootstrap/mixins/_float.scss +11 -0
  71. data/_sass/bootstrap_resume/bootstrap/mixins/_forms.scss +147 -0
  72. data/_sass/bootstrap_resume/bootstrap/mixins/_gradients.scss +45 -0
  73. data/_sass/bootstrap_resume/bootstrap/mixins/_grid-framework.scss +67 -0
  74. data/_sass/bootstrap_resume/bootstrap/mixins/_grid.scss +52 -0
  75. data/_sass/bootstrap_resume/bootstrap/mixins/_hover.scss +37 -0
  76. data/_sass/bootstrap_resume/bootstrap/mixins/_image.scss +36 -0
  77. data/_sass/bootstrap_resume/bootstrap/mixins/_list-group.scss +21 -0
  78. data/_sass/bootstrap_resume/bootstrap/mixins/_lists.scss +7 -0
  79. data/_sass/bootstrap_resume/bootstrap/mixins/_nav-divider.scss +10 -0
  80. data/_sass/bootstrap_resume/bootstrap/mixins/_pagination.scss +22 -0
  81. data/_sass/bootstrap_resume/bootstrap/mixins/_reset-text.scss +17 -0
  82. data/_sass/bootstrap_resume/bootstrap/mixins/_resize.scss +6 -0
  83. data/_sass/bootstrap_resume/bootstrap/mixins/_screen-reader.scss +33 -0
  84. data/_sass/bootstrap_resume/bootstrap/mixins/_size.scss +6 -0
  85. data/_sass/bootstrap_resume/bootstrap/mixins/_table-row.scss +30 -0
  86. data/_sass/bootstrap_resume/bootstrap/mixins/_text-emphasis.scss +14 -0
  87. data/_sass/bootstrap_resume/bootstrap/mixins/_text-hide.scss +13 -0
  88. data/_sass/bootstrap_resume/bootstrap/mixins/_text-truncate.scss +8 -0
  89. data/_sass/bootstrap_resume/bootstrap/mixins/_transition.scss +13 -0
  90. data/_sass/bootstrap_resume/bootstrap/mixins/_visibility.scss +7 -0
  91. data/_sass/bootstrap_resume/bootstrap/utilities/_align.scss +8 -0
  92. data/_sass/bootstrap_resume/bootstrap/utilities/_background.scss +19 -0
  93. data/_sass/bootstrap_resume/bootstrap/utilities/_borders.scss +59 -0
  94. data/_sass/bootstrap_resume/bootstrap/utilities/_clearfix.scss +3 -0
  95. data/_sass/bootstrap_resume/bootstrap/utilities/_display.scss +38 -0
  96. data/_sass/bootstrap_resume/bootstrap/utilities/_embed.scss +52 -0
  97. data/_sass/bootstrap_resume/bootstrap/utilities/_flex.scss +51 -0
  98. data/_sass/bootstrap_resume/bootstrap/utilities/_float.scss +9 -0
  99. data/_sass/bootstrap_resume/bootstrap/utilities/_position.scss +37 -0
  100. data/_sass/bootstrap_resume/bootstrap/utilities/_screenreaders.scss +11 -0
  101. data/_sass/bootstrap_resume/bootstrap/utilities/_shadows.scss +6 -0
  102. data/_sass/bootstrap_resume/bootstrap/utilities/_sizing.scss +12 -0
  103. data/_sass/bootstrap_resume/bootstrap/utilities/_spacing.scss +51 -0
  104. data/_sass/bootstrap_resume/bootstrap/utilities/_text.scss +58 -0
  105. data/_sass/bootstrap_resume/bootstrap/utilities/_visibility.scss +11 -0
  106. data/_sass/bootstrap_resume/components/_icons.scss +27 -0
  107. data/_sass/bootstrap_resume/components/_sidenav.scss +57 -0
  108. data/_sass/bootstrap_resume/sections/_resume-section.scss +25 -0
  109. data/_sass/bootstrap_resume/styles.scss +15 -0
  110. data/_sass/bootstrap_resume/variables/_colors.scss +15 -0
  111. data/_sass/bootstrap_resume/variables/_grid.scss +5 -0
  112. data/_sass/bootstrap_resume/variables/_spacing.scss +15 -0
  113. data/_sass/bootstrap_resume/variables/_typography.scss +17 -0
  114. data/assets/css/style.scss +6 -0
  115. data/assets/img/favicon.ico +0 -0
  116. data/assets/img/profile.jpg +0 -0
  117. data/assets/js/bootstrap.min.js +7 -0
  118. data/assets/js/scripts.js +37 -0
  119. metadata +202 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7f843e9a9a0258058a96159909886f946c9777c70ca9c4ed1dab34573fe0557b
4
+ data.tar.gz: 4cb756139b59134eaf6eac46cb4fd4a27e5fa014f016741e106665cab40704ca
5
+ SHA512:
6
+ metadata.gz: 2553ee1c1e8f1491b2ba23478e95432aeba5b8847df042dd4642395a23bf04bb50daa91e6a55f385964bcb94c06cb7fb7245650c5b43e596af4a917dea0d764f
7
+ data.tar.gz: 32b602ae0a7262c0473a0ccd84902952fc0910ebbf0ca1c07c674f7c7d10bad13020376ed879fc8e685058a5213b778c779460870ac6bec3c1d42ee011248758
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Noah Scharrenberg
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,172 @@
1
+ # jekyll-bootstrap-resume-theme
2
+
3
+ This is a resume theme based on [Start Bootstrap Resume](https://github.com/startbootstrap/startbootstrap-resume).
4
+
5
+ ## Installation
6
+
7
+ Add this line to your Jekyll site's `Gemfile`:
8
+
9
+ ```ruby
10
+ gem "jekyll-bootstrap-resume-theme"
11
+ ```
12
+
13
+ And add this line to your Jekyll site's `_config.yml`:
14
+
15
+ ```yaml
16
+ theme: jekyll-bootstrap-resume-theme
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install jekyll-bootstrap-resume-theme
26
+
27
+ ## Usage
28
+
29
+ ### Change Basic information
30
+ in `_config.yml` you can change basic information such as your website name and description.
31
+
32
+ ### Change Profile Picture
33
+ Change your profile picture (the one that is visible on the side menu) by replacing the image present in `assets/img/profile.jpg` with your own picture. Make sure it is in `jpg` format and has the name `profile`.
34
+
35
+ ### Changing Profile information
36
+ Change your name, email, address, phonenumber, by going to `_config.yml` and giving new values to each item under `portfolio.info`.
37
+
38
+ This should look something like:
39
+ ```yaml
40
+ portfolio:
41
+ info:
42
+ name:
43
+ firstname: John
44
+ lastname: Doe
45
+ location: 3542 Berry Street · Cheyenne Wells, CO 80810
46
+ phonenumber: (317) 585-8468
47
+ email: name@email.com
48
+ ```
49
+
50
+ ### Changing Social Media
51
+ At the moment 5 icons are supported: LinkedIn, Github, Facebook, Twitter and Custom Site.
52
+
53
+ These can be enabled/disabled and links can be changed by uncommenting and changing the text in `_config.yml` under `portfolio.social`.
54
+ So let's say you want to only have linkedIn and github enabled then you'd have something like this:
55
+ ```yaml
56
+ portfolio:
57
+ social:
58
+ # twitter: your-username
59
+ # facebook: your-username
60
+ github: your-username
61
+ linkedin: your-username
62
+ # rss: 'your-website'
63
+ ```
64
+
65
+ Where `your-username` and `your-website` would be either your username or your website url.
66
+ If a `#` is present before the item, then the item is commented, and won't be displayed on the website.
67
+
68
+ ### Changing About information
69
+ Change the introduction text in the `About` section by going to `index.md` and changing the text with whatever text you want to have.
70
+
71
+ Important: DO NOT REMOVE THE BELOW TEXT FROM THE `index.md` file.
72
+ ```
73
+ ---
74
+ # Feel free to add content and custom Front Matter to this file.
75
+ # To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
76
+
77
+ layout: resume
78
+ ---
79
+ ```
80
+
81
+ ### Experience, Education, Projects, etc...
82
+ Sections such as experience, education and projects are handled through so called `data files`.
83
+ These files can be found in the `_data` directory, and each section has its own file.
84
+
85
+ Below tables will be shown with each section and the possible fields.
86
+
87
+ #### Experience
88
+ File name: `_data/jobs.json`
89
+
90
+ | field name | data type | format | required |
91
+ |----------------|-----------|------------|-----------|
92
+ | function | text | "" | yes |
93
+ | company | text | "" | yes |
94
+ | start_date | date | dd-mm-yyyy | yes |
95
+ | end_date | date | dd-mm-yyyy | no |
96
+ | description | text | "" | no |
97
+
98
+ #### Education
99
+ File name: `_data/studies.json`
100
+
101
+ | field name | data type | format | required |
102
+ |----------------|-----------|------------|-----------|
103
+ | course | text | "" | yes |
104
+ | school | text | "" | yes |
105
+ | degree | text | "" | no |
106
+ | start_date | date | dd-mm-yyyy | yes |
107
+ | end_date | date | dd-mm-yyyy | no |
108
+ | description | text | "" | no |
109
+
110
+ #### Volunteering Work
111
+ File name: `_data/volunteers.json`
112
+
113
+ | field name | data type | format | required |
114
+ |----------------|-----------|------------|-----------|
115
+ | function | text | "" | yes |
116
+ | company | text | "" | yes |
117
+ | start_date | date | dd-mm-yyyy | yes |
118
+ | end_date | date | dd-mm-yyyy | no |
119
+ | description | text | "" | no |
120
+
121
+ #### Projects
122
+ File name: `_data/projects.json`
123
+
124
+ | field name | data type | format | required |
125
+ |---------------------|-----------|------------|-----------|
126
+ | title | text | "" | yes |
127
+ | stakeholders | text | "" | no |
128
+ | start_date | date | dd-mm-yyyy | yes |
129
+ | end_date | date | dd-mm-yyyy | no |
130
+ | description | text | "" | no |
131
+
132
+ #### Awards
133
+ File name: `_data/awards.json`
134
+
135
+ Just an array of strings.
136
+
137
+ ```
138
+ [
139
+ "This is an Award",
140
+ "This is another award"
141
+ ]
142
+ ```
143
+
144
+ #### Skills
145
+ File name: `_data/skills.json`
146
+
147
+ Just an array of strings.
148
+
149
+ ```
150
+ [
151
+ "Java",
152
+ "C#",
153
+ "VueJS"
154
+ ]
155
+ ```
156
+
157
+ ## Contributing
158
+
159
+ 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.
160
+
161
+ ## Development
162
+
163
+ To set up your environment to develop this theme, run `bundle install`.
164
+
165
+ 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.
166
+
167
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
168
+ To add a custom directory to your theme-gem, please edit the regexp in `jekyll-bootstrap-resume-theme.gemspec` accordingly.
169
+
170
+ ## License
171
+
172
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/_config.yml ADDED
@@ -0,0 +1,41 @@
1
+ title: Your Portfolio
2
+ author:
3
+ name: Your Name
4
+ email: your-email@domain.com
5
+ description: > # this means to ignore newlines until "show_excerpts:"
6
+ Write an awesome description for your new site here. You can edit this
7
+ line in _config.yml. It will appear in your document head meta (for
8
+ Google search results) and in your feed.xml site description.
9
+ show_excerpts: false # set to true to show excerpts on the homepage
10
+ portfolio:
11
+ info:
12
+ name:
13
+ firstname: John
14
+ lastname: Doe
15
+ location: 3542 Berry Street · Cheyenne Wells, CO 80810
16
+ phonenumber: (317) 585-8468
17
+ email: name@email.com
18
+ social:
19
+ # twitter: jekyllrb
20
+ # facebook: jekyll
21
+ github: jekyll
22
+ linkedin: jekyll
23
+ # rss: 'https://jekyllrb.com'
24
+
25
+
26
+ # Minima date format
27
+ # refer to https://shopify.github.io/liquid/filters/date/ if you want to customize this
28
+ jekyll-bootstrap-resume-theme:
29
+ date_format: "%b %-d, %Y"
30
+
31
+ # If you want to link only specific pages in your header, uncomment
32
+ # this and add the path to the pages in order as they should show up
33
+ #header_pages:
34
+ # - about.md
35
+
36
+ # Build settings
37
+ theme: jekyll-bootstrap-resume-theme
38
+
39
+ plugins:
40
+ - jekyll-feed
41
+ - jekyll-seo-tag
@@ -0,0 +1,3 @@
1
+ {% comment %}
2
+ Placeholder to allow defining custom head, in principle, you can add anything here, e.g. favicons.
3
+ {% endcomment %}
@@ -0,0 +1,8 @@
1
+ <!-- Bootstrap core JS-->
2
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
3
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"></script>
4
+ <!-- Third party plugin JS-->
5
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
6
+ <!-- Core theme JS-->
7
+ <script src="{{ "/assets/js/bootstrap.min.js" | relative_url }}"></script>
8
+ <script src="{{ "/assets/js/scripts.js" | relative_url }}"></script>
@@ -0,0 +1,15 @@
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
+ {%- seo -%}
7
+
8
+ <script type="text/javascript" src='https://use.fontawesome.com/releases/v5.15.1/js/all.js', crossorigin='anonymous'></script>
9
+ <link href='https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700', rel='stylesheet', type='text/css'>
10
+ <link href='https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i', rel='stylesheet', type='text/css'>
11
+ <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
12
+ {%- feed_meta -%}
13
+
14
+ {%- include custom_head.html -%}
15
+ </head>
@@ -0,0 +1,18 @@
1
+ <nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
2
+ <a class="navbar-brand js-scroll-trigger" href="#page-top">
3
+ <span class="d-block d-lg-none">{{ site.author.name }}</span>
4
+ <span class="d-none d-lg-block"><img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="{{ "/assets/img/profile.jpg" | relative_url }}" alt="" /></span>
5
+ </a>
6
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
7
+ <div class="collapse navbar-collapse" id="navbarSupportedContent">
8
+ <ul class="navbar-nav">
9
+ <li class="nav-item"><a class="nav-link js-scroll-trigger" href="#about">About</a></li>
10
+ <li class="nav-item"><a class="nav-link js-scroll-trigger" href="#experience">Experience</a></li>
11
+ <li class="nav-item"><a class="nav-link js-scroll-trigger" href="#education">Education</a></li>
12
+ <li class="nav-item"><a class="nav-link js-scroll-trigger" href="#volunteer">Volunteering Work</a></li>
13
+ <li class="nav-item"><a class="nav-link js-scroll-trigger" href="#projects">projects</a></li>
14
+ <li class="nav-item"><a class="nav-link js-scroll-trigger" href="#awards">Awards</a></li>
15
+ <li class="nav-item"><a class="nav-link js-scroll-trigger" href="#skills">Skills</a></li>
16
+ </ul>
17
+ </div>
18
+ </nav>
@@ -0,0 +1,16 @@
1
+ <section class="resume-section" id="about">
2
+ <div class="resume-section-content">
3
+ <h1 class="mb-0">
4
+ {{ site.portfolio.info.name.firstname}}
5
+ <span class="text-primary">{{ site.portfolio.info.name.lastname}}</span>
6
+ </h1>
7
+ <div class="subheading mb-5">
8
+ {{ site.portfolio.info.location}} · {{ site.portfolio.info.phonenumber}} ·
9
+ <a href="mailto:{{ site.portfolio.info.email}}">{{ site.portfolio.info.email}}</a>
10
+ </div>
11
+ <p class="lead mb-5">
12
+ {{ content }}
13
+ </p>
14
+ {%- include socials.html -%}
15
+ </div>
16
+ </section>
@@ -0,0 +1,15 @@
1
+ <hr class="m-0" />
2
+ <section class="resume-section" id="awards">
3
+ <div class="resume-section-content">
4
+ <h2 class="mb-5">Awards & Certifications</h2>
5
+ <ul class="fa-ul mb-0">
6
+ {% for award in site.data.awards %}
7
+ <li>
8
+ <span class="fa-li"><i class="fas fa-trophy text-warning"></i></span>
9
+ {{ award }}
10
+ </li>
11
+ {% endfor %}
12
+
13
+ </ul>
14
+ </div>
15
+ </section>
@@ -0,0 +1,17 @@
1
+ <hr class="m-0" />
2
+ <section class="resume-section" id="education">
3
+ <div class="resume-section-content">
4
+ <h2 class="mb-5">Education</h2>
5
+ {% for study in site.data.studies %}
6
+ <div class="d-flex flex-column flex-md-row justify-content-between mb-5">
7
+ <div class="flex-grow-1">
8
+ <h3 class="mb-0">{{ study.course }}</h3>
9
+ <div class="subheading mb-3">{{ study.school }}</div>
10
+ <p>{{ study.degree }}</p>
11
+ <p>{{ study.description }}</p>
12
+ </div>
13
+ <div class="flex-shrink-0"><span class="text-primary">{{ study.start_date | date: "%B %Y" }} - {%- if study.end_date %} {{ study.end_date | date: "%B %Y" }} {% else %} Present {% endif %}</span></div>
14
+ </div>
15
+ {% endfor %}
16
+ </div>
17
+ </section>
@@ -0,0 +1,16 @@
1
+ <hr class="m-0" />
2
+ <section class="resume-section" id="experience">
3
+ <div class="resume-section-content">
4
+ <h2 class="mb-5">Experience</h2>
5
+ {% for job in site.data.jobs %}
6
+ <div class="d-flex flex-column flex-md-row justify-content-between mb-5">
7
+ <div class="flex-grow-1">
8
+ <h3 class="mb-0">{{ job.function }}</h3>
9
+ <div class="subheading mb-3">{{ job.company }}</div>
10
+ <p>{{ job.description }}</p>
11
+ </div>
12
+ <div class="flex-shrink-0"><span class="text-primary">{{ job.start_date | date: "%B %Y" }} - {%- if job.end_date %} {{ job.end_date | date: "%B %Y" }} {% else %} Present {% endif %}</span></div>
13
+ </div>
14
+ {% endfor %}
15
+ </div>
16
+ </section>
@@ -0,0 +1,16 @@
1
+ <hr class="m-0" />
2
+ <section class="resume-section" id="projects">
3
+ <div class="resume-section-content">
4
+ <h2 class="mb-5">Projects</h2>
5
+ {% for project in site.data.projects %}
6
+ <div class="d-flex flex-column flex-md-row justify-content-between mb-5">
7
+ <div class="flex-grow-1">
8
+ <h3 class="mb-0"> {% if project.link %} <a target="_blank" href="{{ project.link | default: '#'}}">{{ project.title }}</a> {% else %} {{ project.title }} {% endif %} </h3>
9
+ <div class="subheading mb-3">{{ project.stakeholders }}</div>
10
+ <p>{{ project.description }}</p>
11
+ </div>
12
+ <div class="flex-shrink-0"><span class="text-primary">{{ project.start_date | date: "%B %Y" }} - {%- if project.end_date %} {{ project.end_date | date: "%B %Y" }} {% else %} Present {% endif %}</span></div>
13
+ </div>
14
+ {% endfor %}
15
+ </div>
16
+ </section>
@@ -0,0 +1,13 @@
1
+ <section class="resume-section" id="skills">
2
+ <div class="resume-section-content">
3
+ <h2 class="mb-5">Skills</h2>
4
+ <ul class="fa-ul mb-0">
5
+ {% for skill in site.data.skills %}
6
+ <li>
7
+ <span class="fa-li"><i class="fas fa-check"></i></span>
8
+ {{ skill }}
9
+ </li>
10
+ {% endfor %}
11
+ </ul>
12
+ </div>
13
+ </section>
@@ -0,0 +1,16 @@
1
+ <hr class="m-0" />
2
+ <section class="resume-section" id="volunteer">
3
+ <div class="resume-section-content">
4
+ <h2 class="mb-5">Volunteer Work</h2>
5
+ {% for job in site.data.volunteers %}
6
+ <div class="d-flex flex-column flex-md-row justify-content-between mb-5">
7
+ <div class="flex-grow-1">
8
+ <h3 class="mb-0">{{ job.function }}</h3>
9
+ <div class="subheading mb-3">{{ job.institute }}</div>
10
+ <p>{{ job.description }}</p>
11
+ </div>
12
+ <div class="flex-shrink-0"><span class="text-primary">{{ job.start_date | date: "%B %Y" }} - {%- if job.end_date %} {{ job.end_date | date: "%B %Y" }} {% else %} Present {% endif %}</span></div>
13
+ </div>
14
+ {% endfor %}
15
+ </div>
16
+ </section>
@@ -0,0 +1,8 @@
1
+ <div class="social-icons">
2
+ {%- if site.portfolio.social.linkedin -%}<a class="social-icon" target="_blank" href="https://www.linkedin.com/in/{{ site.portfolio.social.linkedin | cgi_escape | escape }}" title="{{ site.portfolio.social.linkedin | escape }}"><i class="fab fa-linkedin-in"></i></a>{%- endif -%}
3
+ {%- if site.portfolio.social.github -%}<a class="social-icon" target="_blank" href="https://www.github.com/{{ site.portfolio.social.github | cgi_escape | escape }}" title="{{ site.portfolio.social.github | escape }}"><i class="fab fa-github"></i></a>{%- endif -%}
4
+ {%- if site.portfolio.social.twitter -%}<a class="social-icon" target="_blank" href="https://www.twitter.com/{{ site.portfolio.social.twitter | cgi_escape | escape }}" title="{{ site.portfolio.social.twitter | escape }}"><i class="fab fa-twitter"></i></a>{%- endif -%}
5
+ {%- if site.portfolio.social.facebook -%}<a class="social-icon" target="_blank" href="https://www.facebook.com/{{ site.portfolio.social.facebook | cgi_escape | escape }}" title="{{ site.portfolio.social.facebook | escape }}"><i class="fab fa-facebook-f"></i></a>{%- endif -%}
6
+ {%- if site.portfolio.social.rss -%}<a class="social-icon" target="_blank" href="{{ site.portfolio.social.rss }}" title="{{ site.portfolio.social.rss | escape }}"><i class="fas fa-rss"></i></a>{%- endif -%}
7
+
8
+ </div>
@@ -0,0 +1,7 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en" dir="ltr">
3
+ {%- include head.html -%}
4
+ <body id=page-top>
5
+ {{ content }}
6
+ </body>
7
+ </html>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}