我想用GitHub页面和Jekyll创建一个在线简历。我使用的是极简主义主题。
它附带了我的GitHub帐户的侧边栏链接。但是,因为我创建了一个组织来获取自定义地址(myname.github.io
而不是myusername.github.io
)。这意味着它链接到该组织,但我希望它链接到我的帐户。
我该怎么做?
答案 0 :(得分:1)
正如项目中建议的那样,需要更改链接的附加步骤:
更改以下部分以反映您的需求并显示您想要的链接:
<a href="{{ site.github.url }}"> <h1>{{ site.title | default: site.github.repository_name }}</h1> </a>
<p>{{ site.description | default: site.github.project_tagline }}</p>
{% if site.github.is_project_page %}
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ github_name }}</small></a></p>
{% endif %}
{% if site.github.is_user_page %}
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
{% endif %}
{% if site.show_downloads %}
<ul>
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
</ul>
{% endif %}