我正在尝试为我的 11ty (Eleventy) 网站中的特定页面生成 AMP 版本的解决方案。
以以下内容为例...
|
+- /src
|
+- /recipes
|
+- super-stroodle.md
理想情况下,我希望看到以下生成...
|
+- /_site
|
+- /recipes
|
+- super-stroodle
|
+- index.html
|
+- amp.html <-- Same content but different layout
在 index.html 文件中,我会在标题中看到以下内容...
<head>
<link rel="canonical" href="https://example.com/recipes/super-stroodle">
<link rel="amphtml" href="https://example.com/recipes/super-stroodle/amp">
</head>
我与这个结果无关,但我确实需要一些方法来应用替代布局来选择源内容。
任何想法如何通过 11ty 实现这一目标?