<div class="row">
  <div class="col-lg-12 mt-3">
    <p><a title="Main Module" href="/cms/list"><i class="fa fa-chevron-circle-left "></i> &nbsp; Zurück zur Liste der Daten Produkte verwalten</a></p>

    <div class="card card-info mt-3">
      <div class="card-header  align-items-center d-flex">
        <h4 class="card-title mb-0 flex-grow-1">   <%=sectionTitle%></h4>
        <div class="flex-shrink-0"></div>
      </div>
      <div class="card-body">
        <div class="row g-3">
          <div class="table-responsive">
            <table id="table-detail" class="table table-striped">
              <tbody>
                <tr>
                  <td width="20%">Seite</td>
                  <td><%= dataInfo.page_title ? dataInfo.page_title : 'N/A' %></td>
                </tr>
                <tr>
                  <td width="20%">Ausgewähltes Bild	</td>
                  <td> <%if(dataInfo.featured_image !=null && dataInfo.featured_image !="" ){%>
                    <img class="img-thumbnail" id="imagePreview" style="width: 100px"
                        src="/<%=dataInfo.featured_image %>" alt="Image">
                    <%}else{%>
                        <img class="img-thumbnail" id="imagePreview" style="width: 100px"
                            src="/images/no-image.jpg%>" alt="Image">
                        <%}%></td>
                </tr>
                <tr>
                  <td width="20%">Seiteninhalt</td>
                  <td><%= dataInfo.html_data ? dataInfo.html_data : 'N/A' %></td>

                </tr>
                <tr>
                  <td width="20%">Meta-Titel</td>
                  <td><%- dataInfo.meta_title %></td>
                </tr>
                <tr>
                  <td width="20%">Meta-Keywords	</td>
                  <td>  <%= dataInfo.meta_keywords  ? dataInfo.meta_keywords : 'N/A' %>
                  </td>
                </tr>
            
                <tr>
                  <td>Meta-Beschreibung	</td>
                  <td>
                    <%= dataInfo.meta_description  ? dataInfo.meta_description : 'N/A' %>
                  </td>
                </tr>
                <tr>
                  <td width="20%">Hergestellt in	</td>
                  <td><%= new Date(dataInfo.created_at).toLocaleDateString('en-GB') %></td>
                </tr>
              </tbody>
            </table>
          </div>
        </div>
        <!-- /.box-body -->
      </div>
    </div>
  </div>
  <!--END AUTO MARGIN-->
</div>
