Skip to content

Commit fd2528a

Browse files
committed
#0000 Tutorial: Update of content
1 parent a3eff9b commit fd2528a

File tree

7 files changed

+35
-0
lines changed
  • Step_06 DataSource - Usage of dynamic data/modules
  • Step_07 SiteMap - Controlling components and views/modules
  • Step_08 SiteMap - Variable paths/modules
  • Step_09 SiteMap - Functional paths/modules
  • Step_10 MVC - Synchronization/modules
  • Step_11 MVC - Synchronization and validation/modules
  • Step_12 Test/modules

7 files changed

+35
-0
lines changed

Step_06 DataSource - Usage of dynamic data/modules/about.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">{{Messages['abou
2020
<div class="w3-row-padding w3-grayscale" iterate="{{team:team}}">
2121
{{person:Object.parse(team.item)}}
2222
<div class="w3-col l3 m6 w3-margin-bottom">
23+
<!--
24+
Resources with expressions in the src-attribute are initially loaded by the browser.
25+
A 404 error will always occur in the browser console.
26+
So the attribute or tag should be inserted completely as an expression.
27+
-->
2328
<img src="./assets/images/team{{person.id}}.jpg" alt="{{person.name}}">
2429
<h3>{{person.name}}</h3>
2530
<p class="w3-opacity">{{person.role}}</p>

Step_07 SiteMap - Controlling components and views/modules/about.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">{{Messages['abou
2222
<div class="w3-col l3 m6 w3-margin-bottom">
2323
<!-- Link with path to the person-face -->
2424
<a href="#person">
25+
<!--
26+
Resources with expressions in the src-attribute are initially loaded by the browser.
27+
A 404 error will always occur in the browser console.
28+
So the attribute or tag should be inserted completely as an expression.
29+
-->
2530
<img src="./assets/images/team{{person.id}}.jpg" alt="{{person.name}}">
2631
</a>
2732
<h3>{{person.name}}</h3>

Step_08 SiteMap - Variable paths/modules/about.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">{{Messages['abou
2222
<div class="w3-col l3 m6 w3-margin-bottom">
2323
<!-- Link with path and ID to the person-face -->
2424
<a href="#person#{{person.id}}">
25+
<!--
26+
Resources with expressions in the src-attribute are initially loaded by the browser.
27+
A 404 error will always occur in the browser console.
28+
So the attribute or tag should be inserted completely as an expression.
29+
-->
2530
<img src="./assets/images/team{{person.id}}.jpg" alt="{{person.name}}">
2631
</a>
2732
<h3>{{person.name}}</h3>

Step_09 SiteMap - Functional paths/modules/about.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">{{Messages['abou
2222
<div class="w3-col l3 m6 w3-margin-bottom">
2323
<!-- Link with path and ID to the person-face -->
2424
<a href="#person#{{person.id}}">
25+
<!--
26+
Resources with expressions in the src-attribute are initially loaded by the browser.
27+
A 404 error will always occur in the browser console.
28+
So the attribute or tag should be inserted completely as an expression.
29+
-->
2530
<img src="./assets/images/team{{person.id}}.jpg" alt="{{person.name}}">
2631
</a>
2732
<h3>{{person.name}}</h3>

Step_10 MVC - Synchronization/modules/about.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">{{Messages['abou
2222
<div class="w3-col l3 m6 w3-margin-bottom">
2323
<!-- Link with path and ID to the person-face -->
2424
<a href="#person#{{person.id}}">
25+
<!--
26+
Resources with expressions in the src-attribute are initially loaded by the browser.
27+
A 404 error will always occur in the browser console.
28+
So the attribute or tag should be inserted completely as an expression.
29+
-->
2530
<img src="./assets/images/team{{person.id}}.jpg" alt="{{person.name}}">
2631
</a>
2732
<h3>{{person.name}}</h3>

Step_11 MVC - Synchronization and validation/modules/about.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">{{Messages['abou
2222
<div class="w3-col l3 m6 w3-margin-bottom">
2323
<!-- Link with path and ID to the person-face -->
2424
<a href="#person#{{person.id}}">
25+
<!--
26+
Resources with expressions in the src-attribute are initially loaded by the browser.
27+
A 404 error will always occur in the browser console.
28+
So the attribute or tag should be inserted completely as an expression.
29+
-->
2530
<img src="./assets/images/team{{person.id}}.jpg" alt="{{person.name}}">
2631
</a>
2732
<h3>{{person.name}}</h3>

Step_12 Test/modules/about.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ <h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">{{Messages['abou
2222
<div class="w3-col l3 m6 w3-margin-bottom">
2323
<!-- Link with path and ID to the person-face -->
2424
<a href="#person#{{person.id}}">
25+
<!--
26+
Resources with expressions in the src-attribute are initially loaded by the browser.
27+
A 404 error will always occur in the browser console.
28+
So the attribute or tag should be inserted completely as an expression.
29+
-->
2530
<img src="./assets/images/team{{person.id}}.jpg" alt="{{person.name}}">
2631
</a>
2732
<h3>{{person.name}}</h3>

0 commit comments

Comments
 (0)