The bmannconsulting.com website

Update eg

+5
.gitignore
···
+
_site
+
.sass-cache
+
.jekyll-cache
+
.jekyll-metadata
+
vendor
+4 -3
_includes/backlinks.html
···
<!-- Add backlinks to the current page -->
{%- assign link_count = 0 -%}
+
{%- assign wiki_link_title = '[' | append: page.title | append: ']' -%}
{%- for note in site.notes -%}
{%- if note.url != page.url -%}
-
{%- if note.content contains page.title -%}
+
{%- if note.content contains wiki_link_title -%}
{%- assign link_count = link_count | plus:1 -%}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- for note in site.posts -%}
{%- if note.url != page.url -%}
-
{%- if note.content contains page.title -%}
+
{%- if note.content contains wiki_link_title -%}
{%- assign link_count = link_count | plus:1 -%}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- for note in site.pages -%}
{%- if note.url != page.url -%}
-
{%- if note.content contains page.title -%}
+
{%- if note.content contains wiki_link_title -%}
{%- assign link_count = link_count | plus:1 -%}
{%- endif -%}
{%- endif -%}
+21
_includes/comments.html
···
+
{%- if page.comments -%}
+
<!-- DISQUS COMMENT SECTION, DO NOT TOUCH -->
+
<div id="disqus_thread"></div>
+
<script>
+
/**
+
*RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
+
*LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
+
var disqus_config = function () {
+
this.page.url = '{{ page.url | absolute_url }}'; // Replace PAGE_URL with your page's canonical URL variable
+
this.page.identifier = '{{ page.url | absolute_url }}'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
+
};
+
+
(function() { // DON'T EDIT BELOW THIS LINE
+
var d = document, s = d.createElement('script');
+
s.src = 'https://{{shortname}}.disqus.com/embed.js';
+
s.setAttribute('data-timestamp', +new Date());
+
(d.head || d.body).appendChild(s);
+
})();
+
</script>
+
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
+
{%- endif -%}
+1 -1
_includes/header.html
···
<div class="searchbar search-container">
<i class="fa fa-search" aria-hidden="true"></i>
<label for="search-input"></label>
-
<input type="text" oninput="changeResultContainerDisp(this.value)" id="search-input" autocomplete="off" placeholder="Search Knowledge Continuum..."/>
+
<input type="text" oninput="changeResultContainerDisp(this.value)" id="search-input" autocomplete="off" placeholder="Search Simply Jekyll..."/>
<ul id="results-container"></ul>
</div>
<script src="/assets/js/simple-jekyll-search.min.js"></script>
+4 -1
_layouts/post.html
···
{%- include header.html -%}
{%- include feed.html -%}
-
{%- if page.content-type == "notes" or page.content-type == "post" -%}
+
{%- if page.content-type == "notes"
+
or page.content-type == "post"
+
or page.content-type == "eg" -%}
<main>
<h1>{{page.title}}</h1>
{%- include content.html -%}
···
{%- include related.html -%}
</main>
{%- endif -%}
+
{%- include comments.html -%}
{%- include footer.html -%}
</div>
<button class="scroll-to-top" id="scroll-to-top"><i class="fa fa-chevron-up"></i></button>
+1
about.md
···
layout: post
title: About
permalink: /about/
+
content-type: eg
---
As of now, I am a programmer with expertise in System Programming (especially C++), who is also interested in Computer Graphics, Compiler Design, and Some Embedded Systems. [[Here::https://github.com/raghuveerdotnet]] is my coding scratchpad if you are interested.
assets/img/firstdesign.jpg

This is a binary file and will not be displayed.

+1
dates.md
···
layout: post
title: By Date
permalink: /dates/
+
content-type: eg
---
<style>
+2 -1
tags.md
···
layout: post
title: By Tags
permalink: /tags/
+
content-type: eg
---
<style>
···
<main>
{% for tag in site.tags %}
-
<h3 id="{{ tag | first }}">{{ tag | first }}</h3>
+
<h3 id="{{ tag | first }}">{{ tag | first | capitalize }}</h3>
{% for post in tag.last %}
<li id="category-content" style="padding-bottom: 0.6em; list-style: none;"><a href="{{post.url}}">{{ post.title }}</a></li>
{% endfor %}