1
0
mirror of https://gitlab.com/depesz/explain.depesz.com.git synced 2025-02-21 19:48:37 +02:00

24 lines
472 B
Plaintext
Raw Normal View History

% layout 'default';
% my $title = 'System information';
% title $title;
<h1><%= $title =%></h1>
<ul>
<li>Perl version: <%= $perl->{'version'} %></li>
<li>Perl binary: <%= $perl->{'binary'} %></li>
<li>App home: <%= app()->home() %>
<li>Loaded modules:
<ul>
% for my $item ( @{ $modules } ) {
<li><%= $item->{'module'} %>
% if ( $item->{'version'} ) {
version <%= $item->{'version'} %>
% }
</li>
% }
</ul>
</li>
</ul>