TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<html
|
||||
xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
|
||||
xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<f:layout name="Widget/Widget"/>
|
||||
|
||||
<f:section name="main">
|
||||
<f:if condition="!{pages}">
|
||||
<f:then>
|
||||
<f:translate key="LLL:EXT:seo/Resources/Private/Language/locallang_dashboard.xlf:widget.pagesWithoutMetaDescription.noMissingDescriptions" />
|
||||
</f:then>
|
||||
<f:else>
|
||||
<div class="widget-table-wrapper">
|
||||
<table class="widget-table table table-striped table-hover">
|
||||
<f:for each="{pages}" as="page">
|
||||
<tr>
|
||||
<td>
|
||||
<strong>{page.title}</strong>
|
||||
<br/>
|
||||
{page.frontendUrl}
|
||||
</td>
|
||||
<td class="text-end">
|
||||
<div class="btn-group">
|
||||
<a href="{page.frontendUrl}" target="_blank" class="btn btn-default">
|
||||
<core:icon identifier="actions-eye" alternativeMarkupIdentifier="inline"/>
|
||||
</a>
|
||||
<be:link.editRecord uid="{page.uid}" table="pages" module="web_layout" fields="description" returnUrl="{be:moduleLink(route: 'dashboard')}" class="btn btn-default">
|
||||
<core:icon identifier="actions-open" alternativeMarkupIdentifier="inline"/>
|
||||
</be:link.editRecord>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</f:for>
|
||||
</table>
|
||||
</div>
|
||||
</f:else>
|
||||
</f:if>
|
||||
</f:section>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="{xslFile}"?>
|
||||
|
||||
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<f:for each="{sitemaps}" as="sitemap">
|
||||
<sitemap>
|
||||
<f:spaceless>
|
||||
<f:if condition="{sitemap.page}">
|
||||
<f:then><loc><f:uri.typolink parameter="t3://page?uid=current&type={type}&tx_seo[sitemap]={sitemap.key}&tx_seo[page]={sitemap.page}" absolute="true" /></loc></f:then>
|
||||
<f:else><loc><f:uri.typolink parameter="t3://page?uid=current&type={type}&tx_seo[sitemap]={sitemap.key}" absolute="true" /></loc></f:else>
|
||||
</f:if>
|
||||
</f:spaceless>
|
||||
<lastmod>{sitemap.lastMod -> f:format.date(format: 'c')}</lastmod>
|
||||
</sitemap>
|
||||
</f:for>
|
||||
</sitemapindex>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="{xslFile}"?>
|
||||
|
||||
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<f:for each="{items}" as="item">
|
||||
<f:if condition="{item.loc}">
|
||||
<url>
|
||||
<loc>{item.loc}</loc>
|
||||
<lastmod>{item.lastMod -> f:format.date(format: 'c')}</lastmod>
|
||||
<f:if condition="{item.changefreq}">
|
||||
<changefreq>{item.changefreq}</changefreq>
|
||||
</f:if>
|
||||
<f:if condition="{item.priority}">
|
||||
<priority>{item.priority}</priority>
|
||||
</f:if>
|
||||
</url>
|
||||
</f:if>
|
||||
</f:for>
|
||||
</urlset>
|
||||
Reference in New Issue
Block a user