Tabs
4 years ago
DPTFullWidth.php
4 years ago
DSTemplate.php
4 years ago
DailyTimetablePrinter.php
4 years ago
HelpsAndTips.php
4 years ago
MonthlyTimetablePrinter.php
4 years ago
TimetablePrinter.php
4 years ago
dptWidgetForm.php
4 years ago
horizontal-div.php
4 years ago
widget-admin.php
4 years ago
DPTFullWidth.php
39 lines
| 1 | <!DOCTYPE html> |
| 2 | <html <?php language_attributes(); ?>> |
| 3 | <head> |
| 4 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 5 | <?php if ( ! get_theme_support( 'title-tag' ) ): ?> |
| 6 | <title><?php wp_title(); ?></title> |
| 7 | <?php endif; ?> |
| 8 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 9 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
| 10 | |
| 11 | <?php wp_head(); ?> |
| 12 | <style> |
| 13 | .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.woocommerce), *[class*=inner-container] > *:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.woocommerce), .default-max-width |
| 14 | { |
| 15 | max-width: none !important; |
| 16 | margin-left: 10%; |
| 17 | margin-right: 10%; |
| 18 | } |
| 19 | </style> |
| 20 | </head> |
| 21 | |
| 22 | <body class="google-font"> |
| 23 | <?php |
| 24 | while ( have_posts() ) : the_post(); ?> |
| 25 | |
| 26 | <div class="entry-content"> |
| 27 | |
| 28 | <?php the_content(); ?> |
| 29 | |
| 30 | </div><!-- .entry-content --> |
| 31 | |
| 32 | <?php |
| 33 | endwhile; |
| 34 | ?> |
| 35 | <?php wp_footer(); ?> |
| 36 | <script src="<?php echo plugin_dir_url(__FILE__) . '../Assets/js/bootstrap.min-5.0.2.js'; ?>"></script> |
| 37 | </body> |
| 38 | </html> |
| 39 |