-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure the flow of examples builds on previous
* Remove controller stuff from layout example -- it should build only on linked view example. * Add layouts to controller example -- it should build on the layout example. * Make the views consistent across examples.
- Loading branch information
1 parent
e8a62ef
commit fbaf04f
Showing
9 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 +1,4 @@ | ||
<cfoutput>Hello #rc.name#!</cfoutput> | ||
<cfoutput> | ||
<p>Hello FW1!</p> | ||
<p><a href="#buildURL('main.other')#">Go away</a>!</p> | ||
</cfoutput> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<cfoutput> | ||
<div style="border: solid green 2px; padding: 20px;"> | ||
#body# | ||
</div> | ||
</cfoutput> |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
<cfoutput><div style="border: solid blue 1px;">#body#</div></cfoutput> |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<h1>Welcome to FW/1!</h1> | ||
<cfoutput>#body#</cfoutput> |
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 +1,4 @@ | ||
<cfoutput>Hello #rc.name#!</cfoutput> | ||
<cfoutput> | ||
<p>Hello #rc.name#!</p> | ||
<p><a href="#buildURL('main.other&name=#rc.name#')#">Go away</a>!</p> | ||
</cfoutput> |
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 @@ | ||
<cfoutput> | ||
<p>Goodbye FW/1!</p> | ||
<p><a href="#buildURL('main')#">Come back</a>!</p> | ||
<p>Goodbye #rc.name#!</p> | ||
<p><a href="#buildURL( action = 'main', queryString = 'name=#rc.name#' )#">Come back</a>!</p> | ||
</cfoutput> |
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 +1,4 @@ | ||
<cfoutput>Hello #rc.name#!</cfoutput> | ||
<cfoutput> | ||
<p>Hello #rc.name#!</p> | ||
<p><a href="#buildURL('main.other&name=#rc.name#')#">Go away</a>!</p> | ||
</cfoutput> |
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 @@ | ||
<cfoutput> | ||
<p>Goodbye FW/1!</p> | ||
<p><a href="#buildURL('main')#">Come back</a>!</p> | ||
<p>Goodbye #rc.name#!</p> | ||
<p><a href="#buildURL( action = 'main', queryString = 'name=#rc.name#' )#">Come back</a>!</p> | ||
</cfoutput> |