PHP Classes

File: templates/basic_template.php

Recommend this page to a friend!
  Classes of stefan   PHP XML Converter   templates/basic_template.php   Download  
File: templates/basic_template.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP XML Converter
Transform Indesign to eBundesanzeiger XML format
Author: By
Last change:
Date: 1 year ago
Size: 894 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="de">
    <head>
        <meta charset="utf-8">
        <link rel="stylesheet" type="text/css" href="./templates/css/style.css" />
        <link rel="stylesheet" type="text/css" href="./templates/css/formularstyle.css" />

        <!-- jquery ui -->
        <link type="text/css" href="css/jquery_ui/jquery-ui-1.8.21.custom.css" rel="stylesheet" />
        <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
        <script type="text/javascript" src="js/jquery-ui-1.8.21.custom.min.js"></script>
        <script type="text/javascript">
            /*$(function(){
                // Tabs
                $('#tabs').tabs();
            });*/
        </script>
       
    </head>
    <body>
        <h1><?php echo $this->_['blog_title']; ?></h1>
        <?php echo $this->_['blog_content']; ?>
<hr />
        <?php echo $this->_['blog_footer']; ?>
</body>
</html>