1
|
<div *ngIf="!isLandingRoute() ; else landing" class="sidebar_main_swipe" [class.sidebar_main_active]="open">
|
2
|
<!--<div *ngIf="!isHomeRoute() ; else home" class="sidebar_main_open sidebar_main_swipe uk-height-1-1">-->
|
3
|
<top-menu-dashboard></top-menu-dashboard>
|
4
|
<side-menu></side-menu>
|
5
|
<div id="hide_controls">
|
6
|
<div id="toggle" [class.sidebar_main_open]="open" (click)="toggleOpen($event)">
|
7
|
<i class="material-icons">play_circle_filled</i>
|
8
|
<span *ngIf="open" class="uk-margin-small-left">Hide Controls</span>
|
9
|
</div>
|
10
|
</div>
|
11
|
<router-outlet></router-outlet>
|
12
|
</div>
|
13
|
|
14
|
<ng-template #landing>
|
15
|
<top-menu-landing></top-menu-landing>
|
16
|
<router-outlet></router-outlet>
|
17
|
<footer></footer>
|
18
|
</ng-template>
|
19
|
|
20
|
|
21
|
|
22
|
|
23
|
<!--<div class="uk-offcanvas-content">-->
|
24
|
<!--<top-menu></top-menu>-->
|
25
|
<!--<router-outlet></router-outlet>-->
|
26
|
<!--<footer></footer>-->
|
27
|
<!--<cookie-law position="bottom">-->
|
28
|
<!--OpenAIRE uses cookies in order to function properly.<br>-->
|
29
|
<!--Cookies are small pieces of data that websites store in your browser to allow us to give you the best browsing experience possible.-->
|
30
|
<!--By using the OpenAIRE portal you accept our use of cookies. <a href="http://ec.europa.eu/ipg/basics/legal/cookies/index_en.htm" target="_blank"> Read more <span class="uk-icon">-->
|
31
|
<!--<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" icon="chevron-right" ratio="1"><polyline fill="none" stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"></polyline></svg>-->
|
32
|
<!--</span></a>-->
|
33
|
<!--</cookie-law>-->
|
34
|
<!--</div>-->
|
35
|
|
36
|
|
37
|
<!-- Matomo -->
|
38
|
<!--<script type="text/javascript">
|
39
|
var _paq = _paq || [];
|
40
|
_paq.push(['trackPageView']);
|
41
|
_paq.push(['enableLinkTracking']);
|
42
|
(function() {
|
43
|
var u="//https://analytics.openaire.eu/";
|
44
|
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
45
|
_paq.push(['setSiteId', piwikUrl]);
|
46
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
47
|
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
48
|
})();
|
49
|
</script>-->
|
50
|
<!-- End Matomo Code -->
|
51
|
|
52
|
|
53
|
<!--<!– Terms of Use (modal) –>-->
|
54
|
<!--<confirmation-dialog #subscribeToTermsModal [title]=modalTitle [isModalShown]=isModalShown-->
|
55
|
<!-- [confirmActionButton]=modalButton (emitObject)="updateTerms()">-->
|
56
|
<!-- <form class="" [formGroup]="agreementForm">-->
|
57
|
<!-- <div formArrayName="terms">-->
|
58
|
<!-- <table class="table">-->
|
59
|
<!-- <tr class="uk-text-nowrap">Do you agree with the <a href="https://zenodo.org/record/1446384#.XiGIAdmxU5n" target="_blank">terms of use</a>?</tr>-->
|
60
|
<!-- <tbody>-->
|
61
|
<!-- <tr class="el-item" *ngFor="let term of terms.controls; let i=index">-->
|
62
|
<!--<!– {{term.get('accept').value}}–>-->
|
63
|
<!-- <br> {{term.get('name').value}} <br>-->
|
64
|
<!-- <div [formGroupName]="i">-->
|
65
|
<!-- <label>-->
|
66
|
<!-- <input id="i" type="checkbox" formControlName="accept"> Yes, I agree to the terms of use.-->
|
67
|
<!-- </label>-->
|
68
|
<!-- </div>-->
|
69
|
<!-- </tr>-->
|
70
|
<!-- </tbody>-->
|
71
|
<!-- </table>-->
|
72
|
<!-- </div>-->
|
73
|
<!-- </form>-->
|
74
|
<!-- <!– <pre>{{this.agreementForm.value | json}}</pre>–>-->
|
75
|
<!--</confirmation-dialog>-->
|