Some useful snippets for the Construct Plugin from buzzingpixel.com that aren't in the documentation
Useful for if you want to create a list of "also in this section" links:
<ul>
{exp:construct:nodes tree_id="1" max_depth="1" direct_parent="{construct_route:node_parent_id}"}
<li>
<a href="/{construct:node_full_route}" {if '{construct:node_slug}' == '{last_segment}'}class="active"{/if}>
{construct:node_name}
</a>
</li>
{/exp:construct:nodes}
</ul>