Skip to content

Commit

Permalink
v.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sujaykundu777 committed Aug 17, 2019
1 parent 5fd7307 commit 565c8c4
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 37 deletions.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ flickr_username: johndoe
#for comments using disqus
disqus_shortname: sujay-kundu

# wakatime username
wakatime_username: sujaykundu777

# syntax highlighter
markdown: kramdown

Expand Down
4 changes: 2 additions & 2 deletions _includes/coding_activity.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

<!-- Pie Chart -->
<figure>
<embed src="https://wakatime.com/share/@sujaykundu777/f540df00-f2d1-46e2-a360-da7e13ed8a66.svg"></embed>
<embed src="https://wakatime.com/share/@{{site.wakatime_username }}/f540df00-f2d1-46e2-a360-da7e13ed8a66.svg"></embed>
</figure>

<!-- Hours Coded -->
<figure>
<embed src="https://wakatime.com/share/@sujaykundu777/1550a9f1-d41a-4745-92a0-181a6fbb2456.svg"></embed>
<embed src="https://wakatime.com/share/@{{site.wakatime_username }}/1550a9f1-d41a-4745-92a0-181a6fbb2456.svg"></embed>
</figure>
25 changes: 1 addition & 24 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="description" content="{{ site.description }}">


<link rel="stylesheet" href="/assets/css/main.css" />

<link rel="icon" href="/assets/img/favicon.ico" type="image/gif" sizes="16x16">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
Expand All @@ -23,21 +21,6 @@
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt"
crossorigin="anonymous">

<script>
(function(d, h, m){
var js, fjs = d.getElementsByTagName(h)[0];
if (d.getElementById(m)){return;}
js = d.createElement(h); js.id = m;
js.onload = function(){
window.makerWidgetComInit({
position: "right",
widget: "ofeeof264otl2l5g-zspk40eq2gaomj2n-higi2qphmveubksi"
})};
js.src = "https://makerwidget.com/js/embed.js";
fjs.parentNode.insertBefore(js, fjs)
}(document, "script", "dhm"))
</script>

{% if jekyll.environment == "production" %}

<script>
Expand All @@ -51,12 +34,6 @@
</script>
{% endif %}

<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-7259836434848202",
enable_page_level_ads: true
});
</script>


</head>
24 changes: 14 additions & 10 deletions _layouts/about_me.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,19 @@ <h6 class="experience-info">{{detail.college_name}}</h6>
<div class="col-lg-4">

<div class="card">

<h6>
<i class="fas fa-map-marker-alt"></i> {{ site.author_location }}</h6>
<h6>
<i class="fas fa-envelope"></i> {{ site.author_email }}</h6>
<h6>
<i class="fas fa-link"></i> {{ site.author_website_url }} </h6>

{% if site.author_location %}
<h6> <i class="fas fa-map-marker-alt"></i> {{ site.author_location }}</h6>
{% endif %}
{% if site.author_email %}
<h6><i class="fas fa-envelope"></i> {{ site.author_email }}</h6>
{% endif %}
{% if site.author_website_url %}
<h6> <i class="fas fa-link"></i> {{ site.author_website_url }} </h6>
{% endif %}
<!--
{%- include github_follow_button.html -%}
{%- include twitter_follow_button.html -%}
{%- include twitter_follow_button.html -%} -->


</div>
Expand All @@ -109,12 +111,14 @@ <h1> Skills </h1>

</div>

{% if site.wakatime_username %}
<div class="card">
<h1> Coding Activity </h1>

{%- include coding_activity.html -%}

</div>
{% endif %}

</div>
</div>
2 changes: 1 addition & 1 deletion devlopr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "devlopr"
spec.version = "0.3.6"
spec.version = "0.3.7"
spec.authors = ["Sujay Kundu"]
spec.email = ["[email protected]"]

Expand Down

0 comments on commit 565c8c4

Please sign in to comment.