Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
evsmash/articles / views / _widgets / _section.haml
Size: Mime:
.cl{:class => $settings->grid}
	%section{:class => 'section-article section-article-'.$row->id}

		{? photo ?}
			.photo != Dec::a($row->link, Thumb::show($row->photo, $settings->photo, ['alt' => $row->name]), false)
		
		{? name ?}
			%h2 != Dec::a($row->link, $row->name)

		{? date ?}
			.date = Date::show($row->created_at, cfg('settings-date'))
		
		{? type ?}
			.type = H::assign($row->type, 'name')

		{? categories ?}
			.categories
				- foreach($row->categories as $category):
					!= Dec::a(Route::map('evsmash/articles/articles/category').'/'.$category->id.'/'.Str::slug($category->name), $category->name)
				- endforeach

		{? sneak ?}
			.sneak != Str::words($row->sneak, $settings->sneak, '...')

		{? more ?}
			.more != Dec::a($row->link, t('More'), false)

		.clearfix