Awesome
Seaside-Bootstrap4
Bootstrap 4 wrapper for Seaside for Pharo 8 based on 4.0 from http://bootstrap.rtlcss.com/
IMPORTANT: Note that there already is a newer repo: https://github.com/astares/Seaside-Bootstrap5
Installation
First install Pharo on your machine. Pharo 8 onwards is recommended. Either using PharoLauncher or Pharo ZeroConf:
Load Pharo using ZeroConf
wget -O- get.pharo.org/64/80+vm | bash
./pharo-ui Pharo.image
Load all in one
Metacello new
baseline:'Bootstrap4';
repository: 'github://astares/Seaside-Bootstrap4:master/src';
load
Load Seaside and then manually
Metacello new
baseline:'Seaside3';
repository: 'github://SeasideSt/Seaside:develop/repository';
load.
and then load the packages you need using Iceberg
Run
Start the web server for Seaside - for instance with Zinc evaluate
ZnZincServerAdaptor startOn: 8080.
WebBrowser openOn: 'http://localhost:8080/bootstrap4/'
Learn
Migration from Bootstrap 3 to 4
- the prefix is gone, so use container instead of tbsContainer, etc.
- use formButton or outlineButton instead of tbsButton
- buttons do not have beExtraSmall and beExtraSmallIf: styles anymore
- breadcrumb section is now called breadcrumb item