2017-12-19 13:53:46 +01:00
|
|
|
<div id="tm-main" class=" uk-section uk-margin-small-top tm-middle" >
|
|
|
|
<div uk-grid uk-grid>
|
|
|
|
<div class="tm-main uk-width-1-1@s uk-width-1-1@m uk-width-1-1@l uk-row-first ">
|
|
|
|
|
|
|
|
<div class="uk-container uk-margin-top dataset">
|
|
|
|
|
|
|
|
<div *ngIf="warningMessage.length > 0" class="uk-alert uk-alert-warning uk-margin-large-top" role="alert">{{warningMessage}}</div>
|
|
|
|
<div *ngIf="errorMessage.length > 0" class="uk-alert uk-alert-danger uk-margin-large-top" role="alert">{{errorMessage}}</div>
|
2018-10-03 16:12:42 +02:00
|
|
|
<div [style.display]="showLoading ? 'inline' : 'none'" class="uk-animation-fade uk-margin-large-top uk-width-1-1" role="alert"><span class="loading-gif uk-align-center" ></span></div>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
<div *ngIf="datasetInfo != null" uk-grid class="uk-grid-large">
|
2018-05-09 15:54:30 +02:00
|
|
|
<div class="uk-width-expand@m uk-width-1-1@s">
|
2018-07-06 14:13:37 +02:00
|
|
|
<schema2jsonld *ngIf="datasetInfo.record" [data]=datasetInfo.record [URL]="properties.baseLink+'/search/dataset?datasetId='+datasetId"></schema2jsonld>
|
2018-06-28 16:52:45 +02:00
|
|
|
<showTitle [titleName]="datasetInfo.title"></showTitle>
|
2018-10-17 17:19:22 +02:00
|
|
|
<p class="uk-text-large" *ngIf="datasetInfo.subtitle">
|
|
|
|
<span [innerHTML]="datasetInfo.subtitle"></span>
|
|
|
|
</p>
|
2018-06-28 16:52:45 +02:00
|
|
|
<span *ngIf="datasetInfo.types && datasetInfo.types.length > 0"class="uk-label custom-label label-dataset " title="Type">{{datasetInfo.types.join(", ")}}</span>
|
2018-02-05 14:14:59 +01:00
|
|
|
<span *ngIf="datasetInfo.languages && datasetInfo.languages.length > 0" class="uk-label custom-label label-language " title="Language">{{datasetInfo.languages.join(", ")}}</span>
|
2018-06-28 16:52:45 +02:00
|
|
|
<span *ngIf="datasetInfo.countries && datasetInfo.countries.length > 0" class="uk-label custom-label label-country " title="Country">{{datasetInfo.countries.join(", ")}}</span>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2018-06-28 16:52:45 +02:00
|
|
|
<!-- <span *ngIf="datasetInfo.title && datasetInfo.title.accessMode" [class]="'uk-label custom-label label-'+ datasetInfo.title.accessMode " title="Access Mode">{{datasetInfo.title.accessMode}}</span> -->
|
|
|
|
<span *ngIf="datasetInfo.accessMode" [class]="'uk-label custom-label label-'+ datasetInfo.accessMode " title="Access Mode">{{datasetInfo.accessMode}}</span>
|
2017-12-19 13:53:46 +01:00
|
|
|
<span *ngIf="datasetInfo.underCurationMessage" class="uk-label custom-label label-underCuration " >
|
|
|
|
<span uk-tooltip="pos:right; delay:10"
|
|
|
|
title="{{buildCurationTooltip()}}">
|
|
|
|
<i>Record in preview</i>
|
|
|
|
<i class="uk-icon-info-circle"></i>
|
|
|
|
</span></span>
|
|
|
|
<!--div *ngIf="datasetInfo.underCurationMessage">
|
|
|
|
<span uk-tooltip="pos:right; delay:10"
|
|
|
|
title="{{buildCurationTooltip()}}">
|
|
|
|
<i>Record in preview</i>
|
|
|
|
<i class="uk-icon-info-circle"></i>
|
|
|
|
</span>
|
|
|
|
</div-->
|
|
|
|
|
|
|
|
<div class= " uk-margin-top">
|
|
|
|
<showAuthors [authors]="datasetInfo.authors" searchPage="datasets"></showAuthors>
|
|
|
|
<span *ngIf="datasetInfo.date != ''">({{datasetInfo.date}})</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul class="uk-list">
|
|
|
|
<li *ngIf="datasetInfo.publisher"><span class="uk-text-bold">Publisher:</span> {{datasetInfo.publisher}}</li>
|
|
|
|
|
|
|
|
<li *ngIf="datasetInfo.embargoEndDate"><span class="uk-text-bold">Embargo end date:</span> {{datasetInfo.embargoEndDate}}</li>
|
|
|
|
<li *ngIf="datasetInfo.identifiers && datasetInfo.identifiers.size > 0">
|
|
|
|
<showIdentifiers [identifiers]="datasetInfo.identifiers"></showIdentifiers>
|
|
|
|
</li>
|
|
|
|
<li *ngIf="datasetInfo.subjects ||datasetInfo.otherSubjects || datasetInfo.classifiedSubjects">
|
|
|
|
<showSubjects [subjects]="datasetInfo.subjects"
|
|
|
|
[otherSubjects]="datasetInfo.otherSubjects"
|
|
|
|
[classifiedSubjects]="datasetInfo.classifiedSubjects">
|
|
|
|
</showSubjects>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2018-10-01 17:02:14 +02:00
|
|
|
<hr *ngIf="datasetInfo.description" >
|
2017-12-19 13:53:46 +01:00
|
|
|
<div *ngIf="datasetInfo.description" class="uk-margin-bottom uk-text-justify descriptionText">
|
2019-03-21 11:49:50 +01:00
|
|
|
<span>{{datasetInfo.description.substring(0, showNumDescription)}}</span
|
|
|
|
><span *ngIf="showNumDescription > thresholdDescription">
|
|
|
|
<a (click)="showNumDescription = thresholdDescription; scroll()">
|
|
|
|
View less
|
|
|
|
</a>
|
|
|
|
</span
|
|
|
|
><span *ngIf="showNumDescription == thresholdDescription && datasetInfo.description.length > thresholdDescription">...</span
|
|
|
|
><span *ngIf="showNumDescription == thresholdDescription && datasetInfo.description.length > thresholdDescription" class="uk-text-right">
|
|
|
|
<a (click)="showNumDescription = datasetInfo.description.length;">
|
|
|
|
View more
|
|
|
|
</a>
|
|
|
|
</span>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- <div class="uk-clearfix"><div class="uk-float-right uk-margin-top">
|
|
|
|
<div class="uk-inline">
|
|
|
|
<button class="uk-button uk-button-small uk-button-action" type="button">
|
|
|
|
<span class="uk-icon" ><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="link" ratio="1"><path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975"></path></svg></span>
|
|
|
|
Link this research data to
|
|
|
|
<span class="uk-icon"><svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="triangle-down" ratio="1"><polygon points="5 7 15 7 10 12"></polygon></svg></span>
|
|
|
|
</button>
|
|
|
|
<div uk-dropdown="mode: click; boundary: ! .uk-button-group; boundary-align: true;"
|
|
|
|
class="uk-dropdown uk-dropdown-boundary uk-dropdown-bottom-left" style="top: 40px; left: -236.5px;">
|
|
|
|
<ul class="uk-nav uk-dropdown-nav uk-padding-small" >
|
|
|
|
<li><a class="uk-width-1-1" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','project'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
|
|
|
Projects</a></li>
|
|
|
|
<li><a class="uk-width-1-1"[queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','context'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
|
|
|
Communities</a></li>
|
|
|
|
<li><a class="uk-width-1-1" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
|
|
|
Other research results</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div></div> -->
|
|
|
|
|
2018-06-08 13:21:42 +02:00
|
|
|
<ul class="custom-accordion" uk-accordion>
|
2019-03-21 10:36:39 +01:00
|
|
|
<li *ngIf="datasetInfo.references" (click)="activeTab='References'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
References ({{datasetInfo.references.length | number}})
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<div>
|
|
|
|
<div *ngIf="datasetInfo.references.length > pageSize" class="uk-margin-bottom">
|
|
|
|
<span class="uk-h6">{{datasetInfo.references.length | number}} references, page {{referencesPage | number}} of {{totalPages(datasetInfo.references.length) | number}}</span>
|
|
|
|
<paging-no-load class="uk-float-right" [currentPage]="referencesPage" [totalResults]="datasetInfo.references.length" [size]="pageSize" (pageChange)="updateReferencesPage($event)"></paging-no-load>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div *ngFor="let item of datasetInfo.references.slice((referencesPage-1)*pageSize, referencesPage*pageSize)">
|
|
|
|
<p *ngIf=" item && item['url']"
|
|
|
|
class="custom-external custom-icon">
|
|
|
|
<a href="{{item['url']}}" target="_blank">
|
|
|
|
{{item['name']}}
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
<p *ngIf="!item['url']" class="pseudo-external custom-icon">
|
|
|
|
{{item['name']}}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2018-06-08 13:21:42 +02:00
|
|
|
<li *ngIf="datasetInfo.relatedResearchResults" (click)="activeTab='Related Research Results'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Related Research Results
|
|
|
|
<!-- <span *ngIf="!datasetInfo.relatedResearchResults" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="datasetInfo.relatedResearchResults" class="uk-badge uk-badge-notification">
|
|
|
|
{{relatedResearchResultsNum | number}}
|
|
|
|
</span> -->
|
2018-10-01 17:02:14 +02:00
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{relatedResearchResultsNum | number}})
|
|
|
|
<!-- </span> -->
|
2018-06-08 13:21:42 +02:00
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<!-- <div *ngIf="!datasetInfo.relatedResearchResults" class = "uk-alert uk-alert-primary">
|
|
|
|
No related research results available
|
|
|
|
</div>
|
|
|
|
<div *ngIf="datasetInfo.relatedResearchResults"> -->
|
|
|
|
<div>
|
|
|
|
<div *ngFor="let provenanceaction of getKeys(datasetInfo.relatedResearchResults)">
|
2018-10-01 17:02:14 +02:00
|
|
|
<div class="uk-text-large">{{provenanceaction}}</div>
|
2018-06-08 13:21:42 +02:00
|
|
|
|
|
|
|
<tabTable [percentageName]="trust" [info]="datasetInfo.relatedResearchResults.get(provenanceaction)" [(properties)]=properties></tabTable>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li *ngIf="datasetInfo.similarResearchResults" (click)="activeTab='Similar Research Results'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Similar Research Results
|
|
|
|
<!-- <span *ngIf="!datasetInfo.similarResearchResults" class="uk-badge uk-badge-notification">0</span>
|
|
|
|
<span *ngIf="datasetInfo.similarResearchResults" class="uk-badge uk-badge-notification">
|
|
|
|
{{datasetInfo.similarResearchResults.length | number}}
|
|
|
|
</span> -->
|
2018-10-01 17:02:14 +02:00
|
|
|
<!-- <span class="uk-badge uk-badge-notification"> -->
|
|
|
|
({{datasetInfo.similarResearchResults.length | number}})
|
|
|
|
<!-- </span> -->
|
2018-06-08 13:21:42 +02:00
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<!-- <div *ngIf="!datasetInfo.similarResearchResults" class = "uk-alert uk-alert-primary" >
|
|
|
|
No similar research results available
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div *ngIf="datasetInfo.similarResearchResults"> -->
|
|
|
|
<div>
|
|
|
|
<tabTable [percentageName]="similarity" [info]="datasetInfo.similarResearchResults" [(properties)]=properties></tabTable>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li (click)="metricsClicked=true; activeTab='Metrics'">
|
|
|
|
<a class="uk-accordion-title" href="#">
|
|
|
|
Metrics
|
|
|
|
</a>
|
|
|
|
<div class="uk-accordion-content">
|
|
|
|
<metrics [pageViews]="pageViews"
|
|
|
|
[id]="datasetId" [entityType]="'results'" [entity]="'Research Data'"
|
|
|
|
(metricsResults)="metricsResults($event)" [(properties)] = properties>
|
|
|
|
</metrics>
|
|
|
|
<i-frame *ngIf="metricsClicked && totalViews > 0"
|
|
|
|
[url]=viewsFrameUrl width="100%" height="250">
|
|
|
|
</i-frame>
|
|
|
|
<i-frame *ngIf="metricsClicked && totalDownloads > 0"
|
|
|
|
[url]=downloadsFrameUrl width="100%" height="250">
|
|
|
|
</i-frame>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
|
2018-05-09 15:54:30 +02:00
|
|
|
<div class="uk-width-large@m uk-width-1-1@s">
|
2018-07-19 12:47:21 +02:00
|
|
|
<div class=" uk-padding-small">
|
2017-12-19 13:53:46 +01:00
|
|
|
<div >
|
2018-07-19 12:47:21 +02:00
|
|
|
<div class="sideInfoTitle uk-margin-small-bottom">Share - Bookmark</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
<addThis></addThis>
|
|
|
|
</div>
|
|
|
|
<altmetrics *ngIf="datasetInfo.identifiers && datasetInfo.identifiers.get('doi')"
|
|
|
|
id="{{datasetInfo.identifiers.get('doi')[0]}}" type="doi">
|
|
|
|
</altmetrics >
|
2018-10-01 17:02:14 +02:00
|
|
|
<ul class="uk-list uk-margin-remove-bottom ">
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
<li *ngIf="datasetInfo.hostedBy_collectedFrom && datasetInfo.hostedBy_collectedFrom.length > 0">
|
|
|
|
<availableOn [availableOn]="datasetInfo.hostedBy_collectedFrom"></availableOn>
|
|
|
|
</li>
|
|
|
|
<li *ngIf="datasetInfo.fundedByProjects != undefined && datasetInfo.fundedByProjects.length > 0">
|
|
|
|
<fundedBy [fundedByProjects]="datasetInfo.fundedByProjects"></fundedBy>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li *ngIf="datasetInfo.contexts && datasetInfo.contexts.length >0 ">
|
|
|
|
<dl class="uk-description-list-line" >
|
2018-07-19 12:47:21 +02:00
|
|
|
<dt class="sideInfoTitle">Related to </dt>
|
2017-12-19 13:53:46 +01:00
|
|
|
<dd class="line" *ngFor="let item of datasetInfo.contexts">
|
|
|
|
<span *ngIf = "!item['inline']" >
|
|
|
|
<span>{{item['labelContext']}}</span>
|
|
|
|
<span *ngIf="item['labelCategory']">-> {{item['labelCategory']}}</span>
|
|
|
|
<span *ngIf="item['labelConcept']">: {{item['labelConcept']}}</span>
|
|
|
|
</span>
|
|
|
|
<mark *ngIf = "item['inline']" >
|
|
|
|
<span>{{item['labelContext']}}</span>
|
|
|
|
<span *ngIf="item['labelCategory']">-> {{item['labelCategory']}}</span>
|
|
|
|
<span *ngIf="item['labelConcept']">: {{item['labelConcept']}}</span>
|
|
|
|
</mark>
|
|
|
|
</dd>
|
|
|
|
|
|
|
|
</dl>
|
|
|
|
|
|
|
|
</li>
|
|
|
|
|
2018-07-19 12:47:21 +02:00
|
|
|
<!--li>
|
2018-06-08 13:21:42 +02:00
|
|
|
<metrics [pageViews]="pageViews" shortView=true
|
|
|
|
[id]="datasetId" [entityType]="'results'" [entity]="'Research Data'"
|
|
|
|
(metricsResults)="metricsResults($event)" [(properties)] = properties>
|
|
|
|
</metrics>
|
2018-07-19 12:47:21 +02:00
|
|
|
</li-->
|
2018-06-08 13:21:42 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
<li>
|
|
|
|
|
2018-10-01 17:02:14 +02:00
|
|
|
<div class="sideInfoTitle cite-this-button uk-width-1-1" type="button">
|
|
|
|
Cite this research data
|
|
|
|
</div>
|
|
|
|
<div class=" ">
|
|
|
|
<citeThis [result]="datasetInfo" [id]="datasetId" type="research data"></citeThis>
|
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2018-10-01 17:02:14 +02:00
|
|
|
</li>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
</ul>
|
2018-10-04 20:33:16 +02:00
|
|
|
<button class=" uk-button portal-button uk-width-1-1 ">
|
2018-10-01 17:02:14 +02:00
|
|
|
<span class="uk-icon">
|
|
|
|
<svg icon="link" ratio="1" xmlns="http://www.w3.org/2000/svg" width="25" viewBox="0 0 20 20" height="25"><path d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375" fill="none" stroke="#000" stroke-width="1.1"></path><path d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375" fill="none" stroke="#000" stroke-width="1.1"></path><path d="M7.925,11.875 L11.925,7.975" fill="none" stroke="#000" stroke-width="1.1"></path></svg>
|
|
|
|
</span> Link this dataset to...
|
|
|
|
</button>
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2018-10-01 17:02:14 +02:00
|
|
|
<div uk-dropdown="pos: bottom-left; mode:click" style="background: transparent !important;box-shadow: none; max-width: 70px !important; min-width: 70px !important;">
|
|
|
|
<ul class="uk-iconnav uk-iconnav-vertical">
|
2018-10-03 16:12:42 +02:00
|
|
|
<li uk-tooltip="pos:right;" title="<div class='tooltip-custom-font-size '>Projects</div>">
|
2018-10-01 17:02:14 +02:00
|
|
|
<a class=" uk-icon-button portal-button shadowBox" style="padding: 6px;" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','project'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
|
|
|
<span class="uk-icon" >
|
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="album" ratio="1"><rect x="5" y="2" width="10" height="1"></rect><rect x="3" y="4" width="14" height="1"></rect><rect fill="none" stroke="#000" x="1.5" y="6.5" width="17" height="11"></rect></svg></span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2018-10-03 16:12:42 +02:00
|
|
|
<li uk-tooltip="pos:right;" title="<div class='tooltip-custom-font-size '>Communities</div>">
|
2018-10-01 17:02:14 +02:00
|
|
|
<a class=" uk-icon-button portal-button shadowBox" style="padding: 6px;" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','context'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
|
|
|
<span class="uk-icon" >
|
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="users" ratio="1"><circle fill="none" stroke="#000" stroke-width="1.1" cx="7.7" cy="8.6" r="3.5"></circle><path fill="none" stroke="#000" stroke-width="1.1" d="M1,18.1 C1.7,14.6 4.4,12.1 7.6,12.1 C10.9,12.1 13.7,14.8 14.3,18.3"></path><path fill="none" stroke="#000" stroke-width="1.1" d="M11.4,4 C12.8,2.4 15.4,2.8 16.3,4.7 C17.2,6.6 15.7,8.9 13.6,8.9 C16.5,8.9 18.8,11.3 19.2,14.1"></path></svg></span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2018-10-03 16:12:42 +02:00
|
|
|
<li uk-tooltip="pos:right;" title="<div class='tooltip-custom-font-size uk-margin-small'>Other research results</div>">
|
2018-10-01 17:02:14 +02:00
|
|
|
<a class=" uk-icon-button portal-button shadowBox" style="padding: 6px;" [queryParams]="routerHelper.createQueryParams(['id','type','linkTo'],[datasetId,'dataset','result'])" routerLinkActive="router-link-active" routerLink="/participate/direct-claim" >
|
|
|
|
<span class="uk-icon" >
|
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="copy" ratio="1"><rect fill="none" stroke="#000" x="3.5" y="2.5" width="12" height="16"></rect><polyline fill="none" stroke="#000" points="5 0.5 17.5 0.5 17.5 17"></polyline></svg></span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
2018-05-09 15:54:30 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-05-11 16:38:05 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|