Jekyll电子邮件:我可以在一个jekyll项目中拥有多个电子邮件活动

时间:2015-11-27 18:56:11

标签: jekyll

是否可以在Jekyll项目的browserify文件夹中创建文件夹,以便为一家公司分隔多个电子邮件广告系列?一切都需要更有条理,每个公司在_includes内都有自己独立的文件夹,而不必为每个广告系列创建一个Jekyll项目。将它们全部放在一个大的Jekyll项目中是我正在寻找的。

Jekyll的新手。 noob问题。遗憾。

1 个答案:

答案 0 :(得分:0)

我正在Jekyll运行多利基博客,这是我在网站上所做的。

我为不同类型的页面创建了多个布局,例如,我在这里创建了blogger.html布局(可能您使用的是默认帖子或页面布局)

---
layout: null
---
<html>

  {% include head.html %}

  <body>
    {% include header/blogger.html %}
    <section class="container">
        <div class ="content row">

            <section class="main col col-lg-7">
                 <div class="post">
                  <header class="post-header">
                    <h1 class="post-title">{{ page.title }}</h1>
                  </header>
                  <article class="post-content">
                    {{ content }}
                  </article>
                </div>
            </section>

        </div>
    </section>

    {% include footer.html %}

  </body>

</html>

正如您所看到的(在<body>标签之后),我已将博客文件添加到_include文件夹中,所以是的,您可以将任何文件/文件夹添加到_include文件夹中,只需确保相对路径是对的。