├── CNAME ├── _action_files ├── __init__.py ├── word2post.py ├── parse_netlify.py ├── Dockerfile ├── fastpages.tpl ├── pr_comment.sh ├── hide.tpl ├── settings.ini ├── fast_template.py ├── word2post.sh ├── nb2post.py └── action_entrypoint.sh ├── _layouts ├── notebook.html ├── categories.html ├── home.html └── post.html ├── favicon.ico ├── _checkbox.png ├── _includes ├── favicons.html ├── note.html ├── tip.html ├── twitter.html ├── warning.html ├── important.html ├── info.html ├── alert.html ├── youtube.html ├── screenshot ├── reading_time.html ├── image ├── post_list.html ├── image-r ├── utterances.html ├── notebook_colab_link.html ├── notebook_github_link.html ├── google_analytics.html ├── post_list_image_card.html ├── toc.html ├── head.html └── social.html ├── images ├── logo.png ├── diagram.png ├── chart-preview.png └── copied_from_nb │ └── README.md ├── _notebooks ├── my_icons │ └── fastai_logo.png ├── README.md ├── 2020-02-27-My-first-post.ipynb ├── 2020-02-21-introducing-fastpages.ipynb └── 2020-02-20-test.ipynb ├── .gitignore ├── about.md ├── 404.html ├── _posts ├── README.md └── 2020-01-14-test-markdown-post.md ├── search.html ├── .github ├── workflows │ ├── gh-page.yaml │ ├── ci.yaml │ ├── setup.yaml │ └── chatops.yaml └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug.md ├── action.yml ├── index.md ├── tags.html ├── docker-compose.yml ├── Makefile ├── Gemfile ├── _word └── README.md ├── _config.yml ├── _manual_setup.md ├── _setup_pr_template.md ├── assets ├── js │ ├── search.js │ └── vendor │ │ └── lunr.min.js └── main.scss ├── README_TEMPLATE.md ├── DEVELOPMENT.md ├── CONTRIBUTING.md ├── Gemfile.lock ├── LICENSE └── README.md /CNAME: -------------------------------------------------------------------------------- 1 | fastpages.fast.ai 2 | -------------------------------------------------------------------------------- /_action_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_layouts/notebook.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanklopper/business-data-insight.github.io/master/favicon.ico -------------------------------------------------------------------------------- /_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanklopper/business-data-insight.github.io/master/_checkbox.png -------------------------------------------------------------------------------- /_includes/favicons.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanklopper/business-data-insight.github.io/master/images/logo.png -------------------------------------------------------------------------------- /images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanklopper/business-data-insight.github.io/master/images/diagram.png -------------------------------------------------------------------------------- /_layouts/categories.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
" | remove: "" %}
2 | " | remove: "" | split: "/" | last %}
2 | Page not found :(
23 |The requested page could not be found.
24 |{{ super() }}
14 |{{ super() }}
19 |{{ page.description | escape }}
10 | {%- endif -%} 11 | 32 | 33 | {% if page.categories.size > 0 and site.show_tags %} 34 | 40 | {% endif %} 41 | 42 | {% if page.layout == 'notebook' %} 43 | {% if page.badges or page.badges == nil %} 44 |Search results for '" + term + "'
" + document.getElementById('lunrsearchresults').innerHTML; 35 | //put results on the screen. 36 | var results = idx.search(term); 37 | if(results.length>0){ 38 | //console.log(idx.search(term)); 39 | //if results 40 | for (var i = 0; i < results.length; i++) { 41 | // more statements 42 | var ref = results[i]['ref']; 43 | var url = documents[ref]['url']; 44 | var title = documents[ref]['title']; 45 | var body = documents[ref]['body'].substring(0,160)+'...'; 46 | document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML = document.querySelectorAll('#lunrsearchresults ul')[0].innerHTML + "| \n", 327 | " | Title | \n", 328 | "Worldwide_Gross | \n", 329 | "Production_Budget | \n", 330 | "IMDB_Rating | \n", 331 | "
|---|---|---|---|---|
| 0 | \n", 336 | "The Land Girls | \n", 337 | "146083.0 | \n", 338 | "8000000.0 | \n", 339 | "6.1 | \n", 340 | "
| 1 | \n", 343 | "First Love, Last Rites | \n", 344 | "10876.0 | \n", 345 | "300000.0 | \n", 346 | "6.9 | \n", 347 | "
| 2 | \n", 350 | "I Married a Strange Person | \n", 351 | "203134.0 | \n", 352 | "250000.0 | \n", 353 | "6.8 | \n", 354 | "
| 3 | \n", 357 | "Let's Talk About Sex | \n", 358 | "373615.0 | \n", 359 | "300000.0 | \n", 360 | "NaN | \n", 361 | "
| 4 | \n", 364 | "Slam | \n", 365 | "1087521.0 | \n", 366 | "1000000.0 | \n", 367 | "3.4 | \n", 368 | "
| \n", 462 | " | Title | \n", 463 | "Worldwide_Gross | \n", 464 | "Production_Budget | \n", 465 | "IMDB_Rating | \n", 466 | "
|---|---|---|---|---|
| 0 | \n", 471 | "The Land Girls | \n", 472 | "146083.0 | \n", 473 | "8000000.0 | \n", 474 | "6.1 | \n", 475 | "
| 1 | \n", 478 | "First Love, Last Rites | \n", 479 | "10876.0 | \n", 480 | "300000.0 | \n", 481 | "6.9 | \n", 482 | "
| 2 | \n", 485 | "I Married a Strange Person | \n", 486 | "203134.0 | \n", 487 | "250000.0 | \n", 488 | "6.8 | \n", 489 | "
| 3 | \n", 492 | "Let's Talk About Sex | \n", 493 | "373615.0 | \n", 494 | "300000.0 | \n", 495 | "NaN | \n", 496 | "
| 4 | \n", 499 | "Slam | \n", 500 | "1087521.0 | \n", 501 | "1000000.0 | \n", 502 | "3.4 | \n", 503 | "