trys / sergey

A tiny lil' static site generator
https://sergey.trysmudford.com
MIT License
302 stars 39 forks source link

Named slots not working #60

Closed JoachimM7 closed 3 years ago

JoachimM7 commented 3 years ago

Unfortunately named slots are not working.

I have:

index.html

<html>
<sergey-import src="head">
    <sergey-template name="title">My title</title></sergey-template>
</sergey-import>

head.html

<head>
    <meta charset="utf-8">
    <meta content="width=device-width, initial-scale=1.0" name="viewport">
    <title><sergey-slot name="title" /></title>
</head>

The result in the published index.html is:

<html>
<head>
    <meta charset="utf-8">
    <meta content="width=device-width, initial-scale=1.0" name="viewport">
    <title><sergey-slot name="title" /></title>
</head>

Any ideas how to fix that?

UPDATE

Sorry, after upgrading NodeJS and reinstalling Sergey, it's working again