Skip to content

Commit

Permalink
fix: add <hr> line after "about" and "skills" sections
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienjoly committed Jan 8, 2021
1 parent eee57f1 commit e5ab34c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 17 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsonresume-theme-modernfull",
"version": "0.4.1",
"version": "0.5.0",
"description": "jsonresume-theme-modern =======================",
"main": "index.js",
"scripts": {
Expand Down
37 changes: 22 additions & 15 deletions resume.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<style>
hr {
clear: both;
}
.section-skills hr {
position: relative;
top: 12px;
}
.section-about > div,
.section-references > div {
margin-top: 24px;
Expand Down Expand Up @@ -57,20 +64,20 @@
<h3>About</h3>
</header>
<div class="col-md-9">
<p>{{basics.summary}}</p>
{{#basics.phone}}
<strong>Phone:</strong> {{basics.phone}} <br />
{{/basics.phone}}
{{#basics.email}}
<strong>Email:</strong> {{basics.email}}<br />
{{/basics.email}}
{{#profiles.twitter}}
<strong>Twitter:</strong> <a href="http://twitter.com/{{.}}">{{.}}</a><br />
{{/profiles.twitter}}
{{#profiles.github}}
<strong>Github:</strong> <a href="http://github.com/{{.}}">{{.}}</a><br />

{{/profiles.github}}
<p>{{basics.summary}}</p>
{{#basics.phone}}
<strong>Phone:</strong> {{basics.phone}} <br />
{{/basics.phone}}
{{#basics.email}}
<strong>Email:</strong> {{basics.email}}<br />
{{/basics.email}}
{{#profiles.twitter}}
<strong>Twitter:</strong> <a href="http://twitter.com/{{.}}">{{.}}</a><br />
{{/profiles.twitter}}
{{#profiles.github}}
<strong>Github:</strong> <a href="http://github.com/{{.}}">{{.}}</a><br />
{{/profiles.github}}
<hr />
</div>
</section>

Expand Down Expand Up @@ -176,7 +183,6 @@
<div class="row-fluid">
{{#skills}}
<ul class="col-md-6">

<li>
<h4>{{name}}</h4>
<ul>
Expand All @@ -188,6 +194,7 @@
</ul>
{{/skills}}
</div>
<hr />
</div>
</section>
{{/skills.length}}
Expand Down

0 comments on commit e5ab34c

Please sign in to comment.