diff options
author | Anton L. Šijanec <anton@sijanec.eu> | 2020-05-01 21:51:26 +0200 |
---|---|---|
committer | Anton L. Šijanec <anton@sijanec.eu> | 2020-05-01 21:51:26 +0200 |
commit | 741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff (patch) | |
tree | 35d471215059f617baaf82936f5735943d14ee65 /assets/layout | |
parent | added working inline command tag detector, more constants (diff) | |
download | bverbose-741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff.tar bverbose-741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff.tar.gz bverbose-741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff.tar.bz2 bverbose-741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff.tar.lz bverbose-741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff.tar.xz bverbose-741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff.tar.zst bverbose-741c8e2e2ad42c4bbdf8f532d83eaf1fdcba5eff.zip |
Diffstat (limited to 'assets/layout')
-rw-r--r-- | assets/layout/html/post.bvr | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/assets/layout/html/post.bvr b/assets/layout/html/post.bvr index bfcf80c..39391b8 100644 --- a/assets/layout/html/post.bvr +++ b/assets/layout/html/post.bvr @@ -1,29 +1,29 @@ <!DOCTYPE html> -<html lang="<@?get site_language@>"> +<html lang="<@?g site_language@>"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - <meta name="description" content="<!@get post_description@>"> - <meta name="author" content="<@?author name ?get post_author@>"> + <meta name="description" content="<!@g post_description@>"> + <meta name="author" content="<@?g post_author_name@>"> <title> - <@?get post_heading@> :: <@?get site_name@> - <@get site_description@> + <@?g post_heading@> :: <@?g site_name@> - <@g site_description@> </title> <link href="css/bundle.min.css" rel="stylesheet"> </head> <body> - <@?include navigation@> + <@?i navigation@> <!-- Page Header --> - <header class="masthead" style="background-image: url('<@?find_file ?get post_header_image@>'); background: <@?get post_header_color@>"> + <header class="masthead" style="background-image: url('<@?g post_header_image@>'); background: <@?g post_header_color@>"> <div class="overlay"></div> <div class="container"> <div class="row"> - <div class="col-lg-<@?get content_width@> mx-auto"> + <div class="col-lg-<@?g content_width@> mx-auto"> <div class="post-heading"> - <h1><@?get post_heading@></h1> - <h2 class="subheading"><@?get post_subheading@></h2> + <h1><@?g post_heading@></h1> + <h2 class="subheading"><@?g post_subheading@></h2> <span class="meta">Posted by - <a href="author/<@?get post_author@>"><@?author name ?get post_author@></a> - on <@?format_date ?get post_on_date?> + <a href="author/<@?g post_author@>"><@?g post_author_name@></a> + on <@?g post_date?> </span> </div> </div> @@ -34,13 +34,13 @@ <article> <div class="container"> <div class="row"> - <div class="col-lg-<@?get content_width@> mx-auto"> - <@?include_and_format_body ?post_slug@> + <div class="col-lg-<@?g content_width@> mx-auto"> + <@?i ?post_slug@> </div> </div> </div> </article> <hr> - <@?include footer@> + <@?i footer@> </body> -</html>
\ No newline at end of file +</html> |