Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7b7400882beee0451ad883b00b89262431c57f15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/*******************************************************************************
 * Copyright (c) 2015 Eclipse Foundation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Christopher Guindon (Eclipse Foundation) - initial API and implementation
 *******************************************************************************/
 ?>
<div class="row">
  <div class="col-xs-24">
    <h1><?php print $pageTitle; ?></h1>
  </div>
</div>
<div class="row">
<div class="col-md-14 col-lg-16">
  <div class="row tabs-sidebar">
    <div class="col-sm-6">
      <nav class="nav-sidebar">
        <ul class="nav tabs">
          <?php foreach($members as $key => $value):?>
            <?php if (!empty($value['members'])):?>
              <li class="<?php print $value['list_class'];?>">
                <a href="#tab-<?php print $key;?>" data-toggle="tab">
                  <img style="width:100%" class="img-responsive desaturate" src="<?php print $value['img']?>"/>
                </a>
              </li>
            <?php endif; ?>
          <?php endforeach;?>
        </ul>
      </nav>
      <p class="text-center"><a id="showalltabs" href="#allmembers" class="btn btn-warning">All members</a></p>
    </div>
    <div class="col-sm-18">
      <!-- tab content -->
      <div class="tab-content background-bg-body no-border">
        <?php foreach($members as $key => $value):?>
          <?php if (!empty($value['members'])):?>
            <div class="<?php print $value['content_class'];?>" id="tab-<?php print $key;?>">
              <h3 class="block-heading"><?php print $value['title'];?></h3>
              <?php foreach ($value['members'] as $mkey => $mvalue):?>
                <div class="row clearfix">
                  <div class="col-md-6">
                  <?php print $mvalue['small_logo_link']?>
                  </div>
                  <div class="col-md-18">
                    <h4 class="h5 margin-top-0 fw-600">
                      <?php print $mvalue['title_link']?>
                    </h4>
                    <p><?php print $mvalue['body']?></p>
                  </div>
                </div>
              <?php endforeach;?>
            </div>
          <?php endif; ?>
        <?php endforeach;?>
      </div>
      <h2 class="h4 text-center">Learn about our many <a href="/corporate_sponsors/">corporate sponsors.</a></h2>
    </div>
  </div>
</div>
<?php include_once 'en_sidebar.php';?>
</div>

Back to the top