Adding bulma look & feel.
parent
9943b75618
commit
78a118ba13
|
@ -3,6 +3,7 @@ apply plugin: 'war'
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':javaee-demo1-ejb')
|
implementation project(':javaee-demo1-ejb')
|
||||||
implementation 'org.slf4j:slf4j-api:1.7.22'
|
implementation 'org.slf4j:slf4j-api:1.7.22'
|
||||||
|
implementation 'org.webjars.npm:bulma:0.9.1'
|
||||||
providedCompile 'javax:javaee-api:8.0'
|
providedCompile 'javax:javaee-api:8.0'
|
||||||
testImplementation group: 'junit', name: 'junit', version: '4.11'
|
testImplementation group: 'junit', name: 'junit', version: '4.11'
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +1,99 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||||
xmlns:jsf="http://xmlns.jcp.org/jsf" xmlns:f="http://xmlns.jcp.org/jsf/core"
|
xmlns:jsf="http://xmlns.jcp.org/jsf"
|
||||||
|
xmlns:h="http://java.sun.com/jsf/html"
|
||||||
|
xmlns:f="http://xmlns.jcp.org/jsf/core"
|
||||||
xmlns:ui="http://java.sun.com/jsf/facelets">
|
xmlns:ui="http://java.sun.com/jsf/facelets">
|
||||||
<head jsf:id="head"><title>JSF 2.2</title></head>
|
<head jsf:id="head">
|
||||||
|
<title>JSF 2.2</title>
|
||||||
|
<h:outputStylesheet name="webjars/bulma/0.9.1/css/bulma.min.css"/>
|
||||||
|
</head>
|
||||||
<body jsf:id="body">
|
<body jsf:id="body">
|
||||||
<h2>Hello JSF</h2>
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
||||||
<form jsf:id="form">
|
<div class="navbar-brand">
|
||||||
<button jsf:action="#{helloController.handleSubmit}">#{helloController.message}</button>
|
<a class="navbar-item" href="https://bulma.io">
|
||||||
</form>
|
<img src="https://bulma.io/images/bulma-logo.png" width="112" height="28"/>
|
||||||
<button type="button" jsf:action="#{helloController.handleSimpleAction}">
|
</a>
|
||||||
Action me
|
|
||||||
<f:ajax/>
|
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
|
||||||
</button>
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="navbarBasicExample" class="navbar-menu">
|
||||||
|
<div class="navbar-start">
|
||||||
|
<a class="navbar-item">
|
||||||
|
Home
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a class="navbar-item">
|
||||||
|
Documentation
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="navbar-item has-dropdown is-hoverable">
|
||||||
|
<a class="navbar-link">
|
||||||
|
More
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="navbar-dropdown">
|
||||||
|
<a class="navbar-item">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<a class="navbar-item">
|
||||||
|
Jobs
|
||||||
|
</a>
|
||||||
|
<a class="navbar-item">
|
||||||
|
Contact
|
||||||
|
</a>
|
||||||
|
<hr class="navbar-divider"/>
|
||||||
|
<a class="navbar-item">
|
||||||
|
Report an issue
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="navbar-end">
|
||||||
|
<div class="navbar-item">
|
||||||
|
<div class="buttons">
|
||||||
|
<a class="button is-primary">
|
||||||
|
<strong>Sign up</strong>
|
||||||
|
</a>
|
||||||
|
<a class="button is-light">
|
||||||
|
Log in
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
<ul>
|
<ul>
|
||||||
<ui:repeat value="#{helloController.allTodos}" var="todo">
|
<ui:repeat value="#{helloController.allTodos}" var="todo">
|
||||||
<li>#{todo}</li>
|
<li>#{todo}</li>
|
||||||
</ui:repeat>
|
</ui:repeat>
|
||||||
</ul>
|
</ul>
|
||||||
|
<h:dataTable value="#{helloController.allUsers}" var="p" styleClass="table is-striped is-fullwidth">
|
||||||
<ol>
|
<h:column>
|
||||||
<ui:repeat value="#{helloController.allUsers}" var="user">
|
<f:facet name="header">ID</f:facet>
|
||||||
<li>#{user.firstName}</li>
|
<h:outputText value="#{p.id}"/>
|
||||||
</ui:repeat>
|
</h:column>
|
||||||
</ol>
|
<h:column>
|
||||||
|
<f:facet name="header">First name</f:facet>
|
||||||
|
<h:outputText value="#{p.firstName}"/>
|
||||||
|
</h:column>
|
||||||
|
<h:column>
|
||||||
|
<f:facet name="header">User name</f:facet>
|
||||||
|
<h:outputText value="#{p.userName}"/>
|
||||||
|
</h:column>
|
||||||
|
</h:dataTable>
|
||||||
|
<form jsf:id="form">
|
||||||
|
<button jsf:action="#{helloController.handleSubmit}" class="button is-light">#{helloController.message}</button>
|
||||||
|
<button type="button" jsf:action="#{helloController.handleSimpleAction}" class="button is-light">
|
||||||
|
Action me
|
||||||
|
<f:ajax/>
|
||||||
|
</button>
|
||||||
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue