If you want just the title of the immediate parent, that would be
{% if feincms_page.parent %}
{{ feincms_page.parent.title }}
{% endif %}
If you want all the parents, something like this should work
{% for p in feincms_page.get_ancestors %}
{{ p.title }}
{% endfor %}