You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2019/06/17 21:00:50 UTC

[maven-fluido-skin] 01/01: [MSKINS-106] Replace unregistered meta tags with standard ones

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch MSKINS-106
in repository https://gitbox.apache.org/repos/asf/maven-fluido-skin.git

commit 9ce694b2d65c6f62a42a51de6a89182b2dd4388f
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Mon Jun 17 22:59:57 2019 +0200

    [MSKINS-106] Replace unregistered meta tags with standard ones
    
    Since no one came up with anything better, we drop the custom ones for a
    default value also set by the Default Skin.
---
 src/main/resources/META-INF/maven/site.vm | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/main/resources/META-INF/maven/site.vm b/src/main/resources/META-INF/maven/site.vm
index d25cee3..d8fcec0 100644
--- a/src/main/resources/META-INF/maven/site.vm
+++ b/src/main/resources/META-INF/maven/site.vm
@@ -37,11 +37,8 @@
 #foreach( $author in $authors )
     <meta name="author" content="$author" />
 #end
-#if ( $dateCreation )
-    <meta name="Date-Creation-yyyymmdd" content="$dateCreation" />
-#end
-#if ( $dateRevision && !$skipGenerationDate )
-    <meta name="Date-Revision-yyyymmdd" content="$dateRevision" />
+#if ( $documentDate )
+    <meta name="date" content="$documentDate" />
 #end
     <title>$title</title>
     <link rel="stylesheet" href="$relativePath/css/apache-maven-fluido-@project.version@.min.css" />