Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Patreon as an option in Contact me section #93

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ permalink: /:year/:month/:day/:title/
twitter_username: gaohaoyang126
facebook_username: gaohaoyang.water
github_username: Gaohaoyang
patreon_username: your_patreon_username
email: gaohaoyang126@126.com
weibo_username: 3115521wh
zhihu_username: gaohaoyang
linkedIn_username: gaohaoyang
dribbble_username:
dribbble_username: your_dribbble_username

description_footer: 本站记录我前端之旅的沿途风景!

Expand Down
17 changes: 9 additions & 8 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@
{% if site.description_footer %} {{site.description_footer}} {% endif %}
</p>
<p class="contact">
Contact me at: {% if site.github_username %}
<a href="https://github.com/{{site.github_username}}" title="GitHub"><i class="fa fa-github" aria-hidden="true"></i></a> {% endif %} {% if site.email %}
<a href="mailto:{{site.email}}" title="email"><i class="fa fa-envelope-o" aria-hidden="true"></i></a> {% endif %} {% if site.weibo_username %}
<a href="http://weibo.com/{{site.weibo_username}}" title="Weibo"><i class="fa fa-weibo" aria-hidden="true"></i></a> {% endif %} {% if site.zhihu_username %}
Support me on: {% if site.github_username %}
<a href="https://github.com/{{site.github_username}}" title="GitHub"><i class="fab fa-github" aria-hidden="true"></i></a> {% endif %} {% if site.email %}
<a href="https://patreon.com/{{site.patreon_username}}" title="Patreon"><i class="fab fa-patreon" aria-hidden="true"></i></a> {% endif %} {% if site.email %}
<a href="mailto:{{site.email}}" title="email"><i class="far fa-envelope" aria-hidden="true"></i></a> {% endif %} {% if site.weibo_username %}
<a href="http://weibo.com/{{site.weibo_username}}" title="Weibo"><i class="fab fa-weibo" aria-hidden="true"></i></a> {% endif %} {% if site.zhihu_username %}
<a href="https://www.zhihu.com/people/{{site.zhihu_username}}" title="Zhihu"><i class="iconfont icon-daoruzhihu"></i></a> {% endif %} {% if site.twitter_username %}
<a href="https://twitter.com/{{site.twitter_username}}" title="Twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> {% endif %} {% if site.facebook_username %}
<a href="https://www.facebook.com/{{site.facebook_username}}" title="Facebook"><i class="fa fa-facebook-official" aria-hidden="true"></i></a> {% endif %} {% if site.linkedIn_username %}
<a href="https://www.linkedin.com/in/{{site.linkedIn_username}}" title="LinkedIn"><i class="fa fa-linkedin" aria-hidden="true"></i></a> {% endif %} {% if site.dribbble_username %}
<a href=" https://dribbble.com/{{site.dribbble_username}}" title="Dribbble"><i class="fa fa-dribbble" aria-hidden="true"></i></a> {% endif %}
<a href="https://twitter.com/{{site.twitter_username}}" title="Twitter"><i class="fab fa-twitter" aria-hidden="true"></i></a> {% endif %} {% if site.facebook_username %}
<a href="https://www.facebook.com/{{site.facebook_username}}" title="Facebook"><i class="fab fa-facebook-f" aria-hidden="true"></i></a> {% endif %} {% if site.linkedIn_username %}
<a href="https://www.linkedin.com/in/{{site.linkedIn_username}}" title="LinkedIn"><i class="fab fa-linkedin" aria-hidden="true"></i></a> {% endif %} {% if site.dribbble_username %}
<a href=" https://dribbble.com/{{site.dribbble_username}}" title="Dribbble"><i class="fab fa-dribbble" aria-hidden="true"></i></a> {% endif %}
</p>
<p>
本站总访问量<span id="busuanzi_value_site_pv"></span>次,本站访客数<span id="busuanzi_value_site_uv"></span>人次,本文总阅读量<span id="busuanzi_value_page_pv"></span>次
Expand Down
2 changes: 1 addition & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<link rel="shortcut icon" href="/favicon.ico?" type="image/x-icon">
<link rel="icon" href="/favicon.ico?" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_8v3czwksspqlg14i.css">
<link rel="stylesheet" href="{{ "/css/main.css " | prepend: site.baseurl }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
Expand Down