stitcher core
1.0.6
適合 PHP 開發人員的高效能靜態網站。
composer create-project pageon/stitcher
Stitcher 與許多其他靜態網站產生器有兩個不同之處。首先:性能是關鍵。 Stitcher 的核心是為高效能網站而建立的。您可用的所有工具都將效能放在首位。其次,它不會嘗試為現有格式添加額外的語法。 Stitcher為開發人員提供了一套強大的建置工具,並且沒有太多的技巧,因此所有內容都可以放在一個檔案中。
另外要注意的是,Stitcher 中包含:
image.srcset
一樣簡單快速瀏覽一下縫合器:
# site.yml
/blog :
template : blog
variables :
posts : data/blog.yml
/blog/{id} :
template : blog.post
variables :
post : data/blog.yml
adapters :
collection :
variable : post
field : id
# data/blog.yml
hello_world :
date : 2017-03-10
highlight : false
title : Hello world
content : blog/hello.md
image : hello_world.jpg
foo_bar :
date : 2017-03-14
highlight : true
title : Foo Bar
content : blog/far_bar.md
image : foo_bar.jpg
<!-- blog.post.html -->
{% extends 'index.html' %}
{% block content %}
< article >
< h1 > {{ blog.title }} </ h1 >
< img src =" {{ blog.image.src }} "
srcset =" {{ blog.image.srcset }} "
sizes =" {{ blog.image.sizes }} " alt =" {{ blog.image.alt }} " />
{{ blog.content }}
</ article >
{% endblock %}
您可以在 Stitcher 網站上閱讀更多相關資訊。