diff options
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/cgit/footer.html | 2 | ||||
-rw-r--r-- | web/template/footer.php | 4 | ||||
-rw-r--r-- | web/template/header.php | 2 | ||||
-rw-r--r-- | web/template/template.phps | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/web/template/cgit/footer.html b/web/template/cgit/footer.html index f90aeb7..80481d9 100644 --- a/web/template/cgit/footer.html +++ b/web/template/cgit/footer.html @@ -1,6 +1,6 @@ <div id="footer"> <p> - Copyright © 2004-2014 AUR Development Team – + Copyright © 2004-2014 aurweb Development Team – <strong>Unsupported packages are user produced content. Any use of the provided files is at your own risk.</strong> </p> </div> diff --git a/web/template/footer.php b/web/template/footer.php index 806d3be..1b451b3 100644 --- a/web/template/footer.php +++ b/web/template/footer.php @@ -3,9 +3,9 @@ <div id="footer"> <?php if ($ver): ?> - <p>AUR <?= htmlspecialchars($ver) ?></p> + <p>aurweb <?= htmlspecialchars($ver) ?></p> <?php endif; ?> - <p>Copyright © 2004-<?= date("Y") ?> AUR Development Team.</p> + <p>Copyright © 2004-<?= date("Y") ?> aurweb Development Team.</p> <p><?= __('Unsupported packages are user produced content. Any use of the provided files is at your own risk.') ?></p> </div> </div> diff --git a/web/template/header.php b/web/template/header.php index 8a1494c..3567536 100644 --- a/web/template/header.php +++ b/web/template/header.php @@ -6,7 +6,7 @@ <head> <title>AUR (<?= htmlspecialchars($LANG); ?>)<?php if ($title != "") { print " - " . htmlspecialchars($title); } ?></title> <link rel='stylesheet' type='text/css' href='/css/archweb.css' /> - <link rel='stylesheet' type='text/css' href='/css/aur.css' /> + <link rel='stylesheet' type='text/css' href='/css/aurweb.css' /> <link rel='shortcut icon' href='/images/favicon.ico' /> <link rel='alternate' type='application/rss+xml' title='Newest Packages RSS' href='<?= get_uri('/rss/'); ?>' /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> diff --git a/web/template/template.phps b/web/template/template.phps index 841277b..4f8117c 100644 --- a/web/template/template.phps +++ b/web/template/template.phps @@ -16,5 +16,5 @@ html_header(); # print out the HTML header print __("Hi, this is worth reading!")."<br />\n"; -html_footer(AUR_VERSION); +html_footer(AURWEB_VERSION); |