Welcome to mirror list, hosted at ThFree Co, Russian Federation.

content-block.directive.html « content-block « angularjs « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 547ea79878303f251946cf1b7fd43b53ad652190 (plain)
1
2
3
4
5
6
7
8
9
10
<div class="card">
    <div class="card-content">
        <h2 ng-if="contentTitle && !feature && !helpUrl && !helpText" class="card-title">{{contentTitle}}</h2>
        <h2 ng-if="contentTitle && (feature || helpUrl || helpText)" class="card-title"
              piwik-enriched-headline feature-name="{{feature}}" help-url="{{helpUrl}}" inline-help="{{ helpText }}">
            {{contentTitle}}</h2>
        <div ng-transclude>
        </div>
    </div>
</div>