mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-04 07:40:09 +05:30
theme added
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
{% if GOOGLE_ANALYTICS %}
|
||||
<script>
|
||||
(function(i, s, o, g, r, a, m) {
|
||||
i['GoogleAnalyticsObject'] = r;
|
||||
i[r] = i[r] || function() {
|
||||
(i[r].q = i[r].q || []).push(arguments)
|
||||
}, i[r].l = 1 * new Date();
|
||||
a = s.createElement(o);
|
||||
a.async = 1;
|
||||
a.src = g;
|
||||
m = s.getElementsByTagName(o)[0];
|
||||
m.parentNode.insertBefore(a, m)
|
||||
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
|
||||
ga('create', '{{ GOOGLE_ANALYTICS }}', 'auto');
|
||||
ga('send', 'pageview');
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{% if GAUGES %}
|
||||
<script>
|
||||
var _gauges = _gauges || [];
|
||||
(function() {
|
||||
var t = document.createElement('script');
|
||||
t.type = 'text/javascript';
|
||||
t.async = true;
|
||||
t.id = 'gauges-tracker';
|
||||
t.setAttribute('data-site-id', '{{ GAUGES }}');
|
||||
t.src = 'https://secure.gaug.es/track.js';
|
||||
var s = document.getElementsByTagName('script')[0];
|
||||
s.parentNode.insertBefore(t, s);
|
||||
})();
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
{% if PIWIK_URL and PIWIK_SITE_ID %}
|
||||
<script>
|
||||
var _paq = _paq || [];
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u = '{{ PIWIK_URL }}/';
|
||||
_paq.push(['setTrackerUrl', u + 'piwik.php']);
|
||||
_paq.push(['setSiteId', '{{ PIWIK_SITE_ID }}']);
|
||||
var g = document.createElement('script');
|
||||
g.type = 'text/javascript';
|
||||
g.async = true;
|
||||
g.defer = true;
|
||||
g.src = u + 'piwik.js';
|
||||
var s = document.getElementsByTagName('script')[0];
|
||||
s.parentNode.insertBefore(g, s);
|
||||
})();
|
||||
</script>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,20 @@
|
||||
{% if DISQUS_SITENAME %}
|
||||
<hr>
|
||||
<div id="disqus_thread"></div>
|
||||
<script>
|
||||
var disqus_config = function() {
|
||||
this.page.url = '{{ SITEURL }}/{{ output_file }}';
|
||||
this.page.identifier = '{{ article.slug }}';
|
||||
};
|
||||
(function() {
|
||||
var d = document;
|
||||
var s = d.createElement('script');
|
||||
s.src = '//{{ DISQUS_SITENAME }}.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript class="text-muted">
|
||||
Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a>
|
||||
</noscript>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,22 @@
|
||||
<div class="row">
|
||||
<ul class="col-sm-6 list-inline">
|
||||
{% if not FOOTER_LINKS %}
|
||||
{% if not HIDE_AUTHORS %}
|
||||
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ AUTHORS_URL or AUTHORS_SAVE_AS or 'authors.html' }}">Authors</a></li>
|
||||
{% endif %}
|
||||
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ ARCHIVES_URL or ARCHIVES_SAVE_AS or 'archives.html' }}">Archives</a></li>
|
||||
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ CATEGORIES_URL or CATEGORIES_SAVE_AS or 'categories.html' }}">Categories</a></li>
|
||||
{% if tags|length %}
|
||||
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ TAGS_URL or TAGS_SAVE_AS or 'tags.html' }}">Tags</a></li>
|
||||
{% endif %}
|
||||
{% else %}
|
||||
{% for title, link in FOOTER_LINKS %}
|
||||
<li class="list-inline-item"><a href="{{ url(link) }}">{{ title }}</a></li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</ul>
|
||||
<p class="col-sm-6 text-sm-right text-muted">
|
||||
Generated by <a href="https://github.com/getpelican/pelican" target="_blank">Pelican</a>
|
||||
/ <a href="https://github.com/nairobilug/pelican-alchemy" target="_blank">✨</a>
|
||||
</p>
|
||||
</div>
|
||||
@@ -0,0 +1,49 @@
|
||||
{%- macro fa(icon) -%}
|
||||
{%- set fa_special_icons = {
|
||||
"feed": "fas fa-rss",
|
||||
"rss": "fas fa-rss",
|
||||
} -%}
|
||||
{%- if icon in fa_special_icons -%}
|
||||
{{ fa_special_icons[icon] }}
|
||||
{%- elif icon.split()|select("in", ["fab", "fas", "far", "fal", "fad"])|list -%}
|
||||
{{ icon }}
|
||||
{%- else -%}
|
||||
fab fa-{{icon}}
|
||||
{%- endif -%}
|
||||
{%- endmacro -%}
|
||||
<div class="row">
|
||||
{% if SITEIMAGE %}
|
||||
<div class="col-sm-4">
|
||||
<a href="{{ SITEURL }}/">
|
||||
<img class="img-fluid rounded" src={{ url(SITEIMAGE) }} alt="{{ SITENAME }}">
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="col-sm-{% if SITEIMAGE %}8{% else %}12{% endif %}">
|
||||
<h1 class="title"><a href="{{ SITEURL }}/">{{ SITENAME }}</a></h1>
|
||||
{% if SITESUBTITLE %}
|
||||
<p class="text-muted">{{ SITESUBTITLE }}</p>
|
||||
{% endif %}
|
||||
{% if LINKS or (DISPLAY_PAGES_ON_MENU and pages) or ICONS %}
|
||||
<ul class="list-inline">
|
||||
{% for title, link in LINKS %}
|
||||
<li class="list-inline-item"><a href="{{ url(link) }}" target="_blank">{{ title }}</a></li>
|
||||
{% endfor %}
|
||||
{% if DISPLAY_PAGES_ON_MENU %}
|
||||
{% for page in pages %}
|
||||
{% if LINKS and loop.first %}
|
||||
<li class="list-inline-item text-muted">|</li>
|
||||
{% endif %}
|
||||
<li class="list-inline-item"><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% for icon, link in ICONS %}
|
||||
{% if (LINKS or (DISPLAY_PAGES_ON_MENU and pages)) and loop.first %}
|
||||
<li class=" list-inline-item text-muted">|</li>
|
||||
{% endif %}
|
||||
<li class="list-inline-item"><a class="{{ fa(icon) }}" href="{{ url(link) }}" target="_blank"></a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
{% if articles_paginator.num_pages > 1 %}
|
||||
<hr>
|
||||
<ul class="pagination">
|
||||
{% if articles_page.has_previous() %}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ SITEURL }}/{{ articles_previous_page.url }}">
|
||||
<span aria-hidden="true">«</span>
|
||||
<span class="sr-only">Previous</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
<li class="page-item">
|
||||
<span class="page-link">{{ articles_page.number }} of {{ articles_paginator.num_pages }}</span>
|
||||
</li>
|
||||
{% if articles_page.has_next() %}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ SITEURL }}/{{ articles_next_page.url }}">
|
||||
<span aria-hidden="true">»</span>
|
||||
<span class="sr-only">Next</span>
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,26 @@
|
||||
{% if FEED_ALL_ATOM %}
|
||||
<link rel="alternate" type="application/atom+xml" title="Full Atom Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}">
|
||||
{% endif %}
|
||||
{% if FEED_ALL_RSS %}
|
||||
<link rel="alternate" type="application/rss+xml" title="Full RSS Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}">{% endif %}
|
||||
{% if FEED_ATOM %}
|
||||
<link rel="alternate" type="application/atom+xml" title="Atom Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}">{% endif %}
|
||||
{% if FEED_RSS %}
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ FEED_RSS }}">{% endif %}
|
||||
{% if CATEGORY_FEED_ATOM and category %}
|
||||
<link rel="alternate" type="application/atom+xml" title="Categories Atom Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM.format(slug=category.slug) }}">{% endif %}
|
||||
{% if CATEGORY_FEED_RSS and category %}
|
||||
<link rel="alternate" type="application/rss+xml" title="Categories RSS Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS.format(slug=category.slug) }}">{% endif %}
|
||||
{% if TAG_FEED_ATOM and tag %}
|
||||
<link rel="alternate" type="application/atom+xml" title="Tags Atom Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM.format(slug=tag.slug) }}">{% endif %}
|
||||
{% if TAG_FEED_RSS and tag %}
|
||||
<link rel="alternate" type="application/rss+xml" title="Tags RSS Feed"
|
||||
href="{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS.format(slug=tag.slug) }}">
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user