* BAEL-1216: improve tests * BAEL-1448: Update Spring 5 articles to use the release version * Setting up the Maven Wrapper on a maven project * Add Maven Wrapper on spring-boot module * simple add * BAEL-976: Update spring version * BAEL-1273: Display RSS feed with spring mvc (AbstractRssFeedView) * Move RSS feed with Spring MVC from spring-boot to spring-mvc-simple * BAEL-1285: Update Jackson articles * BAEL-1273: implement both MVC and Rest approach to serve RSS content * RSS(XML & Json) with a custom model * BAEL-1273: remove a resource * BAEL-1519: Guide to scribejava * BAEL-1273: improve xml representation * Fix pom
24 lines
900 B
HTML
24 lines
900 B
HTML
@*
|
|
* This template is called from the `index` template. This template
|
|
* handles the rendering of the page header and body tags. It takes
|
|
* two arguments, a `String` for the title of the page and an `Html`
|
|
* object to insert into the body of the page.
|
|
*@
|
|
@(title: String)(content: Html)
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
@* Here's where we render the page title `String`. *@
|
|
<title>@title</title>
|
|
<link rel="stylesheet" media="screen" href="@routes.Assets.versioned("stylesheets/main.css")">
|
|
<link rel="shortcut icon" type="image/png" href="@routes.Assets.versioned("images/favicon.png")">
|
|
<script src="@routes.Assets.versioned("javascripts/hello.js")" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
@* And here's where we render the `Html` object containing
|
|
* the page content. *@
|
|
@content
|
|
</body>
|
|
</html>
|