github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/build-blockchain-insurance-app-master/web/views/_layout.pug (about) 1 doctype html 2 html(lang='en') 3 head 4 title #{ __('Blockchain for Insurance') }#{!title ? '' : ' -' + title } 5 meta(charset='utf-8') 6 meta(http-equiv='X-UA-Compatible', content='IE=edge') 7 meta(name='viewport', content='width=device-width, initial-scale=1') 8 meta(name='og:title' content='IBM Blockchain for Insurance') 9 script(src='/js/northstar.js') 10 script(src='/js/northstar-forms.js') 11 script(src='/js/common.bundle.js') 12 script(src='/socket.io/socket.io.js') 13 link(rel='alternate', href='?applang=en', hreflang='en-us') 14 link(rel='alternate', href='?applang=de', hreflang='de-de') 15 include _favicon 16 block header_exts 17 body#ibm-com.ibm-type 18 #ibm-top.ibm-landing-page 19 #ibm-masthead(role='banner', aria-label='IBM') 20 #ibm-mast-options 21 ul(role='toolbar', aria-labelledby='ibm-masthead') 22 #ibm-universal-nav 23 #ibm-home 24 a(href='/') IBM® 25 ul#ibm-menu-links(role='toolbar', aria-label='Site map') 26 #ibm-content-wrapper 27 header 28 .ibm-sitenav-menu-container 29 .ibm-sitenav-menu-name 30 a(href='/') #{__('Blockchain for Insurance')} 31 .ibm-sitenav-menu-list 32 ul(role='menubar') 33 li(role='presentation', class=(homeActive ? 'ibm-highlight' : '')) 34 a(role='menuitem', href='/') #{ __('Home') } 35 li.ibm-haschildlist(role='presentation', class=(shopActive ? 'ibm-highlight' : '')) 36 span(role='menuitem') #{ __('Shop') } 37 ul(role='menu') 38 li(role='presentation', class=(bikesActive ? 'ibm-highlight' : '')) 39 a(role='menuitem', href='/shop/bikes') #{ __('Bikes') } 40 li(role='presentation', class=(smartPhonesActive ? 'ibm-highlight' : '')) 41 a(role='menuitem', href='/shop/smart-phones') #{ __('Smart Phones') } 42 li(role='presentation', class=(skisActive ? 'ibm-highlight' : '')) 43 a(role='menuitem', href='/shop/skis') #{ __('Skis') } 44 li(role='presentation', class=(policeActive ? 'ibm-highlight' : '')) 45 a(role='menuitem', href='/police') #{ __('Police') } 46 li(role='presentation', class=(repairShopActive ? 'ibm-highlight' : '')) 47 a(role='menuitem', href='/repair-shop') #{ __('Repair Service') } 48 li.ibm-haschildlist(role='presentation', class=(insuranceActive ? 'ibm-highlight' : '')) 49 span(role='menuitem') #{ __('Insurance') } 50 ul(role='menu') 51 li(role='presentation', class=(selfServiceActive ? 'ibm-highlight' : '')) 52 a(role='menuitem', href='/insurance/self-service') #{ __('Claim Self-Service') } 53 li(role='presentation', class=(claimProcessingActive ? 'ibm-highlight' : '')) 54 a(role='menuitem', href='/insurance/claim-processing') #{ __('Claim Processing') } 55 li(role='presentation', class=(contractManagementActive ? 'ibm-highlight' : '')) 56 a(role='menuitem', href='/insurance/contract-management') #{ __('Contract Management') } 57 main(role='main', aria-labelledby='ibm-pagetitle-h1') 58 #ibm-pcon 59 #ibm-content 60 #ibm-content-body 61 #ibm-content-main 62 block content 63 footer 64 .ibm-columns.ibm-padding-content 65 #ibm-footer-locale-selector.ibm-col-4-1.ibm-col-medium-4-2.ibm-fright(style='padding-top: 20px;') 66 h3.ibm-bold Select a country/region: 67 select#region-selector(style='width: 100%;') 68 option(value='', selected) 69 option(value='en') English 70 option(value='de') Deutsch 71 #ibm-footer 72 73 #block-explorer 74 script(src='/js/block-explorer.bundle.js') 75 // scripts section 76 block scripts