Skip to content

Commit

Permalink
chore: lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrex committed Mar 25, 2021
1 parent 02a0573 commit ed0f2b4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ open: true # open or close your site
date_format: "%Y-%m-%d" # date format
google_analytics: # your google analytics
cloudflare_analytics: # your cloudflare analytics
allow_search_engines: true # allow search engines indexing your resume
allow_search_engines: true # allow search engines indexing your resume
theme_color: "#1DA1F2" # your favorite theme color
48 changes: 24 additions & 24 deletions _includes/certificates.html
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
{% assign certificates = data.certificates %}
{% if certificates and certificates.display %}
<section class="section certificates-section">
<section class="section certificates-section">

<div class="section-title">
{{ certificates.title }}
{{ certificates.title }}
</div>

<div class="row">
{% for certificate in certificates.items %}
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12">
<div class="item">
{% for certificate in certificates.items %}
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12">
<div class="item">

<div class="upper-row">
{% if certificate.link %}
<div class="name"><a href="{{ certificate.link }}">{{ certificate.name }}</a></div>
{% else %}
<div class="name">{{ certificate.name }}</div>
{% endif %}
</div>
<div class="upper-row">
{% if certificate.link %}
<div class="name"><a href="{{ certificate.link }}">{{ certificate.name }}</a></div>
{% else %}
<div class="name">{{ certificate.name }}</div>
{% endif %}
</div>

<div class="upper-row">
<div class="authority">{{ certificate.authority }}</div>
<div class="time">{{ certificate.time }}</div>
</div>
<div class="upper-row">
<div class="authority">{{ certificate.authority }}</div>
<div class="time">{{ certificate.time }}</div>
</div>

{% if certificate.details %}
<div class="details">
{{ certificate.details | markdownify }}
</div>
{% endif %}
{% if certificate.details %}
<div class="details">
{{ certificate.details | markdownify }}
</div>
{% endif %}
</div>
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</section>
</section>
{% endif %}
2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% if footer and footer.display %}
<footer class="footer">
<div class="text-center">
{% assign date_format = site.date_format | default: "%b %-d, %Y" %}
{% assign date_format = site.date_format | default: "%Y-%m-%d" %}
<small class="copyright">Updated: {{ site.time | date: date_format }} <span class="fa fa-heart"></span> By
<a href="https://github.com/tarrex/online-resume" target="_blank" rel="nofollow">Online-Resume</a></small>
</div>
Expand Down

0 comments on commit ed0f2b4

Please sign in to comment.