Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
reajuste
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Developer committed Dec 2, 2024
1 parent 9857476 commit 186fe3c
Showing 1 changed file with 15 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,28 @@
<#assign pubsLabel = "${i18n().res_area_pubs}">
<#assign dataString = "[ ">

<div id="body">
<div class="sub_headings">
<hgroup class="title">
<h2><a href="${urlPrefix}${authorUri}" title="${firstRow["authorName"]}">${firstRow["authorName"]}</a></h2>
<h2 class="title">${i18n().prod_research_areas_full}</h2>
</hgroup>

<#include "popover.ftl">
</div>
<section id="pageList">
<#list areas as firstRow>
<div class="tab">
<h2><a href="${urlPrefix}${authorUri}" title="${firstRow["authorName"]}">${firstRow["authorName"]}</a></h2>
</div>
<#break>
</#list>
</section>
<section id="areaList">
<#list areas as resultRow>
<#assign areaData = "{\"label\": \"" + resultRow["areaName"] + "\", \"count\": " + resultRow["total"] + "}, ">
<#assign dataString += areaData>
</#list>
<#assign dataString = dataString?keep_before_last(", ") + " ]">
</section>


<section id="graphTitle">
<div class="title-holder">
<h2 class="title">${i18n().prod_research_areas_full}</h1>
</div>
</section>

<section id="graphRendering">

<div id="chart">
Expand Down

0 comments on commit 186fe3c

Please sign in to comment.