* Add Prettier set-up (no formatting in this commit). * Manual fixes for Prettier issues. * Run Prettier fix on non-markdown files. * Incorporate Prettier PR feedback - update commands, re-apply new yaml styles, add editor config. * Remove deprecated config item. * Add dependency on prettier-plugin-go-template. * reconcile changed file with prettier formatting. * Add git blame ignore revs file to include Prettier formatting commit. * Fix format issue with merge conflict.
14 lines
619 B
HTML
14 lines
619 B
HTML
{{ with .File }}
|
|
<p class="text-gray-500 text-xs">Share this post</p>
|
|
<ul class="p-0 list-none">
|
|
<li>
|
|
<a data-track="share-twitter" class="mr-2" href="https://twitter.com/intent/tweet?text={{ $.Page.Title }}&tw_p=tweetbutton&url={{ $.Page.Permalink }}" target="_blank">
|
|
<i class="fab fa-twitter text-xl"></i>
|
|
</a>
|
|
<a data-track="share-linkedin" href="https://www.linkedin.com/sharing/share-offsite/?url={{ $.Page.Permalink }}" target="_blank">
|
|
<i class="fab fa-linkedin text-xl"></i>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
{{ end }}
|