summaryrefslogtreecommitdiff
path: root/modules/blog/templates/settings.php.epp
blob: 8f2e62d4adba6024954b3927cf6bf41de7d42a85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<%- | String $author,
      String $title,
      String $subtitle,
      Boolean $has_comments = false,
-%>
<?php
# FILE MANAGED BY PUPPET
$author = "<%= $author %>";
$blog_title = "<%= $title %>";
$blog_subtitle = "<%= $subtitle %>";
$http_host = $_SERVER["HTTP_HOST"];
$urlbase = "http://$http_host/hugo";
$has_comments = <%= if $has_comments { 'true' } else { 'false' } %>;