feat: add title tags to icons
This commit is contained in:
parent
2852431ef3
commit
9be473b033
1 changed files with 5 additions and 4 deletions
|
|
@ -40,10 +40,10 @@
|
||||||
<strong>Hello.</strong> Thanks for dropping by. There’s not much to see here at the moment, but feel free to drop me a line using one of the links below.
|
<strong>Hello.</strong> Thanks for dropping by. There’s not much to see here at the moment, but feel free to drop me a line using one of the links below.
|
||||||
</p>
|
</p>
|
||||||
<ul id="contact" class="contact">
|
<ul id="contact" class="contact">
|
||||||
<li><a rel="me" class="fa fa-github" href="https://github.com/caesar">GitHub</a></li>
|
<li><a rel="me" class="fa fa-github" title="GitHub" href="https://github.com/caesar">GitHub</a></li>
|
||||||
<li><a rel="me" class="fa fa-twitter" href="https://twitter.com/caesarschinas">Twitter</a></li>
|
<li><a rel="me" class="fa fa-twitter" title="Twitter" href="https://twitter.com/caesarschinas">Twitter</a></li>
|
||||||
<li><a rel="me" class="fa fa-keybase" href="https://keybase.io/caesar">Keybase</a></li>
|
<li><a rel="me" class="fa fa-keybase" title="Keybase" href="https://keybase.io/caesar">Keybase</a></li>
|
||||||
<li><a rel="me" class="fa fa-matrix-org" href="https://matrix.to/#/@caesar:schinas.net">Matrix</a></li>
|
<li><a rel="me" class="fa fa-matrix-org" title="Matrix" href="https://matrix.to/#/@caesar:schinas.net">Matrix</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<script>
|
<script>
|
||||||
(function(){
|
(function(){
|
||||||
|
|
@ -52,6 +52,7 @@
|
||||||
var a = document.createElement('a');
|
var a = document.createElement('a');
|
||||||
a.text = 'email';
|
a.text = 'email';
|
||||||
a.className = 'fa fa-envelope';
|
a.className = 'fa fa-envelope';
|
||||||
|
a.title = 'Email';
|
||||||
function setHref(e) {
|
function setHref(e) {
|
||||||
var x = 'pnrfne' + '@pnrfnefpuvanf' + '.pbz';
|
var x = 'pnrfne' + '@pnrfnefpuvanf' + '.pbz';
|
||||||
x = x.replace(/[a-zA-Z]/g, function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);});
|
x = x.replace(/[a-zA-Z]/g, function(c){return String.fromCharCode((c<="Z"?90:122)>=(c=c.charCodeAt(0)+13)?c:c-26);});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue