1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php /** * The Template for displaying the plugin changelog. * * @var string $plugin_name The plugin name. * @var string $changelog The changelog. * @package YITH\PluginFramework\Templates */
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
?> <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width"> <meta name="robots" content="noindex,follow"> <title><?php echo esc_html( $plugin_name ); ?> - Changelog</title> <style type="text/css"> body { background : #ffffff; color : #444; font-family : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size : 13px; line-height : 1.4em; padding : 10px; }
h2.yith-plugin-changelog-title { text-transform : uppercase; font-size : 17px; }
ul { list-style : none; padding : 0; }
li { display : list-item; margin-bottom : 6px; } </style> </head> <body> <h2 class='yith-plugin-changelog-title'><?php echo esc_html( $plugin_name ); ?> - Changelog</h2> <div class='yith-plugin-changelog'><?php echo wp_kses_post( $changelog ); ?></div> </body> </html>
|