finish customizing the social icons, and clean up contacts page
This commit is contained in:
parent
3bc171ea6b
commit
1860c51f6c
@ -65,9 +65,12 @@ enableGitInfo = true
|
||||
[social]
|
||||
locals = "exitingthecave"
|
||||
gab = "exitingthecave"
|
||||
minds = "greg_gauthier"
|
||||
gitea = "gmgauthier"
|
||||
github = "gmgauthier"
|
||||
stackoverflow = "381517"
|
||||
keybase = "gmgauthier"
|
||||
linkedin = "gregorygauthier"
|
||||
|
||||
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
# Contact Me
|
||||
|
||||
gmgauthier@protonmail.com
|
||||
|
||||
## Find Me
|
||||
## Other Sites
|
||||
|
||||
{{< rawhtml >}}
|
||||
|
||||
@ -22,26 +21,6 @@ gmgauthier@protonmail.com
|
||||
<td class="tg-0pkx"><img src="/img/anchor-logo.jpeg" height="35" width="35"/></td>
|
||||
<td class="tg-0pky"><a href="https://anchor.fm/exitingthecave" target="_blank">Philosophy Podcast</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-0pkx"><img src="/img/locals-logo.png" height="35" width="35"/></td>
|
||||
<td class="tg-0pky"><a href="https://exitingthecave.locals.com/" target="_blank">Locals Community</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-0pkx"><img src="/img/gab-logo.png" height="35" width="35"/></td>
|
||||
<td class="tg-0pky"><a href="https://gab.com/exitingthecave/" target="_blank">Gab</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-0pkx"><img src="/img/minds-logo.png" height="35" width="35"/></td>
|
||||
<td class="tg-0pky"><a href="https://minds.com/greg_gauthier" target="_blank">Minds</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-0pkx"><img src="/img/gitea-logo.png" height="35" width="35"/></td>
|
||||
<td class="tg-0pky"><a href="https://gitea.gmgauthier.com/gmgauthier" target="_blank">Gitea</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="tg-0pkx"><img src="/img/linkedin-logo.png" height="35" width="35"/></td>
|
||||
<td class="tg-0pky"><a href="https://www.linkedin.com/in/gregorygauthier/" target="_blank">Linkedin</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{{< /rawhtml >}}
|
||||
|
@ -8,18 +8,65 @@
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
<!-- Social Media -->
|
||||
{{ with .Site.Social.locals }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://{{ . }}.locals.com/" rel="me" target="_blank"><i class="fa fa-user fa-fw"></i>Locals</a>
|
||||
<a class="pure-menu-link" href="https://{{ . }}.locals.com/" rel="me" target="_blank"><i class="fa fa-globe fa-fw"></i>Locals</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.gab }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://gab.com/{{ . }}" rel="me" target="_blank"><i class="fa fa-user fa-fw"></i>Gab</a>
|
||||
<a class="pure-menu-link" href="https://gab.com/{{ . }}" rel="me" target="_blank"><i class="fa fa-frog fa-fw"></i>Gab</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.minds }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://minds.com/{{ . }}" rel="me" target="_blank"><i class="fa fa-lightbulb fa-fw"></i>Minds</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.keybase }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://keybase.io/{{ . }}" rel="me" target="_blank"><i class="fas fa-key fa-fw"></i>Keybase</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.linkedin }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://linkedin.com/in/{{ . }}" rel="me" target="_blank"><i class="fab fa-linkedin fa-fw"></i>LinkedIn</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
<!-- Tech -->
|
||||
|
||||
{{ with .Site.Social.gitea }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://gitea.gmgauthier.com/{{ . }}" rel="me" target="_blank"><i class="fa fa-code fa-fw"></i>Gitea</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.github }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://github.com/{{ . }}" rel="me" target="_blank"><i class="fab fa-github-square fa-fw"></i>GitHub</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.stackoverflow }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://stackoverflow.com/users/{{ . }}" rel="me" target="_blank"><i class="fab fa-stack-overflow fa-fw"></i>Stack Overflow</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.serverfault }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://serverfault.com/users/{{ . }}" rel="me" target="_blank"><i class="fab fa-server fa-fw"></i>Server Fault</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!-- ***** OTHER TRASH ****** -->
|
||||
{{ with .Site.Social.twitter }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://twitter.com/{{ . }}" rel="me" target="_blank"><i class="fab fa-twitter-square fa-fw"></i>Twitter</a>
|
||||
@ -102,12 +149,6 @@
|
||||
|
||||
<!-- SNS career oriented -->
|
||||
|
||||
{{ with .Site.Social.linkedin }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://linkedin.com/in/{{ . }}" rel="me" target="_blank"><i class="fab fa-linkedin fa-fw"></i>LinkedIn</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.xing }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://xing.com/profile/{{ . }}" rel="me" target="_blank"><i class="fab fa-xing-square fa-fw"></i>Xing</a>
|
||||
@ -130,11 +171,6 @@
|
||||
|
||||
<!-- Techie -->
|
||||
|
||||
{{ with .Site.Social.github }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://github.com/{{ . }}" rel="me" target="_blank"><i class="fab fa-github-square fa-fw"></i>GitHub</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.gitlab }}
|
||||
<li class="pure-menu-item">
|
||||
@ -148,17 +184,6 @@
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.stackoverflow }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://stackoverflow.com/users/{{ . }}" rel="me" target="_blank"><i class="fab fa-stack-overflow fa-fw"></i>Stack Overflow</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Social.serverfault }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://serverfault.com/users/{{ . }}" rel="me" target="_blank"><i class="fab fa-server fa-fw"></i>Server Fault</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
<!-- Gaming -->
|
||||
|
||||
@ -189,12 +214,5 @@
|
||||
{{ end }}
|
||||
|
||||
<!-- Other -->
|
||||
|
||||
{{ with .Site.Social.keybase }}
|
||||
<li class="pure-menu-item">
|
||||
<a class="pure-menu-link" href="https://keybase.io/{{ . }}" rel="me" target="_blank"><i class="fas fa-key fa-fw"></i>Keybase</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user