-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
234dd0d
commit bbe0514
Showing
6 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>My Basic HTML Page</title> | ||
<title>Script Example</title> | ||
</head> | ||
<body> | ||
<h1>Welcome to my basic HTML page!</h1> | ||
<p>This is a simple example of an HTML page.</p> | ||
<h1>Script Example</h1> | ||
<p> | ||
Script example. | ||
<!-- This is a <p> comment --> | ||
</p> | ||
<a href="http://edg.io/">Edgio Homepage</a> | ||
<!-- This is a <body> comment --> | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Edge Side Include Example</title> | ||
<title>Script Example</title> | ||
</head> | ||
<body> | ||
<h1>Script Example</h1> | ||
<esi:include src="/assets/esi_snippet.html" /> | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<div> | ||
<h1>Hello, World!</h1> | ||
<p>This HTML was added by an ESI include.</p> | ||
<p>This snippet will be included in the response via ESI.</p> | ||
</div> |