Merge pull request #102 from spollard/patch-1

Aligning component js with html in example
This commit is contained in:
Emil Stenström 2021-11-01 23:01:05 +01:00 committed by GitHub
commit cbb727bbe5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -237,10 +237,10 @@ The output from the above template will be:
<head> <head>
<title>My example calendar</title> <title>My example calendar</title>
<link href="style.css" type="text/css" media="all" rel="stylesheet"> <link href="style.css" type="text/css" media="all" rel="stylesheet">
<script src="script.js"></script>
</head> </head>
<body> <body>
<div class="calendar-component">Today's date is <span>2015-06-19</span></div> <div class="calendar-component">Today's date is <span>2015-06-19</span></div>
<script src="script.js"></script>
</body> </body>
<html> <html>
``` ```