Skip to content

Commit

Permalink
Adapt the Welcome docs a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrichau committed Jul 13, 2024
1 parent 4e2dd63 commit 1182f6e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.' ] ]
Original file line number Diff line number Diff line change
Expand Up @@ -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.' ] ]
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/' ] ]

0 comments on commit 1182f6e

Please sign in to comment.