Add gitignore and static icons :beach: (#70)

* Add gitignore and static icons

* Add social icons bar

* Add more social icons, fix styling for header

* Fix dark theme bug

* Remove AWS icon

* Add math typesetting to readme features

* Templatize social icons

* Add documentation and fix menu icon

* Add more icons in example site

* Fix lang in code blocks

* Fix codeblocks lang and use twitch icon

* Reduce spacing around and between social icons

* Fix icon sizing

* Hard code width and height

* Fix language in code blocks

* Update language

* Update Readme

* Add screenshot

* Update screenshots

Co-authored-by: Yash Mehrotra <yashmehrotra95@gmail.com>
This commit is contained in:
Avijit Gupta
2021-09-07 15:16:58 +02:00
committed by GitHub
parent 90f49861ad
commit 808cd0ffb9
42 changed files with 146 additions and 23 deletions

View File

@@ -11,6 +11,20 @@
<div class="flex-break"></div>
{{ if isset .Site.Params "socialicons" }}
<section class="social-icons">
<ul class="social-icons-list">
{{ range .Site.Params.SocialIcons }}
<li class="social-icon">
<a href="{{ .url }}">
<img class="svg-inject" src="/icons/{{ .name }}.svg" />
</a>
</li>
{{ end }}
</ul>
</section>
{{ end }}
{{ if isset .Site.Params "showpostsonhomepage" }}
<div class="home-posts list-posts">

View File

@@ -40,6 +40,7 @@
<link rel="stylesheet" type="text/css" href="/css/main.css">
<link disabled id="dark-theme" rel="stylesheet" href="/css/dark.css">
<script src="/js/svg-injector.min.js"></script>
<script src="/js/feather-icons.min.js"></script>
<script src="/js/main.js"></script>