github页面字体和index.html无法正常运行

时间:2018-08-23 19:01:54

标签: html css font-face github-pages

我在我的博客alireza.one的github上创建了一个存储库,现在我想创建一个波斯博客,但我遇到两个问题:

首先:不加载字体。我在CSS上放了一条导入线,但是没有加载。

@import url('https://alireza.one/farsi/assets/type.css');

我的波斯语(波斯)博客加载了我的主要CSS,但没有加载字体。我的存储库:alirezahy/farsi。我的网页:alireza.one/farsi

第二个:我的index.html(在Farsi回购和alirezahy.github.io中都是):

---
layout: default
title: Index
---


<div class="listing">
    {% for post in paginator.posts %}
    <div class="post other link">
      <h2></span> <a href="{{site.url}}{{post.url}}">{{ post.title }}</a></h2>
      <p class="post-date">{{ post.date | date_to_string }}</p>
    </div>
    {% endfor %}
</div>

如何将其设置为普通的index.html,以便使首页显示为普通的Weblog,而不是站点页面。

1 个答案:

答案 0 :(得分:1)

如果要添加字体,则需要在css文件中像这样添加字体:

@font-face {
font-family: "myFont";
src: url(fontofallknowledge.woff);
}

然后您可以通过这样使用字体来使用字体

body{
font-family: "myFont";
}

您将使用@import导入样式表。

要回答第二个问题,您似乎在.html文件中使用了php。你不能这样做。