Project

General

Profile

1
<div class="uk-container" *ngIf="community" >
2
  <div *ngIf="community.status =='manager'" class="uk-card-badge private-card-badge uk-width-1-3 uk-position-top-left uk-text-small uk-text-center">
3
    Private
4
  </div>
5
  <div *ngIf="community.isSubscribed" class="uk-position-top-right uk-card-badge portal-card-badge uk-width-1-2 uk-text-small uk-text-center">
6
    <span>Subscribed</span>
7
  </div>
8
  <div class="uk-card-media-top uk-margin-top community uk-padding-small">
9
    <a (click)="confirmModalOpen()">
10
      <div class="communitiesImageBox uk-position-relative uk-align-center">
11
        <img *ngIf= "community.logoUrl != null && community.logoUrl != '' " src="{{community.logoUrl}}" alt="{{(community.title)?community.title:community.shortTitle}} logo" class="uk-position-center">
12
        <span  *ngIf= "community.logoUrl == null || community.logoUrl == '' "class="uk-icon uk-position-center">
13
          <svg  viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ratio="2.5"> <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>
14
        </span>
15
      </div>
16
    </a>
17
  </div>
18
  <div class="community uk-margin-medium-bottom">
19
    <div class="uk-text-center uk-text-small uk-text-bold">
20
      <a (click)="confirmModalOpen()">
21
        <span class="uk-text-small uk-margin-small" *ngIf="community.title" >
22
          {{community.title.slice(0,thresholdTitle)}}
23
          <span *ngIf="community.title.length > thresholdTitle">...</span>
24
        </span>
25
        <span class="uk-text-small uk-margin-small" *ngIf="!community.title && community.shortTitle" >
26
          {{community.shortTitle.slice(0,thresholdTitle)}}
27
          <span *ngIf="community.shortTitle.length > thresholdTitle">...</span>
28
        </span>
29
      </a>
30
    </div>
31
    <div class="uk-text-center uk-text-small uk-margin" *ngIf="community.description != null && showDescription">
32
      <span>{{community.description.slice(0,thresholdDescription)}}<span *ngIf="community.description.length > thresholdDescription">...</span></span>
33
    </div>
34
  </div>
35
  <div class="uk-position-bottom-right uk-padding-small uk-padding-remove-bottom">
36
    <a (click)="confirmModalOpen()" class="portal-color uk-text-uppercase uk-text-bold uk-text-small">
37
      Visit
38
    </a>
39
  </div>
40
</div>
41
<modal-alert #AlertModal (alertOutput)="goToCommunityPage($event)">
42
    <div class="uk-text-center">
43
        The profile will be presented in a new tab.<br>
44
        Are you sure that you want to proceed?
45
    </div>
46
</modal-alert>
(1-1/3)