homepage styling

This commit is contained in:
Athou
2013-04-12 08:07:49 +02:00
parent 96032a79c9
commit ee9fd0ae89
2 changed files with 7 additions and 2 deletions

View File

@@ -10,10 +10,12 @@
<div class="row header">
<div class="text-center">
<h1>
<img src="images/logo.png"></img>
<a wicket:id="logo-link">
<img src="images/logo.png"></img>
</a>
</h1>
</div>
CommaFeed is a bloat-free feed reader. It aims to replace Google Reader.
CommaFeed is a bloat-free feed reader. It aims to replace Google Reader while keeping things simple and to the point.
</div>
<div class="row">
<div class="span6">

View File

@@ -3,6 +3,7 @@ package com.commafeed.frontend.pages;
import javax.inject.Inject;
import org.apache.wicket.markup.head.IHeaderResponse;
import org.apache.wicket.markup.html.link.BookmarkablePageLink;
import com.commafeed.backend.dao.ApplicationSettingsDAO;
import com.commafeed.frontend.pages.components.LoginPanel;
@@ -16,6 +17,8 @@ public class WelcomePage extends BasePage {
ApplicationSettingsDAO applicationSettingsDAO;
public WelcomePage() {
add(new BookmarkablePageLink<Void>("logo-link", getApplication()
.getHomePage()));
add(new LoginPanel("login"));
add(new RegisterPanel("register") {
@Override