Hendrik Jungnitsch
2022-09-29 d91b29ea3d62a53a65087fdcb7833edb5da7ffda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:f="http://xmlns.jcp.org/jsf/core" xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<h:head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  <title>CDI_LABS</title>
  <link rel="icon" href="${resource['images:G.png']}"/>
</h:head>
<body>
  <h2>Articles</h2>
 
  Article list as of
  <h:outputText value="#{articlePresenter.created}" />
 
  <br />
  
  <h:form>
    <h:commandLink action="/demo/extension/article/details/articleDetails" value="details" />
  </h:form>
 
  <br />
  
  <h:form>
    <h:commandLink action="/index" value="home" />
  </h:form>
 
</body>
</html>