1<?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?> 2<html> 3<head> 4 <title><?php echo $tpl->get('wiki_title') ?></title> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6</head> 7<style type="text/css"> 8 body { 9 font: normal 87.5%/1.4 Arial, sans-serif; 10 } 11 <?php echo $tpl->get('style') ?> 12</style> 13<body> 14 15<h1 style="padding-bottom: 5px; margin-bottom: 5px; border-bottom: 1px solid #E5E5E5;"> 16 <?php echo $tpl->get('wiki_title') ?> 17</h1> 18 19<p> 20 <?php echo $tpl->user_name($tpl->get('who')) ?> <?php echo $tpl->getLang($tpl->get('action')) ?> 21 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>"> 22 #<?php echo $tpl->get('thread')->id ?> 23 </a>. 24</p> 25 26<?php echo $tpl->get('content') ?> 27 28<div style="margin-top: 5px; padding: 20px; background: #F2F2F2;"> 29 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>#k_" style="text-decoration: none; color: #444; font-weight: bold;">Dodaj komentarz</a> 30</div> 31 32<p style="font-size:small;color:#666;">—<br /> 33 Otrzymujesz tą wiadomość, ponieważ jesteś subskrybentem tego problemu.<br /> 34 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>">Przejdź do problemu</a>, 35 albo <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'unsubscribe') ?>"> 36 wyłącz subskrypcję 37 </a>. 38</p> 39 40<?php include "footer.php" ?> 41 42</body> 43</html>