Blogdown:如何修改索引?
Blogdown: how to modify the index?
我需要修改索引,尤其是我的雨果主题的文本。
我试图通过打开 index.html 文件来修改它并进行一些更改,但是在我 运行 blogdown::serve_site()
之后 index.html 又回到了初始文本我之前修改过
当我检查 index.Rmd 文件时,应该生成 index.html 文件,我只看到:
---
site: blogdown:::blogdown_site
---
那么如何永久编辑生成的index.html?
https://github.com/OmarGonD/omargonzalesdiaz
更新 1
感谢 Emi,现在我在顶层有了一个布局文件夹,我可以删除索引的某些部分。但是还是不知道如何修改carrusel.html:
上的文字
I can even delete the hole carrusel.
{{ partial "carousel.html" . }} # Need to modify the text inside here
完整 index.htm:
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}
<body>
<div id="all">
<header>
{{ partial "top.html" . }}
{{ partial "nav.html" . }}
</header>
{{ partial "carousel.html" . }} # Need to modify the text inside here
{{ partial "features.html" . }}
{{ partial "testimonials.html" . }}
{{ partial "see_more.html" . }}
{{ partial "recent_posts.html" . }}
{{ partial "clients.html" . }}
{{ partial "footer.html" . }}
</div>
<!-- /#all -->
{{ partial "scripts.html" . }}
</body>
</html>
carrusel.html:
我也将 carrusel.html 移动到顶层布局文件夹,打开它时我发现:
{{ if isset .Site.Params "carousel" }}
{{ if .Site.Params.carousel.enable }}
{{ if gt (len .Site.Data.carousel) 0 }}
<section>
<div class="home-carousel">
<div class="dark-mask"></div>
<div class="container">
<div class="homepage owl-carousel">
{{ range sort .Site.Data.carousel "weight" }}
<div class="item">
<div class="row">
<div class="col-sm-5 right">
<h1>{{ .title }}</h1>
{{ .description | safeHTML }}
</div>
<div class="col-sm-7">
<img class="img-responsive" src="{{ .image }}" alt="">
</div>
</div>
</div>
{{ end }}
</div>
<!-- /.project owl-slider -->
</div>
</div>
</section>
{{ end }}
{{ end }}
{{ end }}
但是不知道怎么修改里面的文字
如果您想修改carousel.html
的文字,请尝试修改
中的内容
data/carousel/multipurpose.yaml
我的提示是,如果有您想要修改的文本,请尝试在您的文件夹中的查找器中搜索该术语,看看它可能位于何处!在哪里取决于主题,但通常 well-written 主题应该很容易修改网站内容。
我需要修改索引,尤其是我的雨果主题的文本。
我试图通过打开 index.html 文件来修改它并进行一些更改,但是在我 运行 blogdown::serve_site()
之后 index.html 又回到了初始文本我之前修改过
当我检查 index.Rmd 文件时,应该生成 index.html 文件,我只看到:
---
site: blogdown:::blogdown_site
---
那么如何永久编辑生成的index.html?
https://github.com/OmarGonD/omargonzalesdiaz
更新 1
感谢 Emi,现在我在顶层有了一个布局文件夹,我可以删除索引的某些部分。但是还是不知道如何修改carrusel.html:
上的文字I can even delete the hole carrusel.
{{ partial "carousel.html" . }} # Need to modify the text inside here
完整 index.htm:
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}
<body>
<div id="all">
<header>
{{ partial "top.html" . }}
{{ partial "nav.html" . }}
</header>
{{ partial "carousel.html" . }} # Need to modify the text inside here
{{ partial "features.html" . }}
{{ partial "testimonials.html" . }}
{{ partial "see_more.html" . }}
{{ partial "recent_posts.html" . }}
{{ partial "clients.html" . }}
{{ partial "footer.html" . }}
</div>
<!-- /#all -->
{{ partial "scripts.html" . }}
</body>
</html>
carrusel.html:
我也将 carrusel.html 移动到顶层布局文件夹,打开它时我发现:
{{ if isset .Site.Params "carousel" }}
{{ if .Site.Params.carousel.enable }}
{{ if gt (len .Site.Data.carousel) 0 }}
<section>
<div class="home-carousel">
<div class="dark-mask"></div>
<div class="container">
<div class="homepage owl-carousel">
{{ range sort .Site.Data.carousel "weight" }}
<div class="item">
<div class="row">
<div class="col-sm-5 right">
<h1>{{ .title }}</h1>
{{ .description | safeHTML }}
</div>
<div class="col-sm-7">
<img class="img-responsive" src="{{ .image }}" alt="">
</div>
</div>
</div>
{{ end }}
</div>
<!-- /.project owl-slider -->
</div>
</div>
</section>
{{ end }}
{{ end }}
{{ end }}
但是不知道怎么修改里面的文字
如果您想修改carousel.html
的文字,请尝试修改
data/carousel/multipurpose.yaml
我的提示是,如果有您想要修改的文本,请尝试在您的文件夹中的查找器中搜索该术语,看看它可能位于何处!在哪里取决于主题,但通常 well-written 主题应该很容易修改网站内容。