0
我正在爲我的博客創建一個滑塊,並且我想向其添加特色項目的集合,滑塊需要使用類selected
的第一個子級負載。使用Middleman向循環中的第一個孩子添加一個班級
我怎麼可以這樣做if first child do this
else do that
這是我到目前爲止有:
<ul class="cd-hero-slider">
<% blog.articles.select {|a| a.data[:featured] }.each do |article| %>
<li class="selected" style="background-image: url('https://images.unsplash.com/photo-1447014421976-7fec21d26d86?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=c82e04e12daab5427f481731')">
<div class="cd-full-width">
<h2><%= link_to article.title, article %></h2>
<p><%= article.summary(250) %></p>
<%= link_to 'Read More', article, :class => 'cd-btn' %>
</div>
</li>
<% end %>
</ul>