diff --git a/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderDocumentationStepOn..st b/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderDocumentationStepOn..st index 25b653202..2ffca3769 100644 --- a/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderDocumentationStepOn..st +++ b/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderDocumentationStepOn..st @@ -11,9 +11,15 @@ renderDocumentationStepOn: html url: 'http://book.seaside.st/'; with: 'Seaside Book'. html text: ' will teach you all you need to know about Seaside and how to build killer web applications.' ]. + html listItem: [ + html text: 'The '. + html anchor + url: 'https://github.com/SeasideSt/Seaside/wiki'; + with: 'Seaside Github wiki'. + html text: ' is where we keep our most up-to-date reference documentation.' ]. html listItem: [ html text: 'The '. html anchor - url: 'http://www.swa.hpi.uni-potsdam.de/seaside/tutorial'; + url: 'http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial/'; with: 'Seaside Tutorial'. html text: ' has 12 chapters and introduces a sample application to explain the main features of Seaside.' ] ] \ No newline at end of file diff --git a/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderExamplesStepOn..st b/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderExamplesStepOn..st index 910daf557..7fc8c3040 100644 --- a/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderExamplesStepOn..st +++ b/repository/Seaside-Welcome.package/WAWelcomeGettingStarted.class/instance/renderExamplesStepOn..st @@ -20,4 +20,13 @@ renderExamplesStepOn: html html anchor callback: [ self show: WAWelcomeExampleFlow new ]; with: 'Task'. - html text: ', illustrating Seaside''s innovative approach to application control flow.' ] ] \ No newline at end of file + html text: ', illustrating Seaside''s innovative approach to application control flow.' ]. + html listItem: [ + html anchor + callback: [ self show: WATodo new ]; + with: 'Todo'. + html text: ', the Seaside implementation of the example on '. + html anchor + url: 'https://todomvc.com/'; + target: '_blank'; + with: 'https://todomvc.com/' ] ] \ No newline at end of file