12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /* partials/dashboard-notifications.html.twig */
- class __TwigTemplate_50f9c79f4699bacaabd8fd6a33e58048dab31404bb6291449f39eff0a632f606 extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
- $this->parent = false;
- $this->blocks = array(
- );
- }
- protected function doDisplay(array $context, array $blocks = array())
- {
- // line 1
- echo "<div id=\"notifications\" class=\"dashboard-item admin-block default-box-shadow\">
- <h1>
- ";
- // line 3
- echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.NOTIFICATIONS"), "html", null, true);
- echo "
- <span class=\"right\">
- <a href=\"#\" class=\"button button-small\" data-refresh=\"notifications\"><i class=\"fa fa-refresh\"></i></a>
- </span>
- </h1>
- <div class=\"widget-content\">
- <div class=\"widget-loader\"><i class=\"fa fa-refresh fa-spin\"></i></div>
- <ul></ul>
- </div>
- </div>
- ";
- }
- public function getTemplateName()
- {
- return "partials/dashboard-notifications.html.twig";
- }
- public function isTraitable()
- {
- return false;
- }
- public function getDebugInfo()
- {
- return array ( 23 => 3, 19 => 1,);
- }
- /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
- public function getSource()
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
- return $this->getSourceContext()->getCode();
- }
- public function getSourceContext()
- {
- return new Twig_Source("<div id=\"notifications\" class=\"dashboard-item admin-block default-box-shadow\">
- <h1>
- {{ \"PLUGIN_ADMIN.NOTIFICATIONS\"|tu }}
- <span class=\"right\">
- <a href=\"#\" class=\"button button-small\" data-refresh=\"notifications\"><i class=\"fa fa-refresh\"></i></a>
- </span>
- </h1>
- <div class=\"widget-content\">
- <div class=\"widget-loader\"><i class=\"fa fa-refresh fa-spin\"></i></div>
- <ul></ul>
- </div>
- </div>
- ", "partials/dashboard-notifications.html.twig", "/mnt/data/Sites/static-ethica.net/user/plugins/admin/themes/grav/templates/partials/dashboard-notifications.html.twig");
- }
- }
|