Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Templating: is it right?

Started by Muut Archive 11 years ago · 22 replies · 617 views
11 years ago

This is my template file item.html.twig

HTML
{% extends 'partials/base.html.twig' %}
{% block content %}
  <div class="flex-container content">
    <div class="flex-box subpage-title">
      {{ header.title }}
    </div>
    <div class="flex-box subpage-content">
      <img src="{{ page.url }}/image.jpg">
      <div class="subpage-text">
        {{ content }}
      </div>
    </div>
    <div class="flex-box back-link">
      <a href="{{ base_url }}">Zurück</a>
    </div>
  </div>
{% endblock %}

And this is in my base.html.twig

TWIG

<div class="background-3">
  {% block content %}
  {% endblock %}
</div>

My browser renders a blank page .... :(

11 years ago

It looks fine. Is your page called item.md ?

If you view source, what HTML do you get in your browser?

11 years ago

on my local machine everything looks just fine. but on my server there is simply a blank screen !

11 years ago

I have to say that "item.md" is called as a child of many children elements ... maybe that helps !?!?!?

11 years ago

Does your server have the correct version of PHP?

11 years ago

maybe ?&quest;!?!? how can i check this ?

11 years ago

add a php check file on your server and call it up.

11 years ago

7.0 or 5.6 or 5.5 or 5.4 ? I have the opportunity to choose what i like ....

11 years ago

I have not tried 7.0, but 5.6 is a good bet

11 years ago

so i have to mention that the homepage is shown.... except the subpage is not showing !

11 years ago

where should i place the lines

TXT
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

?

11 years ago

My parent MD file of the page that does not show up looks like ...

YAML

title: Posts
content:
  items: @self.children
---
11 years ago

That ini_set stuff needs to be in your .htaccess file.

11 years ago

hey people. now i have an 404 error, after disabling ADBLOCK !!!!! at least something.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1349 9 years ago
Archive · by Muut Archive, 9 years ago
2 934 9 years ago
Archive · by Muut Archive, 9 years ago
2 4060 9 years ago
Archive · by Muut Archive, 9 years ago
1 2946 9 years ago
Archive · by Muut Archive, 9 years ago
3 1118 9 years ago