This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * The public-facing functionality of the plugin. | |
| * | |
| * @link https://dualcon.ddns.net/ | |
| * @since 1.0.0 | |
| * | |
| * @package My_Wp_Tools | |
| * @subpackage My_Wp_Tools/public |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> | |
| <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> | |
| <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/reset.css" type="text/css" media="screen" /> | |
| <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/text.css" type="text/css" media="screen" /> | |
| <link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/960.css" type="text/css" media="screen" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ion-menu [content]="content"> | |
| <ion-header> | |
| <ion-toolbar> | |
| <ion-title>Menu</ion-title> | |
| </ion-toolbar> | |
| </ion-header> | |
| <ion-content> | |
| <ion-list> | |
| <button menuClose ion-item round (click)="navigate('login')">Login</button> |