diff options
Diffstat (limited to 'ibb/Main.hs')
-rw-r--r-- | ibb/Main.hs | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/ibb/Main.hs b/ibb/Main.hs index 91112f0..bbc5776 100644 --- a/ibb/Main.hs +++ b/ibb/Main.hs @@ -38,7 +38,7 @@ allPeople = [ Person { _name = "Joe Rogan" , _pic = "https://pbs.twimg.com/profile_images/552307347851210752/vrXDcTFC_400x400.jpeg" , _twitter = "joerogan" - , _website = "joerogan.com" + , _website = "http://joerogan.com" , _books = [ Book {_title = "Food of the Gods" , _author = "Terence McKenna" , _link = "https://www.amazon.com/Food-Gods-Original-Knowledge-Evolution/dp/0553371304" @@ -52,7 +52,7 @@ allPeople = , Person { _name = "Beyoncé" , _pic = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTxT84sF19lxdnSiblIXAp-Y4wAigpQn8sZ2GtAerIR_ApiiEJfFQ" , _twitter = "Beyonce" - , _website = "beyonce.com" + , _website = "http://beyonce.com" , _books = [ Book { _title = "What Will It Take To Make A Woman President?" , _author = "Marianne Schnall" , _link = "https://www.amazon.com/dp/B00E257Y7G/ref=dp-kindle-redirect?_encoding=UTF8&btkr="} @@ -61,7 +61,7 @@ allPeople = , Person { _name = "Barrack Obama" , _pic = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQeLzftR36p0hYI-EKNa5fm7CYDuN-vyz23_R48ocqa8X1nPr6C" , _twitter = "BarackObama" - , _website = "barackobama.com" + , _website = "http://barackobama.com" , _books = [ Book { _title = "An American Marriage" , _author = "Tayari Jones" , _link = "https://www.amazon.com/American-Marriage-Novel-Oprahs-Selection-ebook/dp/B01NCUXEFR"} @@ -73,25 +73,27 @@ allPeople = , Person { _name = "Warren Buffet" , _pic = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQQbmnUykS6zqgzaf44tsq1RAsnHe6H7fapEoSqUwAoJGSFKbAPSw" , _twitter = "WarrenBuffett" - , _website = "berkshirehathaway.com" + , _website = "http://berkshirehathaway.com" , _books = [ Book { _title = "The Intelligent Investor" , _author = "Benjamin Graham" , _link = "https://www.amazon.com/dp/B000FC12C8/ref=dp-kindle-redirect?_encoding=UTF8&btkr=1"} , Book { _title = "Security Analysis" - , _author = "enjamin Graham" + , _author = "Benjamin Graham" , _link = "https://www.amazon.com/Security-Analysis-Foreword-Buffett-Editions-ebook/dp/B0037JO5J8"} ] } - , Person { _name = "Micheal Jordan" - , _pic = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfl_Dm2RUhknIxGEafGOlQC7Jj3Ky0nyQYk6GvG791sClzwFQb" - , _twitter = "" - , _website = "michaeljordansworld.com" - , _books = [ Book { _title = "Statistical Inference" - , _author = "George Casella" - , _link = "https://www.amazon.com/Statistical-Inference-George-Casella/dp/0534243126"} - , Book { _title = "A Course In Large Sample Therapy" - , _author = "Thomas S. Ferguson" - , _link = "https://www.amazon.com/Course-Sample-Chapman-Statistical-Science/dp/041204371"} + , Person { _name = "Bill Gates" + , _pic = "https://pbs.twimg.com/profile_images/988775660163252226/XpgonN0X_400x400.jpg" + , _twitter = "BillGates" + , _website = "https://www.gatesnotes.com" + , _books = [ Book { _title = "Leonardo da Vinci" + , _author = "Walter Isaacson" + , _link = "https://www.amazon.com/Leonardo-Vinci-Walter-Isaacson/dp/1501139169/ref=sr_1_1_sspa?s=digital-text&ie=UTF8&qid=1549043782&sr=1-1-spons&keywords=leonardo+da+vinci+by+walter+isaacson&psc=1" + } + , Book { _title = "Educated" + , _author = "Tara Wetsover" + , _link = "https://www.amazon.com/Educated-Memoir-Tara-Westover-ebook/dp/B072BLVM83/ref=sr_1_1?ie=UTF8&qid=1549044230&sr=8-1&keywords=education+tara+westover" + } ] } ] @@ -102,7 +104,9 @@ displayPerson person = [shamlet| <h4>#{_name person} <ul> $forall book <- (_books person) - <li><a href=#{_link book} class="text-dark">#{_title book} + <li><a href=#{_link book} class="text-dark">#{_title book}</a> + <div .card-footer> + <a .btn href=#{_website person}>Personal Website |] homepage = [shamlet| |