📄 about.tpl.php
字号:
<?php// -----------------------------------------------------------------------// This file is part of AROUNDMe// // Copyright (C) 2003-2007 Barnraiser// http://www.barnraiser.org/// info@barnraiser.org// // This program is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.// // This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.// // You should have received a copy of the GNU General Public License// along with this program; see the file COPYING.txt. If not, see// <http://www.gnu.org/licenses/>// -----------------------------------------------------------------------?><div id="am_core_area"> <table cellspacing="0" cellpadding="0" border="0" width="100%"> <tr> <td valign="top" width="240"> <div class="box"> <h1><?php echo $lang['hdr_information'];?></h1> <ul> <?php $link_css = ""; if (!isset($display)) { $link_css = " class=\"highlight\""; } ?> <li><a href="about.php"<?php echo $link_css;?>><?php echo $lang['href_about_us'];?></a></li> <?php $link_css = ""; if (isset($display) && $display == "policy") { $link_css = " class=\"highlight\""; } ?> <li><a href="about.php?v=policy"<?php echo $link_css;?>><?php echo $lang['href_policy'];?></a></li> <?php $link_css = ""; if (isset($display) && $display == "service") { $link_css = " class=\"highlight\""; } ?> <li><a href="about.php?v=service"<?php echo $link_css;?>><?php echo $lang['href_service'];?></a></li> <?php $link_css = ""; if (isset($display) && $display == "software") { $link_css = " class=\"highlight\""; } ?> <li><a href="about.php?v=software"<?php echo $link_css;?>><?php echo $lang['href_software'];?></a></li> </ul> </div> </td> <td width="20"> <img src="<?php echo $template_path_core;?>img/pixel.png" width="20" height="1" border="0" alt="" /><br /> </td> <td valign="top"> <?php if (isset($display) && $display == "policy") { ?> <div class="box"> <h1><?php echo $lang['hdr_policy'];?></h1> <p> <?php echo $lang['txt_policy'];?><br /> </p> </div> <?php } elseif (isset($display) && $display == "software") { ?> <div class="box"> <h1><?php echo $lang['hdr_software'];?></h1> <p> <?php echo $lang['txt_software'];?><br /> </p> <ul> <li><a href="http://www.barnraiser.org/"><?php echo $lang['href_barnraiser'];?></a></li> </ul> <p> <?php echo $lang['txt_accessibility_intro'];?><br /> </p> </div> <?php } elseif (isset($display) && $display == "service") { ?> <div class="box"> <h1><?php echo $lang['hdr_service'];?></h1> <p> <?php echo $lang['txt_service'];?><br /> </p> </div> <?php } else { ?> <div class="box"> <h1><?php echo $lang['hdr_about_us'];?></h1> <p> <?php echo $lang['txt_about_us'];?><br /> </p> </div> <?php if ($core_config['am']['webspace_creation_type'] == 1 || $core_config['am']['webspace_creation_type'] == 2) { ?> <div class="box"> <h1><?php echo $lang['hdr_create_webspace'];?></h1> <p> <?php echo $lang['txt_create_webspace'];?><br /> </p> <ul> <li><a href="create_webspace.php"><?php echo $lang['href_create_webspace'];?></a></li> </ul> </div> <?php }?> <?php }?> </td> </tr> </table></div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -