aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/common_friends.tpl
blob: b99075210edbc4dab3f690bec250b7f950ab29f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="generic-content-wrapper">
	<div class="section-title-wrapper">
		<h2>{{$title}}</h2>
	</div>
	<div class="section-content-wrapper clearfix">
		{{foreach $items as $item}}
		<div class="float-left mr-4">
			<a href="{{$item.url}}">
				<img class="contact-block-img" src="{{$item.photo}}" alt="{{$item.name}}" title="{{$item.name}} [{{$item.url}}]" />
			</a>
			<div>
				{{$item.name}}
			</div>
		</div>
		{{/foreach}}
	</div>
</div>