I'm using hyde (http://hyde.github.io) and everything is working great. Then I needed a page that is not static. I wrote it in php. Is there a way to have hyde just copy the content straight in to the deploy page from the content page?
{% extends "topbar.j2" %}
{% block container %}
{% block ignore %} *Hyde don't try to process just copy as is*
<h2> Search </h2>
<?php
... php code ...
echo "Stuff"
?>
{% endblock ignore %}
{% endblock container %}
So with some playing and deeper reading of the documentation.
The raw tag is for jinja syntax only (as shown)
Thought about turning off the markdown filter for the search page, but didn't want to create jinja page rules
Learned that one line of php does not seem to break the page.
Our solution
Move all php code back to its own file searcher.php
Keep the search.php page simple