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

Skip to content
Snippets Groups Projects
home.component.html 2.11 KiB
Newer Older
<div><!--  just a wrapper  -->
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
<div class="row">
    <div class="col-md-12">
    	<h1 style="padding: 50px 0px 15px 0px;text-align:center" 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: 80%; margin-left: auto; margin-right: auto;">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>

            <span jhiTranslate="global.messages.info.sharing.platform">
                The CodeAbility Sharing Platform provides an infrastructure that enables the exchange of learning content in the field of programming. The content includes programming exercises, lecture materials, and collections of links on all topics related to the acquisition of programming skills. This search engine provides a quick and easy way for users to search for content published on the sharing platform. The search results can be further restricted by various filter options such as licenses, programming languages, and authors.
            </span>&nbsp;

        </div>


        <div class="alert alert-warning">

                <span jhiTranslate="global.messages.info.prototype">
                    Please, note that this is a prototype!
                </span>

        </div>
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
        <div [ngSwitch]="isAuthenticated()">
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed

            <div class="alert alert-warning" *ngSwitchCase="false">
                <span jhiTranslate="global.messages.info.registration.disabled">Registration of new users is currently disabled. Please, contact the administrator if you want to test the system.</span>
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
            </div>
        </div>
        -->
        <div><jhi-teaser-content></jhi-teaser-content></div>
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    </div>
</div>