├── _includes
├── footer.html
├── scripts.html
├── home.html
└── gen
│ └── mar_15
│ ├── future_bangladesh.html
│ └── express_opinion.html
├── .gitattributes
├── home.html
├── bower_components
├── nvd3
│ └── src
│ │ ├── outro.js
│ │ └── intro.js
├── jquery
│ ├── src
│ │ ├── outro.js
│ │ ├── selector.js
│ │ ├── var
│ │ │ ├── arr.js
│ │ │ ├── rnotwhite.js
│ │ │ ├── strundefined.js
│ │ │ ├── push.js
│ │ │ ├── slice.js
│ │ │ ├── class2type.js
│ │ │ ├── concat.js
│ │ │ ├── indexOf.js
│ │ │ ├── pnum.js
│ │ │ ├── hasOwn.js
│ │ │ ├── toString.js
│ │ │ └── support.js
│ │ ├── ajax
│ │ │ ├── var
│ │ │ │ ├── rquery.js
│ │ │ │ └── nonce.js
│ │ │ ├── parseJSON.js
│ │ │ └── parseXML.js
│ │ ├── css
│ │ │ ├── var
│ │ │ │ ├── rmargin.js
│ │ │ │ ├── cssExpand.js
│ │ │ │ ├── rnumnonpx.js
│ │ │ │ ├── isHidden.js
│ │ │ │ └── getStyles.js
│ │ │ ├── hiddenVisibleSelectors.js
│ │ │ ├── addGetHookIf.js
│ │ │ └── swap.js
│ │ ├── manipulation
│ │ │ ├── var
│ │ │ │ └── rcheckableType.js
│ │ │ └── _evalUrl.js
│ │ ├── data
│ │ │ ├── var
│ │ │ │ ├── data_priv.js
│ │ │ │ └── data_user.js
│ │ │ └── accepts.js
│ │ ├── core
│ │ │ └── var
│ │ │ │ └── rsingleTag.js
│ │ ├── traversing
│ │ │ └── var
│ │ │ │ └── rneedsContext.js
│ │ ├── event
│ │ │ ├── support.js
│ │ │ └── ajax.js
│ │ ├── attributes.js
│ │ ├── deprecated.js
│ │ ├── effects
│ │ │ └── animatedSelector.js
│ │ ├── selector-sizzle.js
│ │ ├── queue
│ │ │ └── delay.js
│ │ ├── jquery.js
│ │ └── exports
│ │ │ └── global.js
│ └── bower.json
├── font-awesome
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── less
│ │ ├── fixed-width.less
│ │ ├── bordered-pulled.less
│ │ ├── larger.less
│ │ ├── list.less
│ │ ├── font-awesome.less
│ │ ├── core.less
│ │ ├── stacked.less
│ │ ├── rotated-flipped.less
│ │ ├── path.less
│ │ └── animated.less
│ ├── scss
│ │ ├── _fixed-width.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── font-awesome.scss
│ │ ├── _core.scss
│ │ ├── _stacked.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _path.scss
│ │ └── _animated.scss
│ ├── .gitignore
│ ├── bower.json
│ ├── .npmignore
│ └── .bower.json
├── bootstrap
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── grunt
│ │ └── .jshintrc
│ ├── dist
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ │ └── npm.js
│ ├── less
│ │ ├── mixins
│ │ │ ├── center-block.less
│ │ │ ├── text-emphasis.less
│ │ │ ├── size.less
│ │ │ ├── background-variant.less
│ │ │ ├── opacity.less
│ │ │ ├── text-overflow.less
│ │ │ ├── tab-focus.less
│ │ │ ├── labels.less
│ │ │ ├── resize.less
│ │ │ ├── progress-bar.less
│ │ │ ├── nav-divider.less
│ │ │ ├── reset-filter.less
│ │ │ ├── alerts.less
│ │ │ ├── nav-vertical-align.less
│ │ │ ├── responsive-visibility.less
│ │ │ ├── pagination.less
│ │ │ ├── border-radius.less
│ │ │ ├── panels.less
│ │ │ ├── list-group.less
│ │ │ ├── hide-text.less
│ │ │ ├── clearfix.less
│ │ │ └── table-row.less
│ │ ├── .csslintrc
│ │ ├── wells.less
│ │ ├── breadcrumbs.less
│ │ ├── responsive-embed.less
│ │ └── component-animations.less
│ └── js
│ │ └── .jshintrc
├── d3
│ ├── .gitattributes
│ ├── package.js
│ ├── bower.json
│ ├── README.md
│ └── .bower.json
└── metisMenu
│ ├── bower.json
│ └── dist
│ └── metisMenu.min.css
├── index.html
├── _layouts
├── default.html
├── home.html
├── .html
└── gen
│ ├── direction_f2f.html
│ ├── direction_catss.html
│ ├── statement_jan_5.html
│ ├── dec_14
│ ├── attitude_rab.html
│ ├── attitude_police.html
│ ├── today_vote_for.html
│ ├── attitude_anti_cc.html
│ ├── women_leadership.html
│ ├── attitude_bangladesh_ec.html
│ ├── attitude_supreme_court.html
│ ├── economic_situation_past.html
│ ├── attitude_bangladesh_military.html
│ ├── attitude_national_parliament.html
│ ├── attitude_towards_-_hm_ershad.html
│ ├── economic_situation_current.html
│ ├── statement_on_jan5_election.html
│ ├── women_involvement_politics.html
│ ├── attitude_towards_-_tareque_zia.html
│ ├── attitude_towards_-_sheikh_hasina.html
│ ├── credibility_of_current_government.html
│ ├── performance_-_al_as_ruling_party.html
│ ├── statement_on_bnp_election_boycott.html
│ ├── attitude_towards_-_sajeeb_wazed_joy.html
│ ├── which_party_better_woman_leadership.html
│ ├── attitude_towards_-_begum_khaleda_zia.html
│ ├── attitude_towards_-_syed_ashraful_islam.html
│ ├── performance_-_bnp_as_political_party.html
│ ├── attitude_towards_-_begum_rowshan_ershad.html
│ ├── attitude_towards_-_ziauddin_ahmed_bablu.html
│ ├── performance_-_hm_ershad_as_jp_president.html
│ ├── importance_of_youth_involvement_in_politics.html
│ ├── performance_-_jp_as_opposition_in_parliament.html
│ ├── _attitude_towards_-_mirza_fakhrul_islam_alamgir.html
│ ├── performance_-_shekikh_hasina_as_prime_minister.html
│ ├── performance_-_begum_khaleda_zia_as_bnp_chairperson.html
│ ├── political_party_that_can_accomplish_-_curb_terrorism.html
│ ├── political_party_that_can_accomplish_-_poverty_reduction.html
│ ├── political_party_that_can_accomplish_-_rural_development.html
│ ├── performance_-_syed_asraful_islam_as_al_general_secretary.html
│ ├── performance_-_ziauddin_ahmed_bablu_as_jp_secretary_general.html
│ ├── political_party_that_can_accomplish_-_local_job_creation.html
│ ├── performance_-_mirza_fakhrul_alamgir_as_bnp_secretary_general.html
│ ├── political_party_that_can_accomplish_-_increase_overseas_job.html
│ ├── political_party_that_can_accomplish_-_health_sector_improvement.html
│ ├── performance_-_begum_rowshan_ershad_as_leader_of_opposition_party.html
│ ├── political_party_that_can_accomplish_-_education_system_improvement.html
│ ├── political_party_that_can_accomplish_-_improvement_of_electricity_supply.html
│ ├── political_party_that_can_accomplish_-_improving_roads_and_transportation.html
│ ├── the_most_important_issue_that_political_parties_and_leaders_should_focus_on.html
│ ├── political_party_that_can_accomplish_-_improvement_of_law_and_order_situation.html
│ └── political_party_that_can_accomplish_-_price_controlling_of_essential_commodities.html
│ ├── mar_15
│ ├── fair_mediator.html
│ ├── express_opinion.html
│ ├── future_bangladesh.html
│ ├── likely_to_vote_al.html
│ ├── likely_to_vote_bnp.html
│ ├── next_national_election.html
│ └── responsible_party_violence.html
│ ├── statement_bnp_boycott.html
│ ├── credibility_divisionwise.html
│ ├── dec_14_ct
│ ├── direction_catss.html
│ ├── direction_f2f.html
│ ├── statement_jan_5.html
│ ├── main_problem_area_wise.html
│ ├── statement_bnp_boycott.html
│ ├── attitude_acc_divisionwise.html
│ ├── attitude_rab_divisionwise.html
│ ├── credibility_divisionwise.html
│ ├── performance_khaleda_zia.html
│ ├── performance_mirza_fakhrul.html
│ ├── performance_sheikh_hasina.html
│ ├── vote_election_today_catss.html
│ ├── vote_election_today_f2f.html
│ ├── highest_potential_area_wise.html
│ ├── main_problem_division_wise.html
│ ├── performance_ziauddin_ahmed.html
│ ├── attitude_military_divisionwise.html
│ ├── attitude_police_divisionwise.html
│ ├── election_likey_vote_areawise.html
│ ├── election_likey_vote_byagegroup.html
│ ├── election_likey_vote_genderwise.html
│ ├── performance_hm_ershad_as_pres.html
│ ├── performance_syad_asraful_islam.html
│ ├── economic_situation_now_areawise.html
│ ├── highest_potential_division_wise.html
│ ├── importance_of_women_in_politics.html
│ ├── attitude_supreme_court_divisionwise.html
│ ├── economic_situation_now_divisionwise.html
│ ├── economic_situation_now_genderwise.html
│ ├── performance_sheikh_hasina_as_pres.html
│ ├── attitude_election_commision_divisionwise.html
│ ├── economic_situation_before_divisionwise.html
│ ├── attitude_national_parliament_divisionwise.html
│ ├── Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html
│ └── By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html
│ ├── performance_khaleda_zia.html
│ ├── vote_election_today_f2f.html
│ ├── attitude_acc_divisionwise.html
│ ├── attitude_rab_divisionwise.html
│ ├── dec_14_others
│ ├── main_problem.html
│ └── highest_potential.html
│ ├── highest_potential_area_wise.html
│ ├── main_problem_division_wise.html
│ ├── performance_mirza_fakhrul.html
│ ├── performance_sheikh_hasina.html
│ ├── performance_ziauddin_ahmed.html
│ ├── vote_election_today_catss.html
│ ├── attitude_police_divisionwise.html
│ ├── election_likey_vote_areawise.html
│ ├── feb_15
│ ├── feb_15_law_for_hartal.html
│ ├── feb_15_govt_stop_violence.html
│ ├── feb_15_statement_bnp_demand.html
│ ├── feb_15_violence_in_protests.html
│ └── feb_15_statement_bnp_demand_met.html
│ ├── mar_15_ct
│ ├── feel_free_to_by_area.html
│ ├── future_bangladesh_by_area.html
│ ├── future_bangladesh_by_division.html
│ └── responsible_for_violence_by_division.html
│ ├── performance_hm_ershad_as_pres.html
│ ├── attitude_military_divisionwise.html
│ ├── economic_situation_now_areawise.html
│ ├── election_likey_vote_byagegroup.html
│ ├── election_likey_vote_genderwise.html
│ ├── highest_potential_division_wise.html
│ ├── importance_of_women_in_politics.html
│ ├── long_dec14_mar_15
│ ├── direction_f2f.html
│ ├── direction_catss.html
│ ├── vote_election_today_f2f.html
│ └── vote_election_today_catss.html
│ ├── performance_syad_asraful_islam.html
│ ├── economic_situation_now_genderwise.html
│ ├── performance_sheikh_hasina_as_pres.html
│ ├── attitude_supreme_court_divisionwise.html
│ ├── economic_situation_now_divisionwise.html
│ ├── economic_situation_before_divisionwise.html
│ ├── attitude_election_commision_divisionwise.html
│ ├── attitude_national_parliament_divisionwise.html
│ └── By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html
├── _site
├── bower_components
│ ├── nvd3
│ │ └── src
│ │ │ ├── outro.js
│ │ │ └── intro.js
│ ├── jquery
│ │ ├── src
│ │ │ ├── outro.js
│ │ │ ├── selector.js
│ │ │ ├── var
│ │ │ │ ├── arr.js
│ │ │ │ ├── rnotwhite.js
│ │ │ │ ├── strundefined.js
│ │ │ │ ├── push.js
│ │ │ │ ├── slice.js
│ │ │ │ ├── class2type.js
│ │ │ │ ├── concat.js
│ │ │ │ ├── indexOf.js
│ │ │ │ ├── pnum.js
│ │ │ │ ├── toString.js
│ │ │ │ ├── hasOwn.js
│ │ │ │ └── support.js
│ │ │ ├── ajax
│ │ │ │ ├── var
│ │ │ │ │ ├── rquery.js
│ │ │ │ │ └── nonce.js
│ │ │ │ ├── parseJSON.js
│ │ │ │ └── parseXML.js
│ │ │ ├── css
│ │ │ │ ├── var
│ │ │ │ │ ├── rmargin.js
│ │ │ │ │ ├── cssExpand.js
│ │ │ │ │ ├── rnumnonpx.js
│ │ │ │ │ ├── isHidden.js
│ │ │ │ │ └── getStyles.js
│ │ │ │ ├── hiddenVisibleSelectors.js
│ │ │ │ ├── addGetHookIf.js
│ │ │ │ └── swap.js
│ │ │ ├── data
│ │ │ │ ├── var
│ │ │ │ │ ├── data_priv.js
│ │ │ │ │ └── data_user.js
│ │ │ │ └── accepts.js
│ │ │ ├── manipulation
│ │ │ │ └── var
│ │ │ │ │ └── rcheckableType.js
│ │ │ ├── core
│ │ │ │ └── var
│ │ │ │ │ └── rsingleTag.js
│ │ │ ├── traversing
│ │ │ │ └── var
│ │ │ │ │ └── rneedsContext.js
│ │ │ ├── event
│ │ │ │ ├── support.js
│ │ │ │ └── ajax.js
│ │ │ ├── attributes.js
│ │ │ ├── deprecated.js
│ │ │ ├── effects
│ │ │ │ └── animatedSelector.js
│ │ │ ├── selector-sizzle.js
│ │ │ ├── queue
│ │ │ │ └── delay.js
│ │ │ ├── jquery.js
│ │ │ └── exports
│ │ │ │ └── global.js
│ │ └── bower.json
│ ├── font-awesome
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ │ ├── less
│ │ │ ├── fixed-width.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── font-awesome.less
│ │ │ ├── core.less
│ │ │ ├── stacked.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── path.less
│ │ │ └── animated.less
│ │ ├── scss
│ │ │ └── font-awesome.scss
│ │ └── bower.json
│ ├── bootstrap
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── less
│ │ │ ├── mixins
│ │ │ │ ├── center-block.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── size.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── alerts.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── clearfix.less
│ │ │ │ └── table-row.less
│ │ │ ├── wells.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── responsive-embed.less
│ │ │ └── component-animations.less
│ │ └── dist
│ │ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ └── npm.js
│ ├── d3
│ │ ├── package.js
│ │ ├── bower.json
│ │ └── README.md
│ └── metisMenu
│ │ ├── bower.json
│ │ └── dist
│ │ └── metisMenu.min.css
├── dec_14__attitude_towards_-_mirza_fakhrul_islam_alamgir.html
├── Gemfile
├── img
│ ├── flag.png
│ ├── logo.png
│ ├── logo_bar.png
│ ├── AfSurvLanding.jpg
│ ├── AfSurvBackground.jpg
│ ├── DI-Logo-with-Text-Transparent.png
│ └── DI-Logo-with-Text-Transparent-gray.png
├── makefile
├── bower.json
├── README.md
└── data
│ └── latest
│ └── condition.json
├── .bowerrc
├── _direction_f2f.html
├── _direction_catss.html
├── _statement_jan_5.html
├── dec_14_attitude_rab.html
├── mar_15_fair_mediator.html
├── _statement_bnp_boycott.html
├── dec_14_attitude_police.html
├── dec_14_today_vote_for.html
├── img
├── flag.png
├── logo.png
├── logo_bar.png
├── AfSurvLanding.jpg
├── AfSurvBackground.jpg
├── DI-Logo-with-Text-Transparent.png
└── DI-Logo-with-Text-Transparent-gray.png
├── mar_15_express_opinion.html
├── Gemfile
├── _credibility_divisionwise.html
├── _performance_khaleda_zia.html
├── _vote_election_today_f2f.html
├── dec_14_attitude_anti_cc.html
├── dec_14_ct_direction_catss.html
├── dec_14_ct_direction_f2f.html
├── dec_14_ct_statement_jan_5.html
├── dec_14_women_leadership.html
├── mar_15_future_bangladesh.html
├── mar_15_likely_to_vote_al.html
├── mar_15_likely_to_vote_bnp.html
├── _attitude_acc_divisionwise.html
├── _attitude_rab_divisionwise.html
├── _main_problem_division_wise.html
├── _performance_mirza_fakhrul.html
├── _performance_sheikh_hasina.html
├── _performance_ziauddin_ahmed.html
├── _vote_election_today_catss.html
├── dec_14_others_main_problem.html
├── _attitude_police_divisionwise.html
├── _election_likey_vote_areawise.html
├── _highest_potential_area_wise.html
├── _performance_hm_ershad_as_pres.html
├── dec_14_attitude_bangladesh_ec.html
├── dec_14_attitude_supreme_court.html
├── dec_14_economic_situation_past.html
├── feb_15_feb_15_law_for_hartal.html
├── mar_15_ct_feel_free_to_by_area.html
├── mar_15_next_national_election.html
├── _attitude_military_divisionwise.html
├── _economic_situation_now_areawise.html
├── _election_likey_vote_byagegroup.html
├── _election_likey_vote_genderwise.html
├── _highest_potential_division_wise.html
├── _importance_of_women_in_politics.html
├── _performance_syad_asraful_islam.html
├── dec_14_ct_main_problem_area_wise.html
├── dec_14_ct_statement_bnp_boycott.html
├── dec_14_others_highest_potential.html
├── feb_15_feb_15_govt_stop_violence.html
├── long_dec14_mar_15_direction_f2f.html
├── makefile
├── _economic_situation_now_genderwise.html
├── _performance_sheikh_hasina_as_pres.html
├── bower.json
├── dec_14_attitude_bangladesh_military.html
├── dec_14_attitude_national_parliament.html
├── dec_14_attitude_towards_-_hm_ershad.html
├── dec_14_ct_attitude_acc_divisionwise.html
├── dec_14_ct_attitude_rab_divisionwise.html
├── dec_14_ct_credibility_divisionwise.html
├── dec_14_ct_performance_khaleda_zia.html
├── dec_14_ct_performance_mirza_fakhrul.html
├── dec_14_ct_performance_sheikh_hasina.html
├── dec_14_ct_vote_election_today_catss.html
├── dec_14_ct_vote_election_today_f2f.html
├── dec_14_economic_situation_current.html
├── dec_14_statement_on_jan5_election.html
├── dec_14_women_involvement_politics.html
├── feb_15_feb_15_statement_bnp_demand.html
├── feb_15_feb_15_violence_in_protests.html
├── long_dec14_mar_15_direction_catss.html
├── mar_15_ct_future_bangladesh_by_area.html
├── mar_15_responsible_party_violence.html
├── _attitude_supreme_court_divisionwise.html
├── _economic_situation_now_divisionwise.html
├── dec_14_attitude_towards_-_tareque_zia.html
├── dec_14_ct_highest_potential_area_wise.html
├── dec_14_ct_main_problem_division_wise.html
├── dec_14_ct_performance_ziauddin_ahmed.html
├── _economic_situation_before_divisionwise.html
├── dec_14_attitude_towards_-_sheikh_hasina.html
├── dec_14_credibility_of_current_government.html
├── dec_14_ct_attitude_military_divisionwise.html
├── dec_14_ct_attitude_police_divisionwise.html
├── dec_14_ct_election_likey_vote_areawise.html
├── dec_14_ct_election_likey_vote_byagegroup.html
├── dec_14_ct_election_likey_vote_genderwise.html
├── dec_14_ct_performance_hm_ershad_as_pres.html
├── dec_14_ct_performance_syad_asraful_islam.html
├── dec_14_performance_-_al_as_ruling_party.html
├── dec_14_statement_on_bnp_election_boycott.html
├── feb_15_feb_15_statement_bnp_demand_met.html
├── mar_15_ct_future_bangladesh_by_division.html
├── _attitude_election_commision_divisionwise.html
├── _attitude_national_parliament_divisionwise.html
├── dec_14_attitude_towards_-_sajeeb_wazed_joy.html
├── dec_14_ct_economic_situation_now_areawise.html
├── dec_14_ct_highest_potential_division_wise.html
├── dec_14_ct_importance_of_women_in_politics.html
├── dec_14_which_party_better_woman_leadership.html
├── long_dec14_mar_15_vote_election_today_f2f.html
├── dec_14_attitude_towards_-_begum_khaleda_zia.html
├── dec_14_attitude_towards_-_syed_ashraful_islam.html
├── dec_14_ct_attitude_supreme_court_divisionwise.html
├── dec_14_ct_economic_situation_now_divisionwise.html
├── dec_14_ct_economic_situation_now_genderwise.html
├── dec_14_ct_performance_sheikh_hasina_as_pres.html
├── dec_14_performance_-_bnp_as_political_party.html
├── long_dec14_mar_15_vote_election_today_catss.html
├── dec_14_attitude_towards_-_begum_rowshan_ershad.html
├── dec_14_attitude_towards_-_ziauddin_ahmed_bablu.html
├── dec_14_performance_-_hm_ershad_as_jp_president.html
├── mar_15_ct_responsible_for_violence_by_division.html
├── README.md
├── dec_14_ct_attitude_election_commision_divisionwise.html
├── dec_14_ct_economic_situation_before_divisionwise.html
├── dec_14_importance_of_youth_involvement_in_politics.html
├── dec_14_ct_attitude_national_parliament_divisionwise.html
├── dec_14_performance_-_jp_as_opposition_in_parliament.html
├── dec_14__attitude_towards_-_mirza_fakhrul_islam_alamgir.html
├── dec_14_performance_-_shekikh_hasina_as_prime_minister.html
├── dec_14_performance_-_begum_khaleda_zia_as_bnp_chairperson.html
├── dec_14_political_party_that_can_accomplish_-_curb_terrorism.html
├── dec_14_political_party_that_can_accomplish_-_poverty_reduction.html
├── dec_14_political_party_that_can_accomplish_-_rural_development.html
├── _config.build.yml
├── dec_14_performance_-_syed_asraful_islam_as_al_general_secretary.html
├── dec_14_performance_-_ziauddin_ahmed_bablu_as_jp_secretary_general.html
├── dec_14_political_party_that_can_accomplish_-_local_job_creation.html
├── dec_14_performance_-_mirza_fakhrul_alamgir_as_bnp_secretary_general.html
├── dec_14_political_party_that_can_accomplish_-_increase_overseas_job.html
├── dec_14_political_party_that_can_accomplish_-_health_sector_improvement.html
├── dec_14_performance_-_begum_rowshan_ershad_as_leader_of_opposition_party.html
├── dec_14_ct_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html
├── dec_14_political_party_that_can_accomplish_-_education_system_improvement.html
├── _By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html
├── dec_14_political_party_that_can_accomplish_-_improvement_of_electricity_supply.html
├── dec_14_political_party_that_can_accomplish_-_improving_roads_and_transportation.html
├── dec_14_the_most_important_issue_that_political_parties_and_leaders_should_focus_on.html
├── dec_14_political_party_that_can_accomplish_-_improvement_of_law_and_order_situation.html
├── dec_14_political_party_that_can_accomplish_-_price_controlling_of_essential_commodities.html
├── dec_14_ct_By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html
├── __links_dec_14_others.html
├── .editorconfig
├── data
└── latest
│ └── condition.json
├── .jshintrc
├── .gitignore
├── __links_mar_15_ct.html
└── __links_feb_15.html
/_includes/footer.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
--------------------------------------------------------------------------------
/home.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: home
3 | ---
--------------------------------------------------------------------------------
/bower_components/nvd3/src/outro.js:
--------------------------------------------------------------------------------
1 | })();
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
--------------------------------------------------------------------------------
/_layouts/default.html:
--------------------------------------------------------------------------------
1 | {% include landing.html %}
--------------------------------------------------------------------------------
/_site/bower_components/nvd3/src/outro.js:
--------------------------------------------------------------------------------
1 | })();
--------------------------------------------------------------------------------
/bower_components/jquery/src/outro.js:
--------------------------------------------------------------------------------
1 | }));
2 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/outro.js:
--------------------------------------------------------------------------------
1 | }));
2 |
--------------------------------------------------------------------------------
/bower_components/nvd3/src/intro.js:
--------------------------------------------------------------------------------
1 | (function(){
2 |
--------------------------------------------------------------------------------
/_site/bower_components/nvd3/src/intro.js:
--------------------------------------------------------------------------------
1 | (function(){
2 |
--------------------------------------------------------------------------------
/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "app/_bower_components"
3 | }
4 |
--------------------------------------------------------------------------------
/_site/dec_14__attitude_towards_-_mirza_fakhrul_islam_alamgir.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/_direction_f2f.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//direction_f2f
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_direction_catss.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//direction_catss
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_statement_jan_5.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//statement_jan_5
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/selector.js:
--------------------------------------------------------------------------------
1 | define([ "./selector-sizzle" ]);
2 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/selector.js:
--------------------------------------------------------------------------------
1 | define([ "./selector-sizzle" ]);
2 |
--------------------------------------------------------------------------------
/dec_14_attitude_rab.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_rab
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_fair_mediator.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15/fair_mediator
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_statement_bnp_boycott.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//statement_bnp_boycott
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [];
3 | });
4 |
--------------------------------------------------------------------------------
/dec_14_attitude_police.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_police
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_today_vote_for.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/today_vote_for
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/img/flag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/img/flag.png
--------------------------------------------------------------------------------
/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/img/logo.png
--------------------------------------------------------------------------------
/mar_15_express_opinion.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15/express_opinion
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source "http://rubygems.org"
2 |
3 | gem 'jekyll', '~>1.4.0'
4 | gem 'kramdown'
5 |
--------------------------------------------------------------------------------
/_credibility_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//credibility_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_performance_khaleda_zia.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//performance_khaleda_zia
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/arr.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [];
3 | });
4 |
--------------------------------------------------------------------------------
/_vote_election_today_f2f.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//vote_election_today_f2f
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_attitude_anti_cc.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_anti_cc
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_direction_catss.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/direction_catss
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_direction_f2f.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/direction_f2f
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_statement_jan_5.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/statement_jan_5
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_women_leadership.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/women_leadership
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_future_bangladesh.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15/future_bangladesh
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_likely_to_vote_al.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15/likely_to_vote_al
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_likely_to_vote_bnp.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15/likely_to_vote_bnp
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_attitude_acc_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//attitude_acc_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_attitude_rab_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//attitude_rab_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_main_problem_division_wise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//main_problem_division_wise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_performance_mirza_fakhrul.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//performance_mirza_fakhrul
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_performance_sheikh_hasina.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//performance_sheikh_hasina
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_performance_ziauddin_ahmed.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//performance_ziauddin_ahmed
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/Gemfile:
--------------------------------------------------------------------------------
1 | source "http://rubygems.org"
2 |
3 | gem 'jekyll', '~>1.4.0'
4 | gem 'kramdown'
5 |
--------------------------------------------------------------------------------
/_site/img/flag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/img/flag.png
--------------------------------------------------------------------------------
/_site/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/img/logo.png
--------------------------------------------------------------------------------
/_vote_election_today_catss.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//vote_election_today_catss
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/ajax/var/rquery.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\?/);
3 | });
4 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/rnotwhite.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\S+/g);
3 | });
4 |
--------------------------------------------------------------------------------
/dec_14_others_main_problem.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_others/main_problem
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/img/logo_bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/img/logo_bar.png
--------------------------------------------------------------------------------
/_attitude_police_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//attitude_police_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_election_likey_vote_areawise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//election_likey_vote_areawise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_highest_potential_area_wise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//highest_potential_area_wise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_performance_hm_ershad_as_pres.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//performance_hm_ershad_as_pres
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/var/rmargin.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^margin/);
3 | });
4 |
--------------------------------------------------------------------------------
/dec_14_attitude_bangladesh_ec.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_bangladesh_ec
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_attitude_supreme_court.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_supreme_court
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_economic_situation_past.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/economic_situation_past
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/feb_15_feb_15_law_for_hartal.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/feb_15/feb_15_law_for_hartal
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_ct_feel_free_to_by_area.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15_ct/feel_free_to_by_area
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_next_national_election.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15/next_national_election
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_attitude_military_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//attitude_military_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_economic_situation_now_areawise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//economic_situation_now_areawise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_election_likey_vote_byagegroup.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//election_likey_vote_byagegroup
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_election_likey_vote_genderwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//election_likey_vote_genderwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_highest_potential_division_wise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//highest_potential_division_wise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_importance_of_women_in_politics.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//importance_of_women_in_politics
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_performance_syad_asraful_islam.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//performance_syad_asraful_islam
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/ajax/var/rquery.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\?/);
3 | });
4 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/rnotwhite.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/\S+/g);
3 | });
4 |
--------------------------------------------------------------------------------
/_site/img/logo_bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/img/logo_bar.png
--------------------------------------------------------------------------------
/dec_14_ct_main_problem_area_wise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/main_problem_area_wise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_statement_bnp_boycott.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/statement_bnp_boycott
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_others_highest_potential.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_others/highest_potential
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/feb_15_feb_15_govt_stop_violence.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/feb_15/feb_15_govt_stop_violence
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/img/AfSurvLanding.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/img/AfSurvLanding.jpg
--------------------------------------------------------------------------------
/long_dec14_mar_15_direction_f2f.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/long_dec14_mar_15/direction_f2f
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/makefile:
--------------------------------------------------------------------------------
1 | main:
2 | rsync -avz -zz --no-perms _site/ mahmood@106.187.49.19:/srv/http/bbmeter/
3 |
4 |
5 |
--------------------------------------------------------------------------------
/_economic_situation_now_genderwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//economic_situation_now_genderwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_performance_sheikh_hasina_as_pres.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//performance_sheikh_hasina_as_pres
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/var/rmargin.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^margin/);
3 | });
4 |
--------------------------------------------------------------------------------
/_site/makefile:
--------------------------------------------------------------------------------
1 | main:
2 | rsync -avz -zz --no-perms _site/ mahmood@106.187.49.19:/srv/http/bbmeter/
3 |
4 |
5 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "banglabarometer",
3 | "version": "0.0.0",
4 | "dependencies": {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/strundefined.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return typeof undefined;
3 | });
4 |
--------------------------------------------------------------------------------
/dec_14_attitude_bangladesh_military.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_bangladesh_military
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_attitude_national_parliament.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_national_parliament
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_hm_ershad.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_hm_ershad
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_attitude_acc_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/attitude_acc_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_attitude_rab_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/attitude_rab_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_credibility_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/credibility_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_performance_khaleda_zia.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/performance_khaleda_zia
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_performance_mirza_fakhrul.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/performance_mirza_fakhrul
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_performance_sheikh_hasina.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/performance_sheikh_hasina
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_vote_election_today_catss.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/vote_election_today_catss
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_vote_election_today_f2f.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/vote_election_today_f2f
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_economic_situation_current.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/economic_situation_current
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_statement_on_jan5_election.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/statement_on_jan5_election
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_women_involvement_politics.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/women_involvement_politics
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/feb_15_feb_15_statement_bnp_demand.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/feb_15/feb_15_statement_bnp_demand
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/feb_15_feb_15_violence_in_protests.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/feb_15/feb_15_violence_in_protests
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/img/AfSurvBackground.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/img/AfSurvBackground.jpg
--------------------------------------------------------------------------------
/long_dec14_mar_15_direction_catss.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/long_dec14_mar_15/direction_catss
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_ct_future_bangladesh_by_area.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15_ct/future_bangladesh_by_area
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_responsible_party_violence.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15/responsible_party_violence
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_attitude_supreme_court_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//attitude_supreme_court_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_economic_situation_now_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//economic_situation_now_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/strundefined.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return typeof undefined;
3 | });
4 |
--------------------------------------------------------------------------------
/_site/img/AfSurvLanding.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/img/AfSurvLanding.jpg
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_tareque_zia.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_tareque_zia
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_highest_potential_area_wise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/highest_potential_area_wise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_main_problem_division_wise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/main_problem_division_wise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_performance_ziauddin_ahmed.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/performance_ziauddin_ahmed
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_economic_situation_before_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//economic_situation_before_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "banglabarometer",
3 | "version": "0.0.0",
4 | "dependencies": {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/_site/img/AfSurvBackground.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/img/AfSurvBackground.jpg
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.push;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.slice;
5 | });
6 |
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_sheikh_hasina.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_sheikh_hasina
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_credibility_of_current_government.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/credibility_of_current_government
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_attitude_military_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/attitude_military_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_attitude_police_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/attitude_police_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_election_likey_vote_areawise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/election_likey_vote_areawise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_election_likey_vote_byagegroup.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/election_likey_vote_byagegroup
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_election_likey_vote_genderwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/election_likey_vote_genderwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_performance_hm_ershad_as_pres.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/performance_hm_ershad_as_pres
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_performance_syad_asraful_islam.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/performance_syad_asraful_islam
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_performance_-_al_as_ruling_party.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_al_as_ruling_party
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_statement_on_bnp_election_boycott.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/statement_on_bnp_election_boycott
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/feb_15_feb_15_statement_bnp_demand_met.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/feb_15/feb_15_statement_bnp_demand_met
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/mar_15_ct_future_bangladesh_by_division.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15_ct/future_bangladesh_by_division
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_attitude_election_commision_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//attitude_election_commision_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_attitude_national_parliament_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//attitude_national_parliament_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/push.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.push;
5 | });
6 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/slice.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.slice;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // [[Class]] -> type pairs
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/concat.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.concat;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.indexOf;
5 | });
6 |
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_sajeeb_wazed_joy.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_sajeeb_wazed_joy
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_economic_situation_now_areawise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/economic_situation_now_areawise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_highest_potential_division_wise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/highest_potential_division_wise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_importance_of_women_in_politics.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/importance_of_women_in_politics
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_which_party_better_woman_leadership.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/which_party_better_woman_leadership
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/long_dec14_mar_15_vote_election_today_f2f.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/long_dec14_mar_15/vote_election_today_f2f
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/class2type.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // [[Class]] -> type pairs
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/concat.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.concat;
5 | });
6 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/indexOf.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./arr"
3 | ], function( arr ) {
4 | return arr.indexOf;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/var/cssExpand.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [ "Top", "Right", "Bottom", "Left" ];
3 | });
4 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/manipulation/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^(?:checkbox|radio)$/i);
3 | });
4 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3 | });
4 |
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_begum_khaleda_zia.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_begum_khaleda_zia
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_syed_ashraful_islam.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_syed_ashraful_islam
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_attitude_supreme_court_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/attitude_supreme_court_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_economic_situation_now_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/economic_situation_now_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_economic_situation_now_genderwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/economic_situation_now_genderwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_performance_sheikh_hasina_as_pres.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/performance_sheikh_hasina_as_pres
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_performance_-_bnp_as_political_party.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_bnp_as_political_party
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/long_dec14_mar_15_vote_election_today_catss.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/long_dec14_mar_15/vote_election_today_catss
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/var/cssExpand.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return [ "Top", "Right", "Bottom", "Left" ];
3 | });
4 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/pnum.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
3 | });
4 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core"
3 | ], function( jQuery ) {
4 | return jQuery.now();
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/data/var/data_priv.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/data/var/data_user.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_begum_rowshan_ershad.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_begum_rowshan_ershad
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_attitude_towards_-_ziauddin_ahmed_bablu.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/attitude_towards_-_ziauddin_ahmed_bablu
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_performance_-_hm_ershad_as_jp_president.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_hm_ershad_as_jp_president
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/img/DI-Logo-with-Text-Transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/img/DI-Logo-with-Text-Transparent.png
--------------------------------------------------------------------------------
/mar_15_ct_responsible_for_violence_by_division.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/mar_15_ct/responsible_for_violence_by_division
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # banglabarometer
2 | An open-source platform for visualizing Democracy International public opinion research data in Bangladesh
3 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/data/var/data_priv.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/data/var/data_user.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../Data"
3 | ], function( Data ) {
4 | return new Data();
5 | });
6 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/manipulation/var/rcheckableType.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return (/^(?:checkbox|radio)$/i);
3 | });
4 |
--------------------------------------------------------------------------------
/dec_14_ct_attitude_election_commision_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/attitude_election_commision_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_ct_economic_situation_before_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/economic_situation_before_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_importance_of_youth_involvement_in_politics.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/importance_of_youth_involvement_in_politics
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/README.md:
--------------------------------------------------------------------------------
1 | # banglabarometer
2 | An open-source platform for visualizing Democracy International public opinion research data in Bangladesh
3 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/ajax/var/nonce.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core"
3 | ], function( jQuery ) {
4 | return jQuery.now();
5 | });
6 |
--------------------------------------------------------------------------------
/_site/img/DI-Logo-with-Text-Transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/img/DI-Logo-with-Text-Transparent.png
--------------------------------------------------------------------------------
/dec_14_ct_attitude_national_parliament_divisionwise.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/attitude_national_parliament_divisionwise
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_performance_-_jp_as_opposition_in_parliament.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_jp_as_opposition_in_parliament
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/img/DI-Logo-with-Text-Transparent-gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/img/DI-Logo-with-Text-Transparent-gray.png
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.hasOwnProperty;
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/toString.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.toString;
5 | });
6 |
--------------------------------------------------------------------------------
/dec_14__attitude_towards_-_mirza_fakhrul_islam_alamgir.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/_attitude_towards_-_mirza_fakhrul_islam_alamgir
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_performance_-_shekikh_hasina_as_prime_minister.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_shekikh_hasina_as_prime_minister
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/toString.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.toString;
5 | });
6 |
--------------------------------------------------------------------------------
/_site/img/DI-Logo-with-Text-Transparent-gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/img/DI-Logo-with-Text-Transparent-gray.png
--------------------------------------------------------------------------------
/bower_components/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // Match a standalone tag
3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
4 | });
5 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // All support tests are defined in their respective modules.
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/dec_14_performance_-_begum_khaleda_zia_as_bnp_chairperson.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_begum_khaleda_zia_as_bnp_chairperson
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/core/var/rsingleTag.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // Match a standalone tag
3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/);
4 | });
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/hasOwn.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./class2type"
3 | ], function( class2type ) {
4 | return class2type.hasOwnProperty;
5 | });
6 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/var/support.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | // All support tests are defined in their respective modules.
3 | return {};
4 | });
5 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_curb_terrorism.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_curb_terrorism
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_layouts/home.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include home.html %}
5 | {% include scripts.html %}
6 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_poverty_reduction.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_poverty_reduction
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_rural_development.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_rural_development
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_config.build.yml:
--------------------------------------------------------------------------------
1 | # Jekyll configuration precedence:
2 | # 1. Gruntfile task
3 | # 2. config.build.yml
4 | # 3. config.yml
5 |
6 | future: false
7 | show_drafts: false
8 |
--------------------------------------------------------------------------------
/dec_14_performance_-_syed_asraful_islam_as_al_general_secretary.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_syed_asraful_islam_as_al_general_secretary
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_performance_-_ziauddin_ahmed_bablu_as_jp_secretary_general.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_ziauddin_ahmed_bablu_as_jp_secretary_general
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_local_job_creation.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_local_job_creation
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/dec_14_performance_-_mirza_fakhrul_alamgir_as_bnp_secretary_general.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_mirza_fakhrul_alamgir_as_bnp_secretary_general
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_increase_overseas_job.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_increase_overseas_job
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/bower_components/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/bower_components/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../var/pnum"
3 | ], function( pnum ) {
4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5 | });
6 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_health_sector_improvement.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_health_sector_improvement
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/var/rnumnonpx.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../var/pnum"
3 | ], function( pnum ) {
4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
5 | });
6 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/font-awesome/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/dec_14_performance_-_begum_rowshan_ershad_as_leader_of_opposition_party.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/performance_-_begum_rowshan_ershad_as_leader_of_opposition_party
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/bower_components/bootstrap/grunt/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends" : "../js/.jshintrc",
3 | "asi" : false,
4 | "browser" : false,
5 | "es3" : false,
6 | "node" : true
7 | }
8 |
--------------------------------------------------------------------------------
/bower_components/d3/.gitattributes:
--------------------------------------------------------------------------------
1 | bower.json -diff merge=ours
2 | component.json -diff merge=ours
3 | d3.js -diff merge=ours
4 | d3.min.js -diff merge=ours
5 | package.js -diff merge=ours
6 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | ], function( jQuery ) {
5 | return jQuery.expr.match.needsContext;
6 | });
7 |
--------------------------------------------------------------------------------
/dec_14_ct_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_education_system_improvement.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_education_system_improvement
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/font-awesome/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/_By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen//By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_layouts/.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/traversing/var/rneedsContext.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | ], function( jQuery ) {
5 | return jQuery.expr.match.needsContext;
6 | });
7 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_improvement_of_electricity_supply.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_improvement_of_electricity_supply
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_improving_roads_and_transportation.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_improving_roads_and_transportation
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/center-block.less:
--------------------------------------------------------------------------------
1 | // Center-align a block level element
2 |
3 | .center-block() {
4 | display: block;
5 | margin-left: auto;
6 | margin-right: auto;
7 | }
8 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/text-emphasis.less:
--------------------------------------------------------------------------------
1 | // Typography
2 |
3 | .text-emphasis-variant(@color) {
4 | color: @color;
5 | a&:hover {
6 | color: darken(@color, 10%);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/dec_14_the_most_important_issue_that_political_parties_and_leaders_should_focus_on.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/the_most_important_issue_that_political_parties_and_leaders_should_focus_on
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/center-block.less:
--------------------------------------------------------------------------------
1 | // Center-align a block level element
2 |
3 | .center-block() {
4 | display: block;
5 | margin-left: auto;
6 | margin-right: auto;
7 | }
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/text-emphasis.less:
--------------------------------------------------------------------------------
1 | // Typography
2 |
3 | .text-emphasis-variant(@color) {
4 | color: @color;
5 | a&:hover {
6 | color: darken(@color, 10%);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/event/support.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../var/support"
3 | ], function( support ) {
4 |
5 | support.focusinBubbles = "onfocusin" in window;
6 |
7 | return support;
8 |
9 | });
10 |
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_improvement_of_law_and_order_situation.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_improvement_of_law_and_order_situation
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tmahmood/banglabarometer/master/_site/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/dec_14_political_party_that_can_accomplish_-_price_controlling_of_essential_commodities.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14/political_party_that_can_accomplish_-_price_controlling_of_essential_commodities
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/event/support.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../var/support"
3 | ], function( support ) {
4 |
5 | support.focusinBubbles = "onfocusin" in window;
6 |
7 | return support;
8 |
9 | });
10 |
--------------------------------------------------------------------------------
/dec_14_ct_By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: gen/dec_14_ct/By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party
3 | ---
4 |
5 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/size.less:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | .size(@width; @height) {
4 | width: @width;
5 | height: @height;
6 | }
7 |
8 | .square(@size) {
9 | .size(@size; @size);
10 | }
11 |
--------------------------------------------------------------------------------
/_layouts/gen/direction_f2f.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//direction_f2f.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/size.less:
--------------------------------------------------------------------------------
1 | // Sizing shortcuts
2 |
3 | .size(@width; @height) {
4 | width: @width;
5 | height: @height;
6 | }
7 |
8 | .square(@size) {
9 | .size(@size; @size);
10 | }
11 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/background-variant.less:
--------------------------------------------------------------------------------
1 | // Contextual backgrounds
2 |
3 | .bg-variant(@color) {
4 | background-color: @color;
5 | a&:hover {
6 | background-color: darken(@color, 10%);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/opacity.less:
--------------------------------------------------------------------------------
1 | // Opacity
2 |
3 | .opacity(@opacity) {
4 | opacity: @opacity;
5 | // IE8 filter
6 | @opacity-ie: (@opacity * 100);
7 | filter: ~"alpha(opacity=@{opacity-ie})";
8 | }
9 |
--------------------------------------------------------------------------------
/__links_dec_14_others.html:
--------------------------------------------------------------------------------
1 |
What is the highest potential for Bangladesh?
2 | What is the main problem for Bangladesh?
3 |
--------------------------------------------------------------------------------
/_layouts/gen/direction_catss.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//direction_catss.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/statement_jan_5.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//statement_jan_5.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/opacity.less:
--------------------------------------------------------------------------------
1 | // Opacity
2 |
3 | .opacity(@opacity) {
4 | opacity: @opacity;
5 | // IE8 filter
6 | @opacity-ie: (@opacity * 100);
7 | filter: ~"alpha(opacity=@{opacity-ie})";
8 | }
9 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_rab.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_rab.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15/fair_mediator.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15/fair_mediator.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/background-variant.less:
--------------------------------------------------------------------------------
1 | // Contextual backgrounds
2 |
3 | .bg-variant(@color) {
4 | background-color: @color;
5 | a&:hover {
6 | background-color: darken(@color, 10%);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_police.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_police.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/today_vote_for.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/today_vote_for.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15/express_opinion.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15/express_opinion.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/statement_bnp_boycott.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//statement_bnp_boycott.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/credibility_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//credibility_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_anti_cc.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_anti_cc.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/women_leadership.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/women_leadership.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/direction_catss.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/direction_catss.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/direction_f2f.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/direction_f2f.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/statement_jan_5.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/statement_jan_5.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15/future_bangladesh.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15/future_bangladesh.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15/likely_to_vote_al.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15/likely_to_vote_al.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15/likely_to_vote_bnp.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15/likely_to_vote_bnp.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/performance_khaleda_zia.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//performance_khaleda_zia.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/vote_election_today_f2f.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//vote_election_today_f2f.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/text-overflow.less:
--------------------------------------------------------------------------------
1 | // Text overflow
2 | // Requires inline-block or block for proper styling
3 |
4 | .text-overflow() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/_layouts/gen/attitude_acc_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//attitude_acc_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/attitude_rab_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//attitude_rab_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_others/main_problem.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_others/main_problem.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/highest_potential_area_wise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//highest_potential_area_wise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/main_problem_division_wise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//main_problem_division_wise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/performance_mirza_fakhrul.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//performance_mirza_fakhrul.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/performance_sheikh_hasina.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//performance_sheikh_hasina.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/performance_ziauddin_ahmed.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//performance_ziauddin_ahmed.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/vote_election_today_catss.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//vote_election_today_catss.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/text-overflow.less:
--------------------------------------------------------------------------------
1 | // Text overflow
2 | // Requires inline-block or block for proper styling
3 |
4 | .text-overflow() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/tab-focus.less:
--------------------------------------------------------------------------------
1 | // WebKit-style focus
2 |
3 | .tab-focus() {
4 | // Default
5 | outline: thin dotted;
6 | // WebKit
7 | outline: 5px auto -webkit-focus-ring-color;
8 | outline-offset: -2px;
9 | }
10 |
--------------------------------------------------------------------------------
/_layouts/gen/attitude_police_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//attitude_police_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_bangladesh_ec.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_bangladesh_ec.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_supreme_court.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_supreme_court.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/economic_situation_past.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/economic_situation_past.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/election_likey_vote_areawise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//election_likey_vote_areawise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/feb_15/feb_15_law_for_hartal.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/feb_15/feb_15_law_for_hartal.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15/next_national_election.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15/next_national_election.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15_ct/feel_free_to_by_area.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15_ct/feel_free_to_by_area.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/performance_hm_ershad_as_pres.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//performance_hm_ershad_as_pres.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/attitude_military_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//attitude_military_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/main_problem_area_wise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/main_problem_area_wise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/statement_bnp_boycott.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/statement_bnp_boycott.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_others/highest_potential.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_others/highest_potential.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/economic_situation_now_areawise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//economic_situation_now_areawise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/election_likey_vote_byagegroup.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//election_likey_vote_byagegroup.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/election_likey_vote_genderwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//election_likey_vote_genderwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/feb_15/feb_15_govt_stop_violence.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/feb_15/feb_15_govt_stop_violence.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/highest_potential_division_wise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//highest_potential_division_wise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/importance_of_women_in_politics.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//importance_of_women_in_politics.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/long_dec14_mar_15/direction_f2f.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/long_dec14_mar_15/direction_f2f.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/performance_syad_asraful_islam.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//performance_syad_asraful_islam.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/tab-focus.less:
--------------------------------------------------------------------------------
1 | // WebKit-style focus
2 |
3 | .tab-focus() {
4 | // Default
5 | outline: thin dotted;
6 | // WebKit
7 | outline: 5px auto -webkit-focus-ring-color;
8 | outline-offset: -2px;
9 | }
10 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_bangladesh_military.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_bangladesh_military.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_national_parliament.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_national_parliament.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_hm_ershad.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_hm_ershad.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/economic_situation_current.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/economic_situation_current.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/statement_on_jan5_election.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/statement_on_jan5_election.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/women_involvement_politics.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/women_involvement_politics.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/attitude_acc_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/attitude_acc_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/attitude_rab_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/attitude_rab_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/credibility_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/credibility_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/performance_khaleda_zia.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/performance_khaleda_zia.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/performance_mirza_fakhrul.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/performance_mirza_fakhrul.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/performance_sheikh_hasina.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/performance_sheikh_hasina.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/vote_election_today_catss.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/vote_election_today_catss.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/vote_election_today_f2f.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/vote_election_today_f2f.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/economic_situation_now_genderwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//economic_situation_now_genderwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/feb_15/feb_15_statement_bnp_demand.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/feb_15/feb_15_statement_bnp_demand.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/feb_15/feb_15_violence_in_protests.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/feb_15/feb_15_violence_in_protests.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/long_dec14_mar_15/direction_catss.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/long_dec14_mar_15/direction_catss.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15/responsible_party_violence.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15/responsible_party_violence.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15_ct/future_bangladesh_by_area.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15_ct/future_bangladesh_by_area.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/performance_sheikh_hasina_as_pres.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//performance_sheikh_hasina_as_pres.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/labels.less:
--------------------------------------------------------------------------------
1 | // Labels
2 |
3 | .label-variant(@color) {
4 | background-color: @color;
5 |
6 | &[href] {
7 | &:hover,
8 | &:focus {
9 | background-color: darken(@color, 10%);
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/resize.less:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | .resizable(@direction) {
4 | resize: @direction; // Options: horizontal, vertical, both
5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
6 | }
7 |
--------------------------------------------------------------------------------
/_layouts/gen/attitude_supreme_court_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//attitude_supreme_court_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_tareque_zia.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_tareque_zia.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/highest_potential_area_wise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/highest_potential_area_wise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/main_problem_division_wise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/main_problem_division_wise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/performance_ziauddin_ahmed.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/performance_ziauddin_ahmed.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/economic_situation_now_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//economic_situation_now_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/labels.less:
--------------------------------------------------------------------------------
1 | // Labels
2 |
3 | .label-variant(@color) {
4 | background-color: @color;
5 |
6 | &[href] {
7 | &:hover,
8 | &:focus {
9 | background-color: darken(@color, 10%);
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/resize.less:
--------------------------------------------------------------------------------
1 | // Resize anything
2 |
3 | .resizable(@direction) {
4 | resize: @direction; // Options: horizontal, vertical, both
5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
6 | }
7 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_sheikh_hasina.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_sheikh_hasina.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/credibility_of_current_government.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/credibility_of_current_government.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_al_as_ruling_party.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_al_as_ruling_party.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/statement_on_bnp_election_boycott.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/statement_on_bnp_election_boycott.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/attitude_military_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/attitude_military_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/attitude_police_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/attitude_police_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/election_likey_vote_areawise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/election_likey_vote_areawise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/election_likey_vote_byagegroup.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/election_likey_vote_byagegroup.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/election_likey_vote_genderwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/election_likey_vote_genderwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/performance_hm_ershad_as_pres.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/performance_hm_ershad_as_pres.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/performance_syad_asraful_islam.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/performance_syad_asraful_islam.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/economic_situation_before_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//economic_situation_before_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/feb_15/feb_15_statement_bnp_demand_met.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/feb_15/feb_15_statement_bnp_demand_met.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15_ct/future_bangladesh_by_division.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15_ct/future_bangladesh_by_division.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # http://editorconfig.org
2 | root = true
3 |
4 | [*]
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | charset = utf-8
9 | trim_trailing_whitespace = true
10 | insert_final_newline = true
11 |
12 | [*.md]
13 | trim_trailing_whitespace = false
--------------------------------------------------------------------------------
/_layouts/gen/attitude_election_commision_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//attitude_election_commision_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/attitude_national_parliament_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//attitude_national_parliament_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_sajeeb_wazed_joy.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_sajeeb_wazed_joy.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/which_party_better_woman_leadership.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/which_party_better_woman_leadership.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/economic_situation_now_areawise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/economic_situation_now_areawise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/highest_potential_division_wise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/highest_potential_division_wise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/importance_of_women_in_politics.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/importance_of_women_in_politics.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/long_dec14_mar_15/vote_election_today_f2f.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/long_dec14_mar_15/vote_election_today_f2f.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_begum_khaleda_zia.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_begum_khaleda_zia.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_syed_ashraful_islam.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_syed_ashraful_islam.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_bnp_as_political_party.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_bnp_as_political_party.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/attitude_supreme_court_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/attitude_supreme_court_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/economic_situation_now_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/economic_situation_now_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/economic_situation_now_genderwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/economic_situation_now_genderwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/performance_sheikh_hasina_as_pres.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/performance_sheikh_hasina_as_pres.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/long_dec14_mar_15/vote_election_today_catss.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/long_dec14_mar_15/vote_election_today_catss.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_begum_rowshan_ershad.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_begum_rowshan_ershad.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/attitude_towards_-_ziauddin_ahmed_bablu.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/attitude_towards_-_ziauddin_ahmed_bablu.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_hm_ershad_as_jp_president.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_hm_ershad_as_jp_president.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/mar_15_ct/responsible_for_violence_by_division.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/mar_15_ct/responsible_for_violence_by_division.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/progress-bar.less:
--------------------------------------------------------------------------------
1 | // Progress bars
2 |
3 | .progress-bar-variant(@color) {
4 | background-color: @color;
5 |
6 | // Deprecated parent class requirement as of v3.2.0
7 | .progress-striped & {
8 | #gradient > .striped();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/attributes.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./attributes/attr",
4 | "./attributes/prop",
5 | "./attributes/classes",
6 | "./attributes/val"
7 | ], function( jQuery ) {
8 |
9 | // Return jQuery for attributes-only inclusion
10 | return jQuery;
11 | });
12 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/importance_of_youth_involvement_in_politics.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/importance_of_youth_involvement_in_politics.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/attitude_election_commision_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/attitude_election_commision_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/economic_situation_before_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/economic_situation_before_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/attributes.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./attributes/attr",
4 | "./attributes/prop",
5 | "./attributes/classes",
6 | "./attributes/val"
7 | ], function( jQuery ) {
8 |
9 | // Return jQuery for attributes-only inclusion
10 | return jQuery;
11 | });
12 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_jp_as_opposition_in_parliament.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_jp_as_opposition_in_parliament.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/attitude_national_parliament_divisionwise.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/attitude_national_parliament_divisionwise.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/progress-bar.less:
--------------------------------------------------------------------------------
1 | // Progress bars
2 |
3 | .progress-bar-variant(@color) {
4 | background-color: @color;
5 |
6 | // Deprecated parent class requirement as of v3.2.0
7 | .progress-striped & {
8 | #gradient > .striped();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/_attitude_towards_-_mirza_fakhrul_islam_alamgir.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/_attitude_towards_-_mirza_fakhrul_islam_alamgir.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_shekikh_hasina_as_prime_minister.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_shekikh_hasina_as_prime_minister.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/data/latest/condition.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "label": "Better Off",
4 | "value": 68.2
5 | },
6 | {
7 | "label": "Worse Off",
8 | "value": 23.0
9 | },
10 | {
11 | "label": "Same",
12 | "value": 8.3
13 | },
14 | {
15 | "label": "Don't Know/Can't Say",
16 | "value": 0.5
17 | }
18 | ]
19 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_begum_khaleda_zia_as_bnp_chairperson.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_begum_khaleda_zia_as_bnp_chairperson.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_curb_terrorism.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_curb_terrorism.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/data/latest/condition.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "label": "Better Off",
4 | "value": 68.2
5 | },
6 | {
7 | "label": "Worse Off",
8 | "value": 23.0
9 | },
10 | {
11 | "label": "Same",
12 | "value": 8.3
13 | },
14 | {
15 | "label": "Don't Know/Can't Say",
16 | "value": 0.5
17 | }
18 | ]
19 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_poverty_reduction.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_poverty_reduction.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_rural_development.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_rural_development.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_syed_asraful_islam_as_al_general_secretary.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_syed_asraful_islam_as_al_general_secretary.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_ziauddin_ahmed_bablu_as_jp_secretary_general.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_ziauddin_ahmed_bablu_as_jp_secretary_general.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_local_job_creation.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_local_job_creation.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/ajax/parseJSON.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // Support: Android 2.3
6 | // Workaround failure to string-cast null input
7 | jQuery.parseJSON = function( data ) {
8 | return JSON.parse( data + "" );
9 | };
10 |
11 | return jQuery.parseJSON;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/deprecated.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./traversing"
4 | ], function( jQuery ) {
5 |
6 | // The number of elements contained in the matched element set
7 | jQuery.fn.size = function() {
8 | return this.length;
9 | };
10 |
11 | jQuery.fn.andSelf = jQuery.fn.addBack;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_mirza_fakhrul_alamgir_as_bnp_secretary_general.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_mirza_fakhrul_alamgir_as_bnp_secretary_general.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_increase_overseas_job.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_increase_overseas_job.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/deprecated.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./traversing"
4 | ], function( jQuery ) {
5 |
6 | // The number of elements contained in the matched element set
7 | jQuery.fn.size = function() {
8 | return this.length;
9 | };
10 |
11 | jQuery.fn.andSelf = jQuery.fn.addBack;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/nav-divider.less:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | .nav-divider(@color: #e5e5e5) {
6 | height: 1px;
7 | margin: ((@line-height-computed / 2) - 1) 0;
8 | overflow: hidden;
9 | background-color: @color;
10 | }
11 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/reset-filter.less:
--------------------------------------------------------------------------------
1 | // Reset filters for IE
2 | //
3 | // When you need to remove a gradient background, do not forget to use this to reset
4 | // the IE filter for IE9 and below.
5 |
6 | .reset-filter() {
7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
8 | }
9 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_health_sector_improvement.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_health_sector_improvement.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/reset-filter.less:
--------------------------------------------------------------------------------
1 | // Reset filters for IE
2 | //
3 | // When you need to remove a gradient background, do not forget to use this to reset
4 | // the IE filter for IE9 and below.
5 |
6 | .reset-filter() {
7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
8 | }
9 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/ajax/parseJSON.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // Support: Android 2.3
6 | // Workaround failure to string-cast null input
7 | jQuery.parseJSON = function( data ) {
8 | return JSON.parse( data + "" );
9 | };
10 |
11 | return jQuery.parseJSON;
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/performance_-_begum_rowshan_ershad_as_leader_of_opposition_party.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/performance_-_begum_rowshan_ershad_as_leader_of_opposition_party.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/nav-divider.less:
--------------------------------------------------------------------------------
1 | // Horizontal dividers
2 | //
3 | // Dividers (basically an hr) within dropdowns and nav lists
4 |
5 | .nav-divider(@color: #e5e5e5) {
6 | height: 1px;
7 | margin: ((@line-height-computed / 2) - 1) 0;
8 | overflow: hidden;
9 | background-color: @color;
10 | }
11 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/effects/animatedSelector.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../selector",
4 | "../effects"
5 | ], function( jQuery ) {
6 |
7 | jQuery.expr.filters.animated = function( elem ) {
8 | return jQuery.grep(jQuery.timers, function( fn ) {
9 | return elem === fn.elem;
10 | }).length;
11 | };
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_education_system_improvement.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_education_system_improvement.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/effects/animatedSelector.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../selector",
4 | "../effects"
5 | ], function( jQuery ) {
6 |
7 | jQuery.expr.filters.animated = function( elem ) {
8 | return jQuery.grep(jQuery.timers, function( fn ) {
9 | return elem === fn.elem;
10 | }).length;
11 | };
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/_layouts/gen/By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen//By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_improvement_of_electricity_supply.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_improvement_of_electricity_supply.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_improving_roads_and_transportation.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_improving_roads_and_transportation.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/the_most_important_issue_that_political_parties_and_leaders_should_focus_on.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/the_most_important_issue_that_political_parties_and_leaders_should_focus_on.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_improvement_of_law_and_order_situation.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_improvement_of_law_and_order_situation.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14/political_party_that_can_accomplish_-_price_controlling_of_essential_commodities.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14/political_party_that_can_accomplish_-_price_controlling_of_essential_commodities.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/alerts.less:
--------------------------------------------------------------------------------
1 | // Alerts
2 |
3 | .alert-variant(@background; @border; @text-color) {
4 | background-color: @background;
5 | border-color: @border;
6 | color: @text-color;
7 |
8 | hr {
9 | border-top-color: darken(@border, 5%);
10 | }
11 | .alert-link {
12 | color: darken(@text-color, 10%);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/_layouts/gen/dec_14_ct/By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html:
--------------------------------------------------------------------------------
1 | {% include head.html %}
2 | {% include navbar.html %}
3 | {% include sidebar.html %}
4 | {% include template.html %}
5 | {% include gen/dec_14_ct/By_Division_-_Performance_-_Begum_Rowshan_Ershad_as_Leader_of_Opposition_party.html %}
6 | {% include scripts.html %}
7 |
8 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/manipulation/_evalUrl.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../ajax"
3 | ], function( jQuery ) {
4 |
5 | jQuery._evalUrl = function( url ) {
6 | return jQuery.ajax({
7 | url: url,
8 | type: "GET",
9 | dataType: "script",
10 | async: false,
11 | global: false,
12 | "throws": true
13 | });
14 | };
15 |
16 | return jQuery._evalUrl;
17 |
18 | });
19 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/alerts.less:
--------------------------------------------------------------------------------
1 | // Alerts
2 |
3 | .alert-variant(@background; @border; @text-color) {
4 | background-color: @background;
5 | border-color: @border;
6 | color: @text-color;
7 |
8 | hr {
9 | border-top-color: darken(@border, 5%);
10 | }
11 | .alert-link {
12 | color: darken(@text-color, 10%);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/js/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "asi" : true,
3 | "browser" : true,
4 | "eqeqeq" : false,
5 | "eqnull" : true,
6 | "es3" : true,
7 | "expr" : true,
8 | "jquery" : true,
9 | "latedef" : true,
10 | "laxbreak" : true,
11 | "nonbsp" : true,
12 | "strict" : true,
13 | "undef" : true,
14 | "unused" : true
15 | }
16 |
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 | "node": true,
3 | "browser": true,
4 | "esnext": true,
5 | "bitwise": false,
6 | "curly": false,
7 | "eqeqeq": true,
8 | "eqnull": true,
9 | "immed": true,
10 | "latedef": true,
11 | "newcap": true,
12 | "noarg": true,
13 | "quotmark": "single",
14 | "undef": true,
15 | "strict": false,
16 | "trailing": true,
17 | "smarttabs": true
18 | }
19 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/selector-sizzle.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "sizzle"
4 | ], function( jQuery, Sizzle ) {
5 |
6 | jQuery.find = Sizzle;
7 | jQuery.expr = Sizzle.selectors;
8 | jQuery.expr[":"] = jQuery.expr.pseudos;
9 | jQuery.unique = Sizzle.uniqueSort;
10 | jQuery.text = Sizzle.getText;
11 | jQuery.isXMLDoc = Sizzle.isXML;
12 | jQuery.contains = Sizzle.contains;
13 |
14 | });
15 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/selector-sizzle.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "sizzle"
4 | ], function( jQuery, Sizzle ) {
5 |
6 | jQuery.find = Sizzle;
7 | jQuery.expr = Sizzle.selectors;
8 | jQuery.expr[":"] = jQuery.expr.pseudos;
9 | jQuery.unique = Sizzle.uniqueSort;
10 | jQuery.text = Sizzle.getText;
11 | jQuery.isXMLDoc = Sizzle.isXML;
12 | jQuery.contains = Sizzle.contains;
13 |
14 | });
15 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/event/ajax.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../event"
4 | ], function( jQuery ) {
5 |
6 | // Attach a bunch of functions for handling common AJAX events
7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
8 | jQuery.fn[ type ] = function( fn ) {
9 | return this.on( type, fn );
10 | };
11 | });
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/event/ajax.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../event"
4 | ], function( jQuery ) {
5 |
6 | // Attach a bunch of functions for handling common AJAX events
7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) {
8 | jQuery.fn[ type ] = function( fn ) {
9 | return this.on( type, fn );
10 | };
11 | });
12 |
13 | });
14 |
--------------------------------------------------------------------------------
/bower_components/d3/package.js:
--------------------------------------------------------------------------------
1 | // Package metadata for Meteor.js.
2 |
3 | Package.describe({
4 | name: "d3js:d3", // http://atmospherejs.com/d3js/d3
5 | summary: "D3 (official): A JavaScript visualization library for HTML and SVG.",
6 | version: "3.5.5",
7 | git: "https://github.com/mbostock/d3.git"
8 | });
9 |
10 | Package.onUse(function(api) {
11 | api.versionsFrom(["METEOR@1.0"]);
12 | api.addFiles("d3.js", "client");
13 | });
14 |
--------------------------------------------------------------------------------
/_site/bower_components/d3/package.js:
--------------------------------------------------------------------------------
1 | // Package metadata for Meteor.js.
2 |
3 | Package.describe({
4 | name: "d3js:d3", // http://atmospherejs.com/d3js/d3
5 | summary: "D3 (official): A JavaScript visualization library for HTML and SVG.",
6 | version: "3.5.5",
7 | git: "https://github.com/mbostock/d3.git"
8 | });
9 |
10 | Package.onUse(function(api) {
11 | api.versionsFrom(["METEOR@1.0"]);
12 | api.addFiles("d3.js", "client");
13 | });
14 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/bordered-pulled.less:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em @fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .@{fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/var/isHidden.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | // css is assumed
5 | ], function( jQuery ) {
6 |
7 | return function( elem, el ) {
8 | // isHidden might be called from jQuery#filter function;
9 | // in that case, element will be second argument
10 | elem = el || elem;
11 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
12 | };
13 | });
14 |
--------------------------------------------------------------------------------
/_includes/scripts.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/bordered-pulled.less:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em @fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .@{fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/nav-vertical-align.less:
--------------------------------------------------------------------------------
1 | // Navbar vertical align
2 | //
3 | // Vertically center elements in the navbar.
4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
5 |
6 | .navbar-vertical-align(@element-height) {
7 | margin-top: ((@navbar-height - @element-height) / 2);
8 | margin-bottom: ((@navbar-height - @element-height) / 2);
9 | }
10 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/nav-vertical-align.less:
--------------------------------------------------------------------------------
1 | // Navbar vertical align
2 | //
3 | // Vertically center elements in the navbar.
4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
5 |
6 | .navbar-vertical-align(@element-height) {
7 | margin-top: ((@navbar-height - @element-height) / 2);
8 | margin-bottom: ((@navbar-height - @element-height) / 2);
9 | }
10 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/var/isHidden.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../../core",
3 | "../../selector"
4 | // css is assumed
5 | ], function( jQuery ) {
6 |
7 | return function( elem, el ) {
8 | // isHidden might be called from jQuery#filter function;
9 | // in that case, element will be second argument
10 | elem = el || elem;
11 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem );
12 | };
13 | });
14 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/larger.less:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .@{fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/larger.less:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .@{fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/responsive-visibility.less:
--------------------------------------------------------------------------------
1 | // Responsive utilities
2 |
3 | //
4 | // More easily include all the states for responsive-utilities.less.
5 | .responsive-visibility() {
6 | display: block !important;
7 | table& { display: table; }
8 | tr& { display: table-row !important; }
9 | th&,
10 | td& { display: table-cell !important; }
11 | }
12 |
13 | .responsive-invisibility() {
14 | display: none !important;
15 | }
16 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/responsive-visibility.less:
--------------------------------------------------------------------------------
1 | // Responsive utilities
2 |
3 | //
4 | // More easily include all the states for responsive-utilities.less.
5 | .responsive-visibility() {
6 | display: block !important;
7 | table& { display: table; }
8 | tr& { display: table-row !important; }
9 | th&,
10 | td& { display: table-cell !important; }
11 | }
12 |
13 | .responsive-invisibility() {
14 | display: none !important;
15 | }
16 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/.gitignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 | *.egg-info
3 | *.db
4 | *.db.old
5 | *.swp
6 | *.db-journal
7 |
8 | .coverage
9 | .DS_Store
10 | .installed.cfg
11 | _gh_pages/*
12 |
13 | .idea/*
14 | .svn/*
15 | src/website/static/*
16 | src/website/media/*
17 |
18 | bin
19 | cfcache
20 | develop-eggs
21 | dist
22 | downloads
23 | eggs
24 | parts
25 | tmp
26 | .sass-cache
27 | node_modules
28 |
29 | src/website/settingslocal.py
30 | stunnel.log
31 |
32 | .ruby-version
33 | .bundle
34 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/hiddenVisibleSelectors.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../selector"
4 | ], function( jQuery ) {
5 |
6 | jQuery.expr.filters.hidden = function( elem ) {
7 | // Support: Opera <= 12.12
8 | // Opera reports offsetWidths and offsetHeights less than zero on some elements
9 | return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
10 | };
11 | jQuery.expr.filters.visible = function( elem ) {
12 | return !jQuery.expr.filters.hidden( elem );
13 | };
14 |
15 | });
16 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: (-@fa-li-width + (4em / 14));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: (-@fa-li-width + (4em / 14));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/hiddenVisibleSelectors.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../selector"
4 | ], function( jQuery ) {
5 |
6 | jQuery.expr.filters.hidden = function( elem ) {
7 | // Support: Opera <= 12.12
8 | // Opera reports offsetWidths and offsetHeights less than zero on some elements
9 | return elem.offsetWidth <= 0 && elem.offsetHeight <= 0;
10 | };
11 | jQuery.expr.filters.visible = function( elem ) {
12 | return !jQuery.expr.filters.hidden( elem );
13 | };
14 |
15 | });
16 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/var/getStyles.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return function( elem ) {
3 | // Support: IE<=11+, Firefox<=30+ (#15098, #14150)
4 | // IE throws on elements created in popups
5 | // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
6 | if ( elem.ownerDocument.defaultView.opener ) {
7 | return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
8 | }
9 |
10 | return window.getComputedStyle( elem, null );
11 | };
12 | });
13 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/var/getStyles.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 | return function( elem ) {
3 | // Support: IE<=11+, Firefox<=30+ (#15098, #14150)
4 | // IE throws on elements created in popups
5 | // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
6 | if ( elem.ownerDocument.defaultView.opener ) {
7 | return elem.ownerDocument.defaultView.getComputedStyle( elem, null );
8 | }
9 |
10 | return window.getComputedStyle( elem, null );
11 | };
12 | });
13 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/data/accepts.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | /**
6 | * Determines whether an object can have data
7 | */
8 | jQuery.acceptData = function( owner ) {
9 | // Accepts only:
10 | // - Node
11 | // - Node.ELEMENT_NODE
12 | // - Node.DOCUMENT_NODE
13 | // - Object
14 | // - Any
15 | /* jshint -W018 */
16 | return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
17 | };
18 |
19 | return jQuery.acceptData;
20 | });
21 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/data/accepts.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | /**
6 | * Determines whether an object can have data
7 | */
8 | jQuery.acceptData = function( owner ) {
9 | // Accepts only:
10 | // - Node
11 | // - Node.ELEMENT_NODE
12 | // - Node.DOCUMENT_NODE
13 | // - Object
14 | // - Any
15 | /* jshint -W018 */
16 | return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
17 | };
18 |
19 | return jQuery.acceptData;
20 | });
21 |
--------------------------------------------------------------------------------
/bower_components/d3/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "d3",
3 | "version": "3.5.5",
4 | "main": "d3.js",
5 | "scripts": [
6 | "d3.js"
7 | ],
8 | "ignore": [
9 | ".DS_Store",
10 | ".git",
11 | ".gitignore",
12 | ".npmignore",
13 | ".spmignore",
14 | ".travis.yml",
15 | "Makefile",
16 | "bin",
17 | "component.json",
18 | "composer.json",
19 | "index.js",
20 | "lib",
21 | "node_modules",
22 | "package.json",
23 | "src",
24 | "test"
25 | ]
26 | }
27 |
--------------------------------------------------------------------------------
/_site/bower_components/d3/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "d3",
3 | "version": "3.5.5",
4 | "main": "d3.js",
5 | "scripts": [
6 | "d3.js"
7 | ],
8 | "ignore": [
9 | ".DS_Store",
10 | ".git",
11 | ".gitignore",
12 | ".npmignore",
13 | ".spmignore",
14 | ".travis.yml",
15 | "Makefile",
16 | "bin",
17 | "component.json",
18 | "composer.json",
19 | "index.js",
20 | "lib",
21 | "node_modules",
22 | "package.json",
23 | "src",
24 | "test"
25 | ]
26 | }
27 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "animated";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "animated";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "font-awesome",
3 | "description": "Font Awesome",
4 | "version": "4.3.0",
5 | "keywords": [],
6 | "homepage": "http://fontawesome.io",
7 | "dependencies": {},
8 | "devDependencies": {},
9 | "license": ["OFL-1.1", "MIT", "CC-BY-3.0"],
10 | "main": [
11 | "./css/font-awesome.css",
12 | "./fonts/*"
13 | ],
14 | "ignore": [
15 | "*/.*",
16 | "*.json",
17 | "src",
18 | "*.yml",
19 | "Gemfile",
20 | "Gemfile.lock",
21 | "*.md"
22 | ]
23 | }
24 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "font-awesome",
3 | "description": "Font Awesome",
4 | "version": "4.3.0",
5 | "keywords": [],
6 | "homepage": "http://fontawesome.io",
7 | "dependencies": {},
8 | "devDependencies": {},
9 | "license": ["OFL-1.1", "MIT", "CC-BY-3.0"],
10 | "main": [
11 | "./css/font-awesome.css",
12 | "./fonts/*"
13 | ],
14 | "ignore": [
15 | "*/.*",
16 | "*.json",
17 | "src",
18 | "*.yml",
19 | "Gemfile",
20 | "Gemfile.lock",
21 | "*.md"
22 | ]
23 | }
24 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/dist/js/npm.js:
--------------------------------------------------------------------------------
1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
2 | require('../../js/transition.js')
3 | require('../../js/alert.js')
4 | require('../../js/button.js')
5 | require('../../js/carousel.js')
6 | require('../../js/collapse.js')
7 | require('../../js/dropdown.js')
8 | require('../../js/modal.js')
9 | require('../../js/tooltip.js')
10 | require('../../js/popover.js')
11 | require('../../js/scrollspy.js')
12 | require('../../js/tab.js')
13 | require('../../js/affix.js')
--------------------------------------------------------------------------------
/_includes/home.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
Opinion expressed in this portal do not necessarily reflect the views of the United States Agency for International Development or the United States Government.
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/dist/js/npm.js:
--------------------------------------------------------------------------------
1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
2 | require('../../js/transition.js')
3 | require('../../js/alert.js')
4 | require('../../js/button.js')
5 | require('../../js/carousel.js')
6 | require('../../js/collapse.js')
7 | require('../../js/dropdown.js')
8 | require('../../js/modal.js')
9 | require('../../js/tooltip.js')
10 | require('../../js/popover.js')
11 | require('../../js/scrollspy.js')
12 | require('../../js/tab.js')
13 | require('../../js/affix.js')
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/.csslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "adjoining-classes": false,
3 | "box-sizing": false,
4 | "box-model": false,
5 | "compatible-vendor-prefixes": false,
6 | "floats": false,
7 | "font-sizes": false,
8 | "gradients": false,
9 | "important": false,
10 | "known-properties": false,
11 | "outline-none": false,
12 | "qualified-headings": false,
13 | "regex-selectors": false,
14 | "shorthand": false,
15 | "text-indent": false,
16 | "unique-headings": false,
17 | "universal-selector": false,
18 | "unqualified-attributes": false
19 | }
20 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables.less";
7 | @import "mixins.less";
8 | @import "path.less";
9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "animated.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/pagination.less:
--------------------------------------------------------------------------------
1 | // Pagination
2 |
3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
4 | > li {
5 | > a,
6 | > span {
7 | padding: @padding-vertical @padding-horizontal;
8 | font-size: @font-size;
9 | }
10 | &:first-child {
11 | > a,
12 | > span {
13 | .border-left-radius(@border-radius);
14 | }
15 | }
16 | &:last-child {
17 | > a,
18 | > span {
19 | .border-right-radius(@border-radius);
20 | }
21 | }
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/bower_components/jquery/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery",
3 | "version": "2.1.3",
4 | "main": "dist/jquery.js",
5 | "license": "MIT",
6 | "ignore": [
7 | "**/.*",
8 | "build",
9 | "speed",
10 | "test",
11 | "*.md",
12 | "AUTHORS.txt",
13 | "Gruntfile.js",
14 | "package.json"
15 | ],
16 | "devDependencies": {
17 | "sizzle": "2.1.1-jquery.2.1.2",
18 | "requirejs": "2.1.10",
19 | "qunit": "1.14.0",
20 | "sinon": "1.8.1"
21 | },
22 | "keywords": [
23 | "jquery",
24 | "javascript",
25 | "library"
26 | ]
27 | }
28 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables.less";
7 | @import "mixins.less";
8 | @import "path.less";
9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "animated.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "jquery",
3 | "version": "2.1.3",
4 | "main": "dist/jquery.js",
5 | "license": "MIT",
6 | "ignore": [
7 | "**/.*",
8 | "build",
9 | "speed",
10 | "test",
11 | "*.md",
12 | "AUTHORS.txt",
13 | "Gruntfile.js",
14 | "package.json"
15 | ],
16 | "devDependencies": {
17 | "sizzle": "2.1.1-jquery.2.1.2",
18 | "requirejs": "2.1.10",
19 | "qunit": "1.14.0",
20 | "sinon": "1.8.1"
21 | },
22 | "keywords": [
23 | "jquery",
24 | "javascript",
25 | "library"
26 | ]
27 | }
28 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/pagination.less:
--------------------------------------------------------------------------------
1 | // Pagination
2 |
3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
4 | > li {
5 | > a,
6 | > span {
7 | padding: @padding-vertical @padding-horizontal;
8 | font-size: @font-size;
9 | }
10 | &:first-child {
11 | > a,
12 | > span {
13 | .border-left-radius(@border-radius);
14 | }
15 | }
16 | &:last-child {
17 | > a,
18 | > span {
19 | .border-right-radius(@border-radius);
20 | }
21 | }
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/border-radius.less:
--------------------------------------------------------------------------------
1 | // Single side border-radius
2 |
3 | .border-top-radius(@radius) {
4 | border-top-right-radius: @radius;
5 | border-top-left-radius: @radius;
6 | }
7 | .border-right-radius(@radius) {
8 | border-bottom-right-radius: @radius;
9 | border-top-right-radius: @radius;
10 | }
11 | .border-bottom-radius(@radius) {
12 | border-bottom-right-radius: @radius;
13 | border-bottom-left-radius: @radius;
14 | }
15 | .border-left-radius(@radius) {
16 | border-bottom-left-radius: @radius;
17 | border-top-left-radius: @radius;
18 | }
19 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/border-radius.less:
--------------------------------------------------------------------------------
1 | // Single side border-radius
2 |
3 | .border-top-radius(@radius) {
4 | border-top-right-radius: @radius;
5 | border-top-left-radius: @radius;
6 | }
7 | .border-right-radius(@radius) {
8 | border-bottom-right-radius: @radius;
9 | border-top-right-radius: @radius;
10 | }
11 | .border-bottom-radius(@radius) {
12 | border-bottom-right-radius: @radius;
13 | border-bottom-left-radius: @radius;
14 | }
15 | .border-left-radius(@radius) {
16 | border-bottom-left-radius: @radius;
17 | border-top-left-radius: @radius;
18 | }
19 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 | transform: translate(0, 0); // ensures no half-pixel rendering in firefox
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 | transform: translate(0, 0); // ensures no half-pixel rendering in firefox
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/stacked.less:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 | transform: translate(0, 0); // ensures no half-pixel rendering in firefox
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/stacked.less:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # .gitignore for Yeoman-Jekyll projects
2 |
3 | # Ignore hidden folders #
4 | # This takes care of .tmp, .sass-cache, and many others #
5 | .*/
6 |
7 | # Ignore OS generated files #
8 | .DS_Store*
9 | ehthumbs.db
10 | Icon?
11 | Thumbs.db
12 |
13 | # Always-ignore files and folders #
14 | *.diff
15 | *.err
16 | *.log
17 | *.orig
18 | *.rej
19 | *.swn
20 | *.swo
21 | *.swp
22 | ._*
23 | *~
24 |
25 | # Ignore packages #
26 | *.7z
27 | *.dmg
28 | *.gz
29 | *.iso
30 | *.jar
31 | *.rar
32 | *.tar
33 | *.zip
34 |
35 | # Ignore for Yeoman-Jekyll projects #
36 | app/_bower_components
37 | node_modules
38 | .tmp
39 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/addGetHookIf.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 |
3 | function addGetHookIf( conditionFn, hookFn ) {
4 | // Define the hook, we'll check on the first run if it's really needed.
5 | return {
6 | get: function() {
7 | if ( conditionFn() ) {
8 | // Hook not needed (or it's not possible to use it due
9 | // to missing dependency), remove it.
10 | delete this.get;
11 | return;
12 | }
13 |
14 | // Hook needed; redefine it so that the support test is not executed again.
15 | return (this.get = hookFn).apply( this, arguments );
16 | }
17 | };
18 | }
19 |
20 | return addGetHookIf;
21 |
22 | });
23 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/addGetHookIf.js:
--------------------------------------------------------------------------------
1 | define(function() {
2 |
3 | function addGetHookIf( conditionFn, hookFn ) {
4 | // Define the hook, we'll check on the first run if it's really needed.
5 | return {
6 | get: function() {
7 | if ( conditionFn() ) {
8 | // Hook not needed (or it's not possible to use it due
9 | // to missing dependency), remove it.
10 | delete this.get;
11 | return;
12 | }
13 |
14 | // Hook needed; redefine it so that the support test is not executed again.
15 | return (this.get = hookFn).apply( this, arguments );
16 | }
17 | };
18 | }
19 |
20 | return addGetHookIf;
21 |
22 | });
23 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/ajax/parseXML.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // Cross-browser xml parsing
6 | jQuery.parseXML = function( data ) {
7 | var xml, tmp;
8 | if ( !data || typeof data !== "string" ) {
9 | return null;
10 | }
11 |
12 | // Support: IE9
13 | try {
14 | tmp = new DOMParser();
15 | xml = tmp.parseFromString( data, "text/xml" );
16 | } catch ( e ) {
17 | xml = undefined;
18 | }
19 |
20 | if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
21 | jQuery.error( "Invalid XML: " + data );
22 | }
23 | return xml;
24 | };
25 |
26 | return jQuery.parseXML;
27 |
28 | });
29 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/ajax/parseXML.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // Cross-browser xml parsing
6 | jQuery.parseXML = function( data ) {
7 | var xml, tmp;
8 | if ( !data || typeof data !== "string" ) {
9 | return null;
10 | }
11 |
12 | // Support: IE9
13 | try {
14 | tmp = new DOMParser();
15 | xml = tmp.parseFromString( data, "text/xml" );
16 | } catch ( e ) {
17 | xml = undefined;
18 | }
19 |
20 | if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
21 | jQuery.error( "Invalid XML: " + data );
22 | }
23 | return xml;
24 | };
25 |
26 | return jQuery.parseXML;
27 |
28 | });
29 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/.npmignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 | *.egg-info
3 | *.db
4 | *.db.old
5 | *.swp
6 | *.db-journal
7 |
8 | .coverage
9 | .DS_Store
10 | .installed.cfg
11 | _gh_pages/*
12 |
13 | .idea/*
14 | .svn/*
15 | src/website/static/*
16 | src/website/media/*
17 |
18 | bin
19 | cfcache
20 | develop-eggs
21 | dist
22 | downloads
23 | eggs
24 | parts
25 | tmp
26 | .sass-cache
27 | node_modules
28 |
29 | src/website/settingslocal.py
30 | stunnel.log
31 |
32 | .ruby-version
33 |
34 | # don't need these in the npm package.
35 | src/
36 | _config.yml
37 | bower.json
38 | component.json
39 | composer.json
40 | CONTRIBUTING.md
41 | Gemfile
42 | Gemfile.lock
43 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/panels.less:
--------------------------------------------------------------------------------
1 | // Panels
2 |
3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
4 | border-color: @border;
5 |
6 | & > .panel-heading {
7 | color: @heading-text-color;
8 | background-color: @heading-bg-color;
9 | border-color: @heading-border;
10 |
11 | + .panel-collapse > .panel-body {
12 | border-top-color: @border;
13 | }
14 | .badge {
15 | color: @heading-bg-color;
16 | background-color: @heading-text-color;
17 | }
18 | }
19 | & > .panel-footer {
20 | + .panel-collapse > .panel-body {
21 | border-bottom-color: @border;
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/panels.less:
--------------------------------------------------------------------------------
1 | // Panels
2 |
3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
4 | border-color: @border;
5 |
6 | & > .panel-heading {
7 | color: @heading-text-color;
8 | background-color: @heading-bg-color;
9 | border-color: @heading-border;
10 |
11 | + .panel-collapse > .panel-body {
12 | border-top-color: @border;
13 | }
14 | .badge {
15 | color: @heading-bg-color;
16 | background-color: @heading-text-color;
17 | }
18 | }
19 | & > .panel-footer {
20 | + .panel-collapse > .panel-body {
21 | border-bottom-color: @border;
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/wells.less:
--------------------------------------------------------------------------------
1 | //
2 | // Wells
3 | // --------------------------------------------------
4 |
5 |
6 | // Base class
7 | .well {
8 | min-height: 20px;
9 | padding: 19px;
10 | margin-bottom: 20px;
11 | background-color: @well-bg;
12 | border: 1px solid @well-border;
13 | border-radius: @border-radius-base;
14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
15 | blockquote {
16 | border-color: #ddd;
17 | border-color: rgba(0,0,0,.15);
18 | }
19 | }
20 |
21 | // Sizes
22 | .well-lg {
23 | padding: 24px;
24 | border-radius: @border-radius-large;
25 | }
26 | .well-sm {
27 | padding: 9px;
28 | border-radius: @border-radius-small;
29 | }
30 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/queue/delay.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../queue",
4 | "../effects" // Delay is optional because of this dependency
5 | ], function( jQuery ) {
6 |
7 | // Based off of the plugin by Clint Helfers, with permission.
8 | // http://blindsignals.com/index.php/2009/07/jquery-delay/
9 | jQuery.fn.delay = function( time, type ) {
10 | time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
11 | type = type || "fx";
12 |
13 | return this.queue( type, function( next, hooks ) {
14 | var timeout = setTimeout( next, time );
15 | hooks.stop = function() {
16 | clearTimeout( timeout );
17 | };
18 | });
19 | };
20 |
21 | return jQuery.fn.delay;
22 | });
23 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/wells.less:
--------------------------------------------------------------------------------
1 | //
2 | // Wells
3 | // --------------------------------------------------
4 |
5 |
6 | // Base class
7 | .well {
8 | min-height: 20px;
9 | padding: 19px;
10 | margin-bottom: 20px;
11 | background-color: @well-bg;
12 | border: 1px solid @well-border;
13 | border-radius: @border-radius-base;
14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
15 | blockquote {
16 | border-color: #ddd;
17 | border-color: rgba(0,0,0,.15);
18 | }
19 | }
20 |
21 | // Sizes
22 | .well-lg {
23 | padding: 24px;
24 | border-radius: @border-radius-large;
25 | }
26 | .well-sm {
27 | padding: 9px;
28 | border-radius: @border-radius-small;
29 | }
30 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/queue/delay.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../queue",
4 | "../effects" // Delay is optional because of this dependency
5 | ], function( jQuery ) {
6 |
7 | // Based off of the plugin by Clint Helfers, with permission.
8 | // http://blindsignals.com/index.php/2009/07/jquery-delay/
9 | jQuery.fn.delay = function( time, type ) {
10 | time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
11 | type = type || "fx";
12 |
13 | return this.queue( type, function( next, hooks ) {
14 | var timeout = setTimeout( next, time );
15 | hooks.stop = function() {
16 | clearTimeout( timeout );
17 | };
18 | });
19 | };
20 |
21 | return jQuery.fn.delay;
22 | });
23 |
--------------------------------------------------------------------------------
/__links_mar_15_ct.html:
--------------------------------------------------------------------------------
1 | In your opinion, which political party is most responsible for the current violence in Bangladesh? Division wise
2 | Do most people in the area where you live feel free to express their opinions about the current political situation or not?
3 | Would you say that you are mostly OPTIMISTIC or PESSIMISTIC about the future of Bangladesh?
4 | Would you say that you are mostly OPTIMISTIC or PESSIMISTIC about the future of Bangladesh?
5 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/list-group.less:
--------------------------------------------------------------------------------
1 | // List Groups
2 |
3 | .list-group-item-variant(@state; @background; @color) {
4 | .list-group-item-@{state} {
5 | color: @color;
6 | background-color: @background;
7 |
8 | a& {
9 | color: @color;
10 |
11 | .list-group-item-heading {
12 | color: inherit;
13 | }
14 |
15 | &:hover,
16 | &:focus {
17 | color: @color;
18 | background-color: darken(@background, 5%);
19 | }
20 | &.active,
21 | &.active:hover,
22 | &.active:focus {
23 | color: #fff;
24 | background-color: @color;
25 | border-color: @color;
26 | }
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/hide-text.less:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | //
3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for
4 | // mixins being reused as classes with the same name, this doesn't hold up. As
5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.
6 | //
7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
8 |
9 | // Deprecated as of v3.0.1 (will be removed in v4)
10 | .hide-text() {
11 | font: ~"0/0" a;
12 | color: transparent;
13 | text-shadow: none;
14 | background-color: transparent;
15 | border: 0;
16 | }
17 |
18 | // New mixin to use as of v3.0.1
19 | .text-hide() {
20 | .hide-text();
21 | }
22 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/css/swap.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // A method for quickly swapping in/out CSS properties to get correct calculations.
6 | jQuery.swap = function( elem, options, callback, args ) {
7 | var ret, name,
8 | old = {};
9 |
10 | // Remember the old values, and insert the new ones
11 | for ( name in options ) {
12 | old[ name ] = elem.style[ name ];
13 | elem.style[ name ] = options[ name ];
14 | }
15 |
16 | ret = callback.apply( elem, args || [] );
17 |
18 | // Revert the old values
19 | for ( name in options ) {
20 | elem.style[ name ] = old[ name ];
21 | }
22 |
23 | return ret;
24 | };
25 |
26 | return jQuery.swap;
27 |
28 | });
29 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/list-group.less:
--------------------------------------------------------------------------------
1 | // List Groups
2 |
3 | .list-group-item-variant(@state; @background; @color) {
4 | .list-group-item-@{state} {
5 | color: @color;
6 | background-color: @background;
7 |
8 | a& {
9 | color: @color;
10 |
11 | .list-group-item-heading {
12 | color: inherit;
13 | }
14 |
15 | &:hover,
16 | &:focus {
17 | color: @color;
18 | background-color: darken(@background, 5%);
19 | }
20 | &.active,
21 | &.active:hover,
22 | &.active:focus {
23 | color: #fff;
24 | background-color: @color;
25 | border-color: @color;
26 | }
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/css/swap.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core"
3 | ], function( jQuery ) {
4 |
5 | // A method for quickly swapping in/out CSS properties to get correct calculations.
6 | jQuery.swap = function( elem, options, callback, args ) {
7 | var ret, name,
8 | old = {};
9 |
10 | // Remember the old values, and insert the new ones
11 | for ( name in options ) {
12 | old[ name ] = elem.style[ name ];
13 | elem.style[ name ] = options[ name ];
14 | }
15 |
16 | ret = callback.apply( elem, args || [] );
17 |
18 | // Revert the old values
19 | for ( name in options ) {
20 | elem.style[ name ] = old[ name ];
21 | }
22 |
23 | return ret;
24 | };
25 |
26 | return jQuery.swap;
27 |
28 | });
29 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/hide-text.less:
--------------------------------------------------------------------------------
1 | // CSS image replacement
2 | //
3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for
4 | // mixins being reused as classes with the same name, this doesn't hold up. As
5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.
6 | //
7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
8 |
9 | // Deprecated as of v3.0.1 (will be removed in v4)
10 | .hide-text() {
11 | font: ~"0/0" a;
12 | color: transparent;
13 | text-shadow: none;
14 | background-color: transparent;
15 | border: 0;
16 | }
17 |
18 | // New mixin to use as of v3.0.1
19 | .text-hide() {
20 | .hide-text();
21 | }
22 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/clearfix.less:
--------------------------------------------------------------------------------
1 | // Clearfix
2 | //
3 | // For modern browsers
4 | // 1. The space content is one way to avoid an Opera bug when the
5 | // contenteditable attribute is included anywhere else in the document.
6 | // Otherwise it causes space to appear at the top and bottom of elements
7 | // that are clearfixed.
8 | // 2. The use of `table` rather than `block` is only necessary if using
9 | // `:before` to contain the top-margins of child elements.
10 | //
11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/
12 |
13 | .clearfix() {
14 | &:before,
15 | &:after {
16 | content: " "; // 1
17 | display: table; // 2
18 | }
19 | &:after {
20 | clear: both;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/breadcrumbs.less:
--------------------------------------------------------------------------------
1 | //
2 | // Breadcrumbs
3 | // --------------------------------------------------
4 |
5 |
6 | .breadcrumb {
7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
8 | margin-bottom: @line-height-computed;
9 | list-style: none;
10 | background-color: @breadcrumb-bg;
11 | border-radius: @border-radius-base;
12 |
13 | > li {
14 | display: inline-block;
15 |
16 | + li:before {
17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
18 | padding: 0 5px;
19 | color: @breadcrumb-color;
20 | }
21 | }
22 |
23 | > .active {
24 | color: @breadcrumb-active-color;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/bower_components/d3/README.md:
--------------------------------------------------------------------------------
1 | # Data-Driven Documents
2 |
3 |
4 |
5 | **D3.js** is a JavaScript library for manipulating documents based on data. **D3** helps you bring data to life using HTML, SVG and CSS. D3’s emphasis on web standards gives you the full capabilities of modern browsers without tying yourself to a proprietary framework, combining powerful visualization components and a data-driven approach to DOM manipulation.
6 |
7 | Want to learn more? [See the wiki.](https://github.com/mbostock/d3/wiki)
8 |
9 | For examples, [see the gallery](https://github.com/mbostock/d3/wiki/Gallery) and [mbostock’s bl.ocks](http://bl.ocks.org/mbostock).
10 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/clearfix.less:
--------------------------------------------------------------------------------
1 | // Clearfix
2 | //
3 | // For modern browsers
4 | // 1. The space content is one way to avoid an Opera bug when the
5 | // contenteditable attribute is included anywhere else in the document.
6 | // Otherwise it causes space to appear at the top and bottom of elements
7 | // that are clearfixed.
8 | // 2. The use of `table` rather than `block` is only necessary if using
9 | // `:before` to contain the top-margins of child elements.
10 | //
11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/
12 |
13 | .clearfix() {
14 | &:before,
15 | &:after {
16 | content: " "; // 1
17 | display: table; // 2
18 | }
19 | &:after {
20 | clear: both;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/rotated-flipped.less:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 |
8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .@{fa-css-prefix}-rotate-90,
15 | :root .@{fa-css-prefix}-rotate-180,
16 | :root .@{fa-css-prefix}-rotate-270,
17 | :root .@{fa-css-prefix}-flip-horizontal,
18 | :root .@{fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/breadcrumbs.less:
--------------------------------------------------------------------------------
1 | //
2 | // Breadcrumbs
3 | // --------------------------------------------------
4 |
5 |
6 | .breadcrumb {
7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
8 | margin-bottom: @line-height-computed;
9 | list-style: none;
10 | background-color: @breadcrumb-bg;
11 | border-radius: @border-radius-base;
12 |
13 | > li {
14 | display: inline-block;
15 |
16 | + li:before {
17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
18 | padding: 0 5px;
19 | color: @breadcrumb-color;
20 | }
21 | }
22 |
23 | > .active {
24 | color: @breadcrumb-active-color;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/_site/bower_components/d3/README.md:
--------------------------------------------------------------------------------
1 | # Data-Driven Documents
2 |
3 |
4 |
5 | **D3.js** is a JavaScript library for manipulating documents based on data. **D3** helps you bring data to life using HTML, SVG and CSS. D3’s emphasis on web standards gives you the full capabilities of modern browsers without tying yourself to a proprietary framework, combining powerful visualization components and a data-driven approach to DOM manipulation.
6 |
7 | Want to learn more? [See the wiki.](https://github.com/mbostock/d3/wiki)
8 |
9 | For examples, [see the gallery](https://github.com/mbostock/d3/wiki/Gallery) and [mbostock’s bl.ocks](http://bl.ocks.org/mbostock).
10 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/rotated-flipped.less:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 |
8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .@{fa-css-prefix}-rotate-90,
15 | :root .@{fa-css-prefix}-rotate-180,
16 | :root .@{fa-css-prefix}-rotate-270,
17 | :root .@{fa-css-prefix}-flip-horizontal,
18 | :root .@{fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/responsive-embed.less:
--------------------------------------------------------------------------------
1 | // Embeds responsive
2 | //
3 | // Credit: Nicolas Gallagher and SUIT CSS.
4 |
5 | .embed-responsive {
6 | position: relative;
7 | display: block;
8 | height: 0;
9 | padding: 0;
10 | overflow: hidden;
11 |
12 | .embed-responsive-item,
13 | iframe,
14 | embed,
15 | object,
16 | video {
17 | position: absolute;
18 | top: 0;
19 | left: 0;
20 | bottom: 0;
21 | height: 100%;
22 | width: 100%;
23 | border: 0;
24 | }
25 |
26 | // Modifier class for 16:9 aspect ratio
27 | &.embed-responsive-16by9 {
28 | padding-bottom: 56.25%;
29 | }
30 |
31 | // Modifier class for 4:3 aspect ratio
32 | &.embed-responsive-4by3 {
33 | padding-bottom: 75%;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/jquery.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./selector",
4 | "./traversing",
5 | "./callbacks",
6 | "./deferred",
7 | "./core/ready",
8 | "./data",
9 | "./queue",
10 | "./queue/delay",
11 | "./attributes",
12 | "./event",
13 | "./event/alias",
14 | "./manipulation",
15 | "./manipulation/_evalUrl",
16 | "./wrap",
17 | "./css",
18 | "./css/hiddenVisibleSelectors",
19 | "./serialize",
20 | "./ajax",
21 | "./ajax/xhr",
22 | "./ajax/script",
23 | "./ajax/jsonp",
24 | "./ajax/load",
25 | "./event/ajax",
26 | "./effects",
27 | "./effects/animatedSelector",
28 | "./offset",
29 | "./dimensions",
30 | "./deprecated",
31 | "./exports/amd",
32 | "./exports/global"
33 | ], function( jQuery ) {
34 |
35 | return jQuery;
36 |
37 | });
38 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/responsive-embed.less:
--------------------------------------------------------------------------------
1 | // Embeds responsive
2 | //
3 | // Credit: Nicolas Gallagher and SUIT CSS.
4 |
5 | .embed-responsive {
6 | position: relative;
7 | display: block;
8 | height: 0;
9 | padding: 0;
10 | overflow: hidden;
11 |
12 | .embed-responsive-item,
13 | iframe,
14 | embed,
15 | object,
16 | video {
17 | position: absolute;
18 | top: 0;
19 | left: 0;
20 | bottom: 0;
21 | height: 100%;
22 | width: 100%;
23 | border: 0;
24 | }
25 |
26 | // Modifier class for 16:9 aspect ratio
27 | &.embed-responsive-16by9 {
28 | padding-bottom: 56.25%;
29 | }
30 |
31 | // Modifier class for 4:3 aspect ratio
32 | &.embed-responsive-4by3 {
33 | padding-bottom: 75%;
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/jquery.js:
--------------------------------------------------------------------------------
1 | define([
2 | "./core",
3 | "./selector",
4 | "./traversing",
5 | "./callbacks",
6 | "./deferred",
7 | "./core/ready",
8 | "./data",
9 | "./queue",
10 | "./queue/delay",
11 | "./attributes",
12 | "./event",
13 | "./event/alias",
14 | "./manipulation",
15 | "./manipulation/_evalUrl",
16 | "./wrap",
17 | "./css",
18 | "./css/hiddenVisibleSelectors",
19 | "./serialize",
20 | "./ajax",
21 | "./ajax/xhr",
22 | "./ajax/script",
23 | "./ajax/jsonp",
24 | "./ajax/load",
25 | "./event/ajax",
26 | "./effects",
27 | "./effects/animatedSelector",
28 | "./offset",
29 | "./dimensions",
30 | "./deprecated",
31 | "./exports/amd",
32 | "./exports/global"
33 | ], function( jQuery ) {
34 |
35 | return jQuery;
36 |
37 | });
38 |
--------------------------------------------------------------------------------
/__links_feb_15.html:
--------------------------------------------------------------------------------
1 | I'm going to read you two statements. After I read each one, please tell me which one is closer to your own opinion
2 | What do you think BNP can do to have their demands met?
3 | What do you think the government should do to stop violence?
4 | Do you support or oppose the use of violence in political protests?
5 | Please tell me if you strongly agree, somewhat agree, somewhat disagree or strongly disagree with the following statement: ?Law should be enacted to restrict hartal?
6 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .#{$fa-css-prefix}-rotate-90,
15 | :root .#{$fa-css-prefix}-rotate-180,
16 | :root .#{$fa-css-prefix}-rotate-270,
17 | :root .#{$fa-css-prefix}-flip-horizontal,
18 | :root .#{$fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/bower_components/metisMenu/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "metisMenu",
3 | "version": "1.1.3",
4 | "homepage": "https://github.com/onokumus/metisMenu",
5 | "authors": [
6 | "onokumus "
7 | ],
8 | "description": "Easy menu jQuery plugin for Twitter Bootstrap 3",
9 | "main": [
10 | "dist/metisMenu.js",
11 | "dist/metisMenu.css"
12 | ],
13 | "keywords": [
14 | "twitter",
15 | "bootstrap",
16 | "twbs",
17 | "jquery",
18 | "menu",
19 | "accordion",
20 | "toggle",
21 | "metis",
22 | "metisMenu"
23 | ],
24 | "license": "MIT",
25 | "ignore": [
26 | "**/.*",
27 | "node_modules",
28 | "bower_components",
29 | "test",
30 | "tests"
31 | ],
32 | "dependencies": {
33 | "bootstrap": "~3.3.0"
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/_site/bower_components/metisMenu/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "metisMenu",
3 | "version": "1.1.3",
4 | "homepage": "https://github.com/onokumus/metisMenu",
5 | "authors": [
6 | "onokumus "
7 | ],
8 | "description": "Easy menu jQuery plugin for Twitter Bootstrap 3",
9 | "main": [
10 | "dist/metisMenu.js",
11 | "dist/metisMenu.css"
12 | ],
13 | "keywords": [
14 | "twitter",
15 | "bootstrap",
16 | "twbs",
17 | "jquery",
18 | "menu",
19 | "accordion",
20 | "toggle",
21 | "metis",
22 | "metisMenu"
23 | ],
24 | "license": "MIT",
25 | "ignore": [
26 | "**/.*",
27 | "node_modules",
28 | "bower_components",
29 | "test",
30 | "tests"
31 | ],
32 | "dependencies": {
33 | "bootstrap": "~3.3.0"
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/bower_components/jquery/src/exports/global.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../var/strundefined"
4 | ], function( jQuery, strundefined ) {
5 |
6 | var
7 | // Map over jQuery in case of overwrite
8 | _jQuery = window.jQuery,
9 |
10 | // Map over the $ in case of overwrite
11 | _$ = window.$;
12 |
13 | jQuery.noConflict = function( deep ) {
14 | if ( window.$ === jQuery ) {
15 | window.$ = _$;
16 | }
17 |
18 | if ( deep && window.jQuery === jQuery ) {
19 | window.jQuery = _jQuery;
20 | }
21 |
22 | return jQuery;
23 | };
24 |
25 | // Expose jQuery and $ identifiers, even in AMD
26 | // (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
27 | // and CommonJS for browser emulators (#13566)
28 | if ( typeof noGlobal === strundefined ) {
29 | window.jQuery = window.$ = jQuery;
30 | }
31 |
32 | });
33 |
--------------------------------------------------------------------------------
/_site/bower_components/jquery/src/exports/global.js:
--------------------------------------------------------------------------------
1 | define([
2 | "../core",
3 | "../var/strundefined"
4 | ], function( jQuery, strundefined ) {
5 |
6 | var
7 | // Map over jQuery in case of overwrite
8 | _jQuery = window.jQuery,
9 |
10 | // Map over the $ in case of overwrite
11 | _$ = window.$;
12 |
13 | jQuery.noConflict = function( deep ) {
14 | if ( window.$ === jQuery ) {
15 | window.$ = _$;
16 | }
17 |
18 | if ( deep && window.jQuery === jQuery ) {
19 | window.jQuery = _jQuery;
20 | }
21 |
22 | return jQuery;
23 | };
24 |
25 | // Expose jQuery and $ identifiers, even in AMD
26 | // (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
27 | // and CommonJS for browser emulators (#13566)
28 | if ( typeof noGlobal === strundefined ) {
29 | window.jQuery = window.$ = jQuery;
30 | }
31 |
32 | });
33 |
--------------------------------------------------------------------------------
/bower_components/metisMenu/dist/metisMenu.min.css:
--------------------------------------------------------------------------------
1 | /*
2 | * metismenu - v1.1.3
3 | * Easy menu jQuery plugin for Twitter Bootstrap 3
4 | * https://github.com/onokumus/metisMenu
5 | *
6 | * Made by Osman Nuri Okumus
7 | * Under MIT License
8 | */
9 |
10 | .arrow{float:right;line-height:1.42857}.glyphicon.arrow:before{content:"\e079"}.active>a>.glyphicon.arrow:before{content:"\e114"}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.plus-times{float:right}.fa.plus-times:before{content:"\f067"}.active>a>.fa.plus-times{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.plus-minus{float:right}.fa.plus-minus:before{content:"\f067"}.active>a>.fa.plus-minus:before{content:"\f068"}
--------------------------------------------------------------------------------
/_site/bower_components/metisMenu/dist/metisMenu.min.css:
--------------------------------------------------------------------------------
1 | /*
2 | * metismenu - v1.1.3
3 | * Easy menu jQuery plugin for Twitter Bootstrap 3
4 | * https://github.com/onokumus/metisMenu
5 | *
6 | * Made by Osman Nuri Okumus
7 | * Under MIT License
8 | */
9 |
10 | .arrow{float:right;line-height:1.42857}.glyphicon.arrow:before{content:"\e079"}.active>a>.glyphicon.arrow:before{content:"\e114"}.fa.arrow:before{content:"\f104"}.active>a>.fa.arrow:before{content:"\f107"}.plus-times{float:right}.fa.plus-times:before{content:"\f067"}.active>a>.fa.plus-times{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.plus-minus{float:right}.fa.plus-minus:before{content:"\f067"}.active>a>.fa.plus-minus:before{content:"\f068"}
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/path.less:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/path.less:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/mixins/table-row.less:
--------------------------------------------------------------------------------
1 | // Tables
2 |
3 | .table-row-variant(@state; @background) {
4 | // Exact selectors below required to override `.table-striped` and prevent
5 | // inheritance to nested tables.
6 | .table > thead > tr,
7 | .table > tbody > tr,
8 | .table > tfoot > tr {
9 | > td.@{state},
10 | > th.@{state},
11 | &.@{state} > td,
12 | &.@{state} > th {
13 | background-color: @background;
14 | }
15 | }
16 |
17 | // Hover states for `.table-hover`
18 | // Note: this is not available for cells or rows within `thead` or `tfoot`.
19 | .table-hover > tbody > tr {
20 | > td.@{state}:hover,
21 | > th.@{state}:hover,
22 | &.@{state}:hover > td,
23 | &:hover > .@{state},
24 | &.@{state}:hover > th {
25 | background-color: darken(@background, 5%);
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/bower_components/d3/.bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "d3",
3 | "version": "3.5.5",
4 | "main": "d3.js",
5 | "scripts": [
6 | "d3.js"
7 | ],
8 | "ignore": [
9 | ".DS_Store",
10 | ".git",
11 | ".gitignore",
12 | ".npmignore",
13 | ".spmignore",
14 | ".travis.yml",
15 | "Makefile",
16 | "bin",
17 | "component.json",
18 | "composer.json",
19 | "index.js",
20 | "lib",
21 | "node_modules",
22 | "package.json",
23 | "src",
24 | "test"
25 | ],
26 | "homepage": "https://github.com/mbostock/d3",
27 | "_release": "3.5.5",
28 | "_resolution": {
29 | "type": "version",
30 | "tag": "v3.5.5",
31 | "commit": "9628a923cb9df82058a4a2fcc8d415e45b6d5d2f"
32 | },
33 | "_source": "git://github.com/mbostock/d3.git",
34 | "_target": "~3.5.5",
35 | "_originalSource": "d3",
36 | "_direct": true
37 | }
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/mixins/table-row.less:
--------------------------------------------------------------------------------
1 | // Tables
2 |
3 | .table-row-variant(@state; @background) {
4 | // Exact selectors below required to override `.table-striped` and prevent
5 | // inheritance to nested tables.
6 | .table > thead > tr,
7 | .table > tbody > tr,
8 | .table > tfoot > tr {
9 | > td.@{state},
10 | > th.@{state},
11 | &.@{state} > td,
12 | &.@{state} > th {
13 | background-color: @background;
14 | }
15 | }
16 |
17 | // Hover states for `.table-hover`
18 | // Note: this is not available for cells or rows within `thead` or `tfoot`.
19 | .table-hover > tbody > tr {
20 | > td.@{state}:hover,
21 | > th.@{state}:hover,
22 | &.@{state}:hover > td,
23 | &:hover > .@{state},
24 | &.@{state}:hover > th {
25 | background-color: darken(@background, 5%);
26 | }
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_path.scss:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/less/animated.less:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .@{fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/_site/bower_components/font-awesome/less/animated.less:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .@{fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/bower_components/bootstrap/less/component-animations.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component animations
3 | // --------------------------------------------------
4 |
5 | // Heads up!
6 | //
7 | // We don't use the `.opacity()` mixin here since it causes a bug with text
8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
9 |
10 | .fade {
11 | opacity: 0;
12 | .transition(opacity .15s linear);
13 | &.in {
14 | opacity: 1;
15 | }
16 | }
17 |
18 | .collapse {
19 | display: none;
20 | visibility: hidden;
21 |
22 | &.in { display: block; visibility: visible; }
23 | tr&.in { display: table-row; }
24 | tbody&.in { display: table-row-group; }
25 | }
26 |
27 | .collapsing {
28 | position: relative;
29 | height: 0;
30 | overflow: hidden;
31 | .transition-property(~"height, visibility");
32 | .transition-duration(.35s);
33 | .transition-timing-function(ease);
34 | }
35 |
--------------------------------------------------------------------------------
/bower_components/font-awesome/.bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "font-awesome",
3 | "description": "Font Awesome",
4 | "version": "4.3.0",
5 | "keywords": [],
6 | "homepage": "http://fontawesome.io",
7 | "dependencies": {},
8 | "devDependencies": {},
9 | "license": [
10 | "OFL-1.1",
11 | "MIT",
12 | "CC-BY-3.0"
13 | ],
14 | "main": [
15 | "./css/font-awesome.css",
16 | "./fonts/*"
17 | ],
18 | "ignore": [
19 | "*/.*",
20 | "*.json",
21 | "src",
22 | "*.yml",
23 | "Gemfile",
24 | "Gemfile.lock",
25 | "*.md"
26 | ],
27 | "_release": "4.3.0",
28 | "_resolution": {
29 | "type": "version",
30 | "tag": "v4.3.0",
31 | "commit": "e9665bad5b5b944da1095faf88209fabbfe725c1"
32 | },
33 | "_source": "git://github.com/FortAwesome/Font-Awesome.git",
34 | "_target": "~4.3.0",
35 | "_originalSource": "font-awesome",
36 | "_direct": true
37 | }
--------------------------------------------------------------------------------
/bower_components/font-awesome/scss/_animated.scss:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .#{$fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/_includes/gen/mar_15/future_bangladesh.html:
--------------------------------------------------------------------------------
1 |
33 |
--------------------------------------------------------------------------------
/_site/bower_components/bootstrap/less/component-animations.less:
--------------------------------------------------------------------------------
1 | //
2 | // Component animations
3 | // --------------------------------------------------
4 |
5 | // Heads up!
6 | //
7 | // We don't use the `.opacity()` mixin here since it causes a bug with text
8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
9 |
10 | .fade {
11 | opacity: 0;
12 | .transition(opacity .15s linear);
13 | &.in {
14 | opacity: 1;
15 | }
16 | }
17 |
18 | .collapse {
19 | display: none;
20 | visibility: hidden;
21 |
22 | &.in { display: block; visibility: visible; }
23 | tr&.in { display: table-row; }
24 | tbody&.in { display: table-row-group; }
25 | }
26 |
27 | .collapsing {
28 | position: relative;
29 | height: 0;
30 | overflow: hidden;
31 | .transition-property(~"height, visibility");
32 | .transition-duration(.35s);
33 | .transition-timing-function(ease);
34 | }
35 |
--------------------------------------------------------------------------------
/_includes/gen/mar_15/express_opinion.html:
--------------------------------------------------------------------------------
1 |
33 |
--------------------------------------------------------------------------------