|
8 | 8 | <% } %>
|
9 | 9 | </h1>
|
10 | 10 | <div class="service-meta">
|
11 |
| - <% if (page.languages && page.languages.length) { %> |
12 |
| - <ul class="horizontal-list language has-after-label"> |
13 |
| - <% page.languages.forEach(function(languages) { %> |
14 |
| - <li><%= languages %></li> |
15 |
| - <% }) %> |
16 |
| - </ul> |
17 |
| - <% } %> |
| 11 | + <div class="row"> |
| 12 | + <% if (page.languages && page.languages.length) { %> |
| 13 | + <ul class="horizontal-list language has-after-label"> |
| 14 | + <% page.languages.forEach(function(languages) { %> |
| 15 | + <li><%= languages %></li> |
| 16 | + <% }) %> |
| 17 | + </ul> |
| 18 | + <% } %> |
18 | 19 |
|
19 |
| - <% if (page.dependsOn && page.dependsOn.length) { %> |
20 |
| - <ul class="horizontal-list service has-after-label"> |
21 |
| - <% page.dependsOn.forEach(function(service) { %> |
22 |
| - <li> |
23 |
| - <a href="/<%= service %>"> |
24 |
| - <span class="icon fa fa-sitemap"></span> |
25 |
| - <%= service %> |
26 |
| - </a> |
27 |
| - </li> |
28 |
| - <% }) %> |
29 |
| - </ul> |
30 |
| - <% } %> |
| 20 | + <% if (page.uses && page.uses.length) { %> |
| 21 | + <ul class="horizontal-list service has-after-label"> |
| 22 | + <% page.uses.forEach(function(service) { %> |
| 23 | + <li> |
| 24 | + <a href="/<%= service %>"> |
| 25 | + <span class="icon fa fa-sitemap"></span> |
| 26 | + <%= service %> |
| 27 | + </a> |
| 28 | + </li> |
| 29 | + <% }) %> |
| 30 | + </ul> |
| 31 | + <% } %> |
31 | 32 |
|
32 |
| - <% if (page.contributors && page.contributors.length) { %> |
33 |
| - <ul class="horizontal-list maintainer has-after-label"> |
34 |
| - <% page.contributors.forEach(function(contributors) { %> |
35 |
| - <li> |
36 |
| - <span class="icon fa fa-user"></span> |
37 |
| - <%= contributors %> |
38 |
| - </li> |
39 |
| - <% }) %> |
40 |
| - </ul> |
41 |
| - <% } %> |
| 33 | + <% if (page.contributors && page.contributors.length) { %> |
| 34 | + <ul class="horizontal-list maintainer has-after-label"> |
| 35 | + <% page.contributors.forEach(function(contributor) { %> |
| 36 | + <li> |
| 37 | + <a href="/users/<%= contributor %>"> |
| 38 | + <span class="icon fa fa-user"></span> |
| 39 | + <%= contributor %> |
| 40 | + </a> |
| 41 | + </li> |
| 42 | + <% }) %> |
| 43 | + </ul> |
| 44 | + <% } %> |
42 | 45 |
|
43 |
| - <% if (page.responsible && page.responsible.length) { %> |
44 |
| - <ul class="horizontal-list responsible has-after-label"> |
45 |
| - <% page.responsible.forEach(function(responsible) { %> |
46 |
| - <li> |
47 |
| - <span class="icon fa fa-user"></span> |
48 |
| - <%= responsible %> |
49 |
| - </li> |
50 |
| - <% }) %> |
51 |
| - </ul> |
52 |
| - <% } %> |
| 46 | + <% if (page.responsible && page.responsible.length) { %> |
| 47 | + <ul class="horizontal-list responsible has-after-label"> |
| 48 | + <% page.responsible.forEach(function(responsible) { %> |
| 49 | + <li> |
| 50 | + <span class="icon fa fa-user"></span> |
| 51 | + <%= responsible %> |
| 52 | + </li> |
| 53 | + <% }) %> |
| 54 | + </ul> |
| 55 | + <% } %> |
| 56 | + </div> |
| 57 | + <dic class="row"> |
| 58 | + <% if (page.message) { %> |
| 59 | + <%- partial('_partial/service-messages', {message: page.message}) %> |
| 60 | + <% } %> |
| 61 | + </dic> |
53 | 62 | </div>
|
54 | 63 | </header>
|
55 | 64 | <div class="service-description">
|
|
0 commit comments