Skip to content

How to accomplish "fragments"? #880

Answered by cossssmin
bravecrayon asked this question in Q&A
Discussion options

You must be logged in to vote

Had to do it once too, here's what I did.

Layout:

<if condition="page.env === 'production'">
  <style>{{{ page.css }}}</style>
  <body>
    <block name="template"></block>
  </body>
</if>
<else>
  (normal layout with doctype etc., for developing locally and watching changes in the browser)
</else>

A template:

<extends src="src/layouts/main.html">
  <block name="template">
    ....
  </block>
</extends>

Then in config.production.js remove the stuff you don't need. In my case I just removed the <body> tag but you could do the same for the <style> tag. The problem with removing <style> is you might have media queries or pseudo CSS that would be lost since it's not inlined.

// config.producti…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@cossssmin
Comment options

@bravecrayon
Comment options

@cossssmin
Comment options

@bravecrayon
Comment options

Answer selected by bravecrayon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants