annotate node--fm_search_page.tpl.php @ 2:3d467de87492 default tip

remove some first-child rules for headers in lists.
author root@drupal-mpiwg.rz-berlin.mpg.de
date Fri, 20 Jun 2014 12:12:17 +0200
parents 65b7937bab7b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
65b7937bab7b intertial
dwinter
parents:
diff changeset
1 <?php
65b7937bab7b intertial
dwinter
parents:
diff changeset
2 ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
3
65b7937bab7b intertial
dwinter
parents:
diff changeset
4 <h2>Search page</h2>
65b7937bab7b intertial
dwinter
parents:
diff changeset
5
65b7937bab7b intertial
dwinter
parents:
diff changeset
6 <form method="get" action="../dbconnect/search">
65b7937bab7b intertial
dwinter
parents:
diff changeset
7
65b7937bab7b intertial
dwinter
parents:
diff changeset
8 <div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
65b7937bab7b intertial
dwinter
parents:
diff changeset
9 <?php print $user_picture; ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
10 <?php print render($title_prefix); ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
11 <?php if (!$page): ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
12 <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
65b7937bab7b intertial
dwinter
parents:
diff changeset
13 <?php endif; ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
14 <?php print render($title_suffix); ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
15 <?php if ($display_submitted): ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
16 <span class="submitted"><?php print $submitted ?></span>
65b7937bab7b intertial
dwinter
parents:
diff changeset
17 <?php endif; ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
18 <div class="content clearfix"<?php print $content_attributes; ?>>
65b7937bab7b intertial
dwinter
parents:
diff changeset
19 <?php
65b7937bab7b intertial
dwinter
parents:
diff changeset
20 // We hide the comments and links now so that we can render them later.
65b7937bab7b intertial
dwinter
parents:
diff changeset
21 hide($content['comments']);
65b7937bab7b intertial
dwinter
parents:
diff changeset
22 hide($content['links']);
65b7937bab7b intertial
dwinter
parents:
diff changeset
23 print render($content);
65b7937bab7b intertial
dwinter
parents:
diff changeset
24 ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
25 </div>
65b7937bab7b intertial
dwinter
parents:
diff changeset
26
65b7937bab7b intertial
dwinter
parents:
diff changeset
27 <div class="clearfix">
65b7937bab7b intertial
dwinter
parents:
diff changeset
28 <?php if (!empty($content['links'])): ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
29 <div class="links"><?php print render($content['links']); ?></div>
65b7937bab7b intertial
dwinter
parents:
diff changeset
30 <?php endif; ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
31
65b7937bab7b intertial
dwinter
parents:
diff changeset
32 <?php print render($content['comments']); ?>
65b7937bab7b intertial
dwinter
parents:
diff changeset
33 </div>
65b7937bab7b intertial
dwinter
parents:
diff changeset
34
65b7937bab7b intertial
dwinter
parents:
diff changeset
35 </div>
65b7937bab7b intertial
dwinter
parents:
diff changeset
36
65b7937bab7b intertial
dwinter
parents:
diff changeset
37
65b7937bab7b intertial
dwinter
parents:
diff changeset
38 <input type="submit"/>
65b7937bab7b intertial
dwinter
parents:
diff changeset
39 </form>