Forked from cmnstmntmn/gist:799440acb5c746dc3a1a
Last active
October 16, 2020 12:37
-
-
Save bzerangue/203011956aec2e140459 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:import href="page-title.xsl"/> | |
<xsl:import href="navigation.xsl"/> | |
<xsl:import href="date-time.xsl"/> | |
<xsl:output method="html" encoding="utf-8" indent="yes" omit-xml-declaration="yes"/> | |
<xsl:strip-space elements="*"/> | |
<xsl:template match="/"> | |
<xsl:text disable-output-escaping='yes'><!DOCTYPE html> | |
</xsl:text> | |
<html prefix="og: http://ogp.me/ns#"> | |
<head> | |
<!-- Meta --> | |
<title><xsl:call-template name="page-title"/></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
<!-- Open Graph Meta --> | |
<meta property="og:title" content="The Rock" /> | |
<meta property="og:type" content="video.movie" /> | |
<meta property="og:url" content="http://www.imdb.com/title/tt0117500/" /> | |
<meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" /> | |
<link rel="icon" type="images/png" href="{$workspace}/img/bookmark.png" /> | |
<link rel="stylesheet" type="text/css" media="screen" href="{$workspace}/css/app.css" /> | |
</head> | |
<body> | |
<h1> | |
<a href="{$root}"><xsl:value-of select="$website-name"/></a> | |
</h1> | |
<xsl:apply-templates select="data/navigation"/> | |
<xsl:apply-templates/> | |
</body> | |
</html> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment