将.pug转换为.ejs

时间:2018-02-25 10:08:22

标签: pug ejs

任何人都可以帮我将此.pug代码转换为.ejs代码吗? 谢谢大家的帮助

html  
  head
    title= title
  body
  h1=title
    ul
    each image in images
        li 
            img(src=image width=300)

1 个答案:

答案 0 :(得分:0)

你走了。用.ejs写的非常类似于基本的html,javascript片段出现在这里和那里。

<head>
    <title></title>
</head>
<h1><%= Title %></h1>
<ul>
  <% for(let image of images) {%>
     <li><img width="300" src="<%= image %>"/></li>
  <% } %>
</ul>