24 lines
852 B
HTML
24 lines
852 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<section class="section">
|
|
<div class="container">
|
|
<nav class="breadcrumb is-small" aria-label="breadcrumbs">
|
|
<ul>
|
|
<li><a href="{{ workspace_url }}">AI Workspace</a></li>
|
|
<li><a href="{{ graphs_url }}">Behavioral Graphs</a></li>
|
|
<li class="is-active"><a aria-current="page">MS / PS Help</a></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="mb-4">
|
|
<h1 class="title is-4 mb-1">MS / PS Help: {{ person.name }}</h1>
|
|
<p class="is-size-7 has-text-grey">
|
|
Definitions and psychological interpretation for the timing signal system.
|
|
</p>
|
|
{% include "partials/ai-insight-nav.html" with active_tab="help" %}
|
|
</div>
|
|
{% include "partials/ai-workspace-behavioral-help.html" %}
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|