34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
|
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
|
xmlns:f="http://xmlns.jcp.org/jsf/core">
|
|
|
|
<ui:composition template="templates/template_page.xhtml">
|
|
<ui:param name="pageTitle" value="Student sidan"/>
|
|
|
|
<ui:define name="panel-top">
|
|
<section>
|
|
<!-- <h:outputLink value="index.xhtml">Logga ut</h:outputLink> måste redict på rätt sätt-->
|
|
</section>
|
|
</ui:define>
|
|
|
|
<ui:define name="panel-main">
|
|
<section>
|
|
<h1>Mest lästa kurser</h1>
|
|
<h:form>
|
|
<ui:repeat value="#{mostStudiedCourses.courses}" var="course">
|
|
<ui:param name="course" value="#{course}"/>
|
|
<ui:define name="course-description">
|
|
|
|
</ui:define>
|
|
</ui:repeat>
|
|
</h:form>
|
|
</section>
|
|
</ui:define>
|
|
</ui:composition>
|
|
|
|
</html>
|
|
|