|
4 | 4 | <div class="row"> |
5 | 5 | {% if content.year %} |
6 | 6 | <div class="col-xs-2 cl-sm-2 col-md-2 text-center" style="width: 75px;"> |
7 | | - <span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px;"> |
8 | | - {{ content.year }} |
9 | | - </span> |
| 7 | + <table class="table-cv"> |
| 8 | + <tbody> |
| 9 | + <tr> |
| 10 | + <td> |
| 11 | + <span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px;">{{ content.year }}</span> |
| 12 | + </td> |
| 13 | + </tr> |
| 14 | + {% if content.location %} |
| 15 | + <tr> |
| 16 | + <td> |
| 17 | + <p class="location"><i class="fas fa-map-marker-alt iconlocation"></i> {{ content.location }}</p> |
| 18 | + </td> |
| 19 | + </tr> |
| 20 | + {% endif %} |
| 21 | + </tbody> |
| 22 | + </table> |
| 23 | + |
10 | 24 | </div> |
11 | 25 | {% endif %} |
12 | 26 | <div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0"> |
13 | 27 | {% if content.title %} |
14 | 28 | <h6 class="title font-weight-bold ml-1 ml-md-4">{{content.title}}</h6> |
15 | 29 | {% endif %} |
16 | | - {% if content.institution %} |
17 | | - <h6 class="ml-1 ml-md-4" style="font-size: 0.95rem;">{{content.institution}}</h6> |
| 30 | + {% if content.department or content.institution %} |
| 31 | + <table class="table-cv ml-1 ml-md-4 institution"> |
| 32 | + <tbody> |
| 33 | + {% if content.institution %} |
| 34 | + <tr> |
| 35 | + <td style="vertical-align: top; text-align: center;" class="institution"><i class="fas fa-university iconinstitution"></i></td> |
| 36 | + <td class="institution">{{content.institution}}</td> |
| 37 | + </tr> |
| 38 | + {% endif %} |
| 39 | + {% if content.department %} |
| 40 | + <tr> |
| 41 | + <td style="vertical-align: top; text-align: center;" class="department"><i class="far fa-dot-circle icondepartment"></i></td> |
| 42 | + <td class="department">{{content.department}}</td> |
| 43 | + </tr> |
| 44 | + {% endif %} |
| 45 | + </tbody> |
| 46 | + </table> |
| 47 | + {% endif %} |
| 48 | + {% if content.maindescription %} |
| 49 | + <div class="ml-1 ml-md-4 ">{{ content.maindescription }}</div> |
18 | 50 | {% endif %} |
19 | 51 | {% if content.description %} |
20 | 52 | <ul class="items"> |
@@ -52,6 +84,21 @@ <h6 class="ml-1 ml-md-4" style="font-size: 0.95rem;">{{content.institution}}</h6 |
52 | 84 | {% endfor %} |
53 | 85 | </ul> |
54 | 86 | {% endif %} |
| 87 | + {% if content.linkitems %} |
| 88 | + <div class="container-links ml-1 ml-md-4"> |
| 89 | + {% for item in content.linkitems %} |
| 90 | + {% if item.link %} |
| 91 | + <div class="container-link-button"> |
| 92 | + {% if item.linkname %} |
| 93 | + <a href="{{ item.link }}" target="_blank" class="btncv z-depth-0">{{ item.linkname}}</a> |
| 94 | + {% else %} |
| 95 | + <a href="{{ item.link }}" target="_blank" class="btncv z-depth-0">doc</a> |
| 96 | + {% endif %} |
| 97 | + </div> |
| 98 | + {% endif %} |
| 99 | + {% endfor %} |
| 100 | + </div> |
| 101 | + {% endif %} |
55 | 102 | </div> |
56 | 103 | </div> |
57 | 104 | </li> |
|
0 commit comments