This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
home.component.html 953 B
Newer Older
<div><!--  just a wrapper  -->
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
<div class="row">
    <div class="col-md-12">
    	<h1 style="padding: 10px 0px 10px 0px;text-align: center;margin-bottom: 0px;" jhiTranslate="home.title">Browse our popular content</h1>
		<!-- <h4 style="margin-bottom: 50px" align="center" jhiTranslate="home.subtitle">An optional subheadline for additional information</h4>  -->
		<div jhiTranslate="home.teaser" style="width: 100%; margin-left: auto; margin-right: auto; text-align: center;">teaser text </div>
Michael Breu's avatar
Michael Breu committed
        <div [ngSwitch]="isAuthenticated()">
            <div class="alert alert-success" *ngSwitchCase="true">
                <span id="home-logged-message" *ngIf="account" jhiTranslate="home.logged.message"
                    [translateValues]="{ username: account.login }">You are logged in as user "{{ account.login }}".</span>
            </div>

        </div>
        <div><jhi-teaser-content  ></jhi-teaser-content></div>
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    </div>
</div>