Marius Cramer
2015-08-06 37b29231e47a0c4458dc1c15d98588f16f07e1e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
    <h2>{tmpl_var name='available_modules_txt'}</h2>
    <div style='margin: 0 auto;'>
    <ul class='modules clear'>
    <tmpl_loop name='modules'>
        <li>
            <div class='clear'>
              <div class='icon icon-{tmpl_var name='modules_name'}'></div>
              <div class='left'>
                <div class='title'>{tmpl_var name='modules_title'}</div>
              </div>
            </div>
            <a href='#' class='btn btn-default button' data-capp='{tmpl_var name="modules_name"}'>Go to {tmpl_var name='modules_title'}</a>
        </li>
    </tmpl_loop>
    </ul>
    </div>