Articulate

 view release on metacpan or  search on metacpan

examples/plain-speaking/views/article.tt  view on Meta::CPAN

[% USE date ( format = '%l o\'clock %p on %A, %e %B, %Y' locale = 'en_GB') %]
<article
  itemscope="itemscope"
  itemtype="http://schema.org/Article"
>
<header>
  <h1
    class="article-title"
    itemprop="name"
  >
    [% article.schema.core.title | html %]

examples/plain-speaking/views/article_result.tt  view on Meta::CPAN

[% USE date ( format = '%l o\'clock %p on %A, %e %B, %Y' locale = 'en_GB') %]
<a
  [%- SET slug = article.location _ '' -%]
  [%- slug = slug.replace('.*/', '') -%]
  href  = "/article/[% slug %]"
  class = "block-item list-group-item"
>
  <p
    class="article-title h3"
    itemprop="name"
  >

examples/plain-speaking/views/layouts/main.tt  view on Meta::CPAN

[% USE date ( format = '%l o\'clock %p on %A, %e %B, %Y' locale = 'en_GB') %]
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-type" content="text/html; charset=[% settings.charset %]" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>[% page.title %]</title>
  [%- FOREACH stylesheet IN site.css -%]
  [%- IF stylesheet.match('\/\/') -%]
  <link rel="stylesheet" href="[% stylesheet %]" />



( run in 1.003 second using v1.01-cache-2.11-cpan-5a3173703d6 )