Swinburne Bookmarks
<%# This code loops through the categories provided by the controller %>
<% for my $category (@$categories) { %>
<%= $category->{title} %>
<%# Check if there are any links in the category before creating the list %>
<% if (@{$category->{links}}) { %>
<% for my $link (@{$category->{links}}) { %>
-
<%# Display the favicon if a domain is available %>
<% if ($link->{domain}) { %>
<% } %>
<%# Create a clickable link. target="_blank" opens it in a new tab. %>
<%= $link->{name} %>
<% } %>
<% } else { %>
No links found for this category.
<% } %>
<% } %>