-
-
Notifications
You must be signed in to change notification settings - Fork 366
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
b289b2f
commit 0c80ec0
Showing
18 changed files
with
107 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
guid;first_name;last_name;age | ||
{{loop(people) as person}} | ||
{{for person in people}} | ||
{{:person.guid}};"{{:person.firstname}}";"{{:person.lastname}}";{{:person.age}} | ||
{{endloop}} | ||
{{endfor}} |
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,13 +1,13 @@ | ||
{{if(!ishtmx)}} | ||
{{include("partials/header.html")}} | ||
{{if !ishtmx}} | ||
{{include "partials/header.html"}} | ||
{{endif}} | ||
{{include("people_list_search.html")}} | ||
{{include "people_list_search.html"}} | ||
<div class="row" id="people_list" hx-target="#main"> | ||
<div class="col"> | ||
{{include("people_table.html")}} | ||
{{include "people_table.html"}} | ||
</div> | ||
</div> | ||
{{include("people_list_bottom.html")}} | ||
{{if(!ishtmx)}} | ||
{{include("partials/footer.html")}} | ||
{{include "people_list_bottom.html"}} | ||
{{if !ishtmx}} | ||
{{include "partials/footer.html"}} | ||
{{endif}} |
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
</div> | ||
</div> | ||
|
||
{{include("partials/modal_placeholder.html")}} | ||
{{include "partials/modal_placeholder.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
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,3 +1,3 @@ | ||
{{if(ispage)}}{{include("../_header.html")}}{{endif}} | ||
{{if ispage}}{{include "../_header.html"}}{{endif}} | ||
<h1 class="text-2xl font-bold mb-4">Customers</h1> | ||
{{if(ispage)}}{{include("../_footer.html")}}{{endif}} | ||
{{if ispage}}{{include "../_footer.html"}}{{endif}} |
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,3 +1,4 @@ | ||
{{if(ispage)}}{{include("../_header.html")}}{{endif}} | ||
{{if ispage}}{{include "../_header.html"}}{{endif}} | ||
<h1 class="text-2xl font-bold mb-4">HTMX WebSite</h1> | ||
{{if(ispage)}}{{include("../_footer.html")}}{{endif}} | ||
<p>Powered by DMVCFramework, TemplatePro and HTMX</p> | ||
{{if ispage}}{{include "../_footer.html"}}{{endif}} |
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,3 +1,3 @@ | ||
{{if(ispage)}}{{include("../_header.html")}}{{endif}} | ||
{{if ispage}}{{include "../_header.html"}}{{endif}} | ||
<h1 class="text-2xl font-bold mb-4">Posts</h1> | ||
{{if(ispage)}}{{include("../_footer.html")}}{{endif}} | ||
{{if ispage}}{{include "../_footer.html"}}{{endif}} |
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,3 +1,3 @@ | ||
{{if(ispage)}}{{include("../_header.html")}}{{endif}} | ||
{{if ispage}}{{include "../_header.html"}}{{endif}} | ||
<h1 class="text-2xl font-bold mb-4">Users</h1> | ||
{{if(ispage)}}{{include("../_footer.html")}}{{endif}} | ||
{{if ispage}}{{include "../_footer.html"}}{{endif}} |
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
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