Replace FontAwesome with ForkAwesome

This commit is contained in:
Cedric Girard 2019-08-23 15:24:04 +02:00
parent 2ff27bad0f
commit 4a36dec5dc
Signed by: X-dark
GPG Key ID: E7D0E125DB9519E4
8 changed files with 11 additions and 8 deletions

View File

@ -1,7 +1,7 @@
<div class="contact-container container-block">
<ul class="list-unstyled contact-list">
{{ range .Site.Params.contact.list }}
<li class="{{ .class }}"><i class="{{ with .iconStyle }}{{.}}{{else}}fas{{end}} {{ .icon }}"></i><a href="{{ .url }}">{{ .title }}</a></li>
<li class="{{ .class }}"><i class="{{ with .iconStyle }}{{.}}{{else}}fa{{end}} {{ .icon }}"></i> <a href="{{ .url }}">{{ .title }}</a></li>
{{ end }}
</ul>
</div><!--//contact-container-->

View File

@ -1,5 +1,5 @@
<section class="section experiences-section">
<h2 class="section-title"><span class="icon-holder"><i class="fas {{ .Site.Params.experiences.icon }}"></i></span>{{ i18n "experiences" }}</h2>
<h2 class="section-title"><span class="icon-holder"><i class="fa {{ .Site.Params.experiences.icon }}"></i></span>{{ i18n "experiences" }}</h2>
{{ range .Site.Params.jobs.list }}
<div class="item">

View File

@ -1,7 +1,7 @@
<footer class="footer">
<div class="text-center">
<!--/* This template is released under the Creative Commons Attribution 3.0 License. Please keep the attribution link below when using for your own project. Thank you for your support. :) If you'd like to use the template without the attribution, you can check out other license options via our website: themes.3rdwavemedia.com */-->
<small class="copyright">Designed with <i class="fas fa-heart"></i> by <a href="http://themes.3rdwavemedia.com" target="_blank">Xiaoying Riley</a> for developers</small><br>
<small class="copyright">Designed with <i class="fa fa-heart"></i> by <a href="http://themes.3rdwavemedia.com" target="_blank">Xiaoying Riley</a> for developers</small><br>
<small class="copyright">{{ now.Year }} &copy; {{ with .Site.Params.footer.copyright }}{{ . | markdownify }}{{ else }}Ported for Hugo by <a href="https://github.com/aerohub" target="_blank">Pavel Kanyshev</a>{{ end }}</small>
</div><!--//container-->
</footer><!--//footer-->

View File

@ -8,8 +8,7 @@
<link rel="shortcut icon" href="{{ .Site.BaseURL }}{{ with .Site.Params.profile.avatar }}assets/images/{{.}}{{ else }}favicon.ico{{ end }}">
<!-- Google Font -->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,400italic,300italic,300,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<!-- FontAwesome JS -->
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js" integrity="sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous">
<!-- Global CSS -->
<link rel="stylesheet" href="{{ .Site.BaseURL }}assets/plugins/bootstrap/css/bootstrap.min.css">
<!-- Theme CSS -->

View File

@ -1,5 +1,5 @@
<section class="section projects-section">
<h2 class="section-title"><span class="icon-holder"><i class="{{ with .Site.Params.projects.iconStyle }}{{.}}{{else}}fas{{end}} {{ .Site.Params.projects.icon }}"></i></span>{{ with .Site.Params.projects.title }}{{.}}{{else}}{{ i18n "projects" }}{{end}}</h2>
<h2 class="section-title"><span class="icon-holder"><i class="{{ with .Site.Params.projects.iconStyle }}{{.}}{{else}}fa{{end}} {{ .Site.Params.projects.icon }}"></i></span>{{ with .Site.Params.projects.title }}{{.}}{{else}}{{ i18n "projects" }}{{end}}</h2>
<div class="intro">
<p>{{ with .Site.Params.projects.intro }}{{ . | markdownify }}{{ end }}</p>
</div><!--//intro-->

View File

@ -1,5 +1,5 @@
<section class="skills-section section">
<h2 class="section-title"><span class="icon-holder"><i class="fas {{ .Site.Params.skills.icon }}"></i></span>{{ i18n "skills" }}</h2>
<h2 class="section-title"><span class="icon-holder"><i class="fa {{ .Site.Params.skills.icon }}"></i></span>{{ i18n "skills" }}</h2>
<div class="skillset">
{{ range .Site.Params.skills.list }}
<div class="item">

View File

@ -1,5 +1,5 @@
<section class="section summary-section">
<h2 class="section-title"><span class="icon-holder"><i class="fas {{ .Site.Params.summary.icon }}"></i></span>{{ i18n "summary" }}</h2>
<h2 class="section-title"><span class="icon-holder"><i class="fa {{ .Site.Params.summary.icon }}"></i></span>{{ i18n "summary" }}</h2>
<div class="summary">
<p>{{ with .Site.Params.summary.summary }}{{ . | markdownify }}{{ end }}</p>
</div><!--//summary-->

View File

@ -371,3 +371,7 @@ p {
margin-bottom: 0;
}
}
i.fa {
padding-top: 8px;
}