Skip to content

Commit be5cdf4

Browse files
authored
Merge pull request #485 from Gebec/tutorial-todo-link-fix
2 parents efe353c + 716c184 commit be5cdf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

current/en-us/2. tutorials/1. creating-a-todo-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Here's what's amazing. This is all the ${context.language.name} code for the app
115115

116116
## Rendering the App
117117

118-
As a brief recap, remember that almost nothing we've done so far is Aurelia-specific. Almost all the code we've written is just vanilla ${context.language.name}. There is `src/main${context.language.fileExtension}` file which is the starting point of your app, it conventionally use `src/app${context.language.fileExtension}` as the root UI component by default. For more information, read [App Configuration and Startup](../fundamentals/app-configuration-and-startup).
118+
As a brief recap, remember that almost nothing we've done so far is Aurelia-specific. Almost all the code we've written is just vanilla ${context.language.name}. There is `src/main${context.language.fileExtension}` file which is the starting point of your app, it conventionally use `src/app${context.language.fileExtension}` as the root UI component by default. For more information, read [App Configuration and Startup](../docs/fundamentals/app-configuration-and-startup).
119119

120120
In order to render, we need to create a view for the `app` component. This introduces the next convention of Aurelia. To create a view for any class, simply create an HTML file with the same name as the ${context.language.name} module but change the file extension to `.html`. Inside that view, you can place an HTML 5 template with *data binding expressions* declaring how the view should render an instance of the class. Let's start with a very basic view of our `app`, overwrite `src/app.html` provided by the skeleton.
121121

0 commit comments

Comments
 (0)