├── Chapter 11 - File upload ├── bootstrap-fileupload.js └── fileupload_htmlsource.txt ├── Chapter 12 - Geolocation └── SPGeolocationList │ ├── SPGeolocationList.sln │ ├── SPGeolocationList.v11.suo │ ├── SPGeolocationList │ ├── AppManifest.xml │ ├── Content │ │ ├── App.css │ │ ├── Elements.xml │ │ ├── LocationList │ │ │ ├── Elements.xml │ │ │ ├── LocationListInstance │ │ │ │ ├── Elements.xml │ │ │ │ └── SharePointProjectItem.spdata │ │ │ ├── Schema.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── SPGeolocationListWebPart │ │ │ ├── Elements.xml │ │ │ └── SharePointProjectItem.spdata │ │ └── SharePointProjectItem.spdata │ ├── Features │ │ └── Feature1 │ │ │ ├── Feature1.Template.xml │ │ │ └── Feature1.feature │ ├── Images │ │ ├── AppIcon.png │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── Package │ │ ├── Package.Template.xml │ │ └── Package.package │ ├── Pages │ │ ├── Default.aspx │ │ ├── Elements.xml │ │ └── SharePointProjectItem.spdata │ ├── SPGeolocationList.csproj │ ├── SPGeolocationList.csproj.user │ ├── Scripts │ │ ├── App.js │ │ ├── Elements.xml │ │ ├── SharePointProjectItem.spdata │ │ ├── _references.js │ │ ├── jquery-1.6.2-vsdoc.js │ │ ├── jquery-1.6.2.js │ │ └── jquery-1.6.2.min.js │ ├── bin │ │ └── Debug │ │ │ ├── SPGeolocationList.pdb │ │ │ ├── SPGeolocationList.wsp │ │ │ └── app.publish │ │ │ └── SPGeolocationList.app │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── SPGeolocationList.csproj.AppPackageFileList.txt │ │ │ ├── SPGeolocationList.csproj.FileListAbsolute.txt │ │ │ ├── SPGeolocationList.csproj.IsDebugging.txt │ │ │ ├── SPGeolocationList.csproj.PackageFileList.txt │ │ │ ├── SPGeolocationList.csprojResolveAssemblyReference.cache │ │ │ ├── SPGeolocationList.dll │ │ │ ├── SPGeolocationList.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── packages.config │ ├── pkg │ │ └── Debug │ │ │ └── SPGeolocationList │ │ │ ├── SPGeolocationList_Feature1 │ │ │ ├── Content │ │ │ │ ├── App.css │ │ │ │ └── Elements.xml │ │ │ ├── Feature.xml │ │ │ ├── Images │ │ │ │ ├── AppIcon.png │ │ │ │ └── Elements.xml │ │ │ ├── LocationList │ │ │ │ ├── Elements.xml │ │ │ │ └── Schema.xml │ │ │ ├── LocationListInstance │ │ │ │ └── Elements.xml │ │ │ ├── Pages │ │ │ │ ├── Default.aspx │ │ │ │ └── Elements.xml │ │ │ └── Scripts │ │ │ │ ├── App.js │ │ │ │ ├── Elements.xml │ │ │ │ ├── jquery-1.6.2-vsdoc.js │ │ │ │ ├── jquery-1.6.2.js │ │ │ │ └── jquery-1.6.2.min.js │ │ │ └── manifest.xml │ └── pkgobj │ │ └── Debug │ │ ├── AppManifest.xml │ │ ├── Elements.xml │ │ ├── Package_Manifest.xml │ │ ├── SPGeolocationList_Feature1_Feature.xml │ │ └── TokenReplaceFolder │ │ ├── SPGeolocationList_Feature1 │ │ ├── Content │ │ │ └── Elements.xml │ │ ├── Feature.xml │ │ ├── Images │ │ │ └── Elements.xml │ │ ├── LocationList │ │ │ ├── Elements.xml │ │ │ └── Schema.xml │ │ ├── LocationListInstance │ │ │ └── Elements.xml │ │ ├── Pages │ │ │ ├── Default.aspx │ │ │ └── Elements.xml │ │ └── Scripts │ │ │ └── Elements.xml │ │ └── manifest.xml │ └── packages │ ├── jQuery.1.6.2 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery-1.6.2-vsdoc.js │ │ │ ├── jquery-1.6.2.js │ │ │ └── jquery-1.6.2.min.js │ └── jQuery.1.6.2.nupkg │ └── repositories.config ├── Chapter 3 - Site Comps ├── sg-homepage-320.psd ├── sg-homepage-768.psd └── sg-homepage-960.psd ├── Chapter 4 - HTML Template ├── HTML Template │ ├── about.html │ ├── blog-post.html │ ├── blog.html │ ├── communities.html │ ├── community-eagle-vista.html │ ├── community-otay-crossings.html │ ├── community-spruce-meadows.html │ ├── contact.html │ ├── css │ │ ├── elements.css │ │ ├── isotope.css │ │ ├── nivo-slider.css │ │ ├── style.css │ │ └── superfish.css │ ├── fonts │ │ ├── mensch-webfont.eot │ │ ├── mensch-webfont.svg │ │ ├── mensch-webfont.ttf │ │ └── mensch-webfont.woff │ ├── img │ │ ├── banner-one.jpg │ │ ├── banner-two.jpg │ │ ├── bird.png │ │ ├── breadcrumb-separator.png │ │ ├── bullets │ │ │ ├── arrow.png │ │ │ ├── check.png │ │ │ ├── heart.png │ │ │ ├── plus.png │ │ │ └── star.png │ │ ├── communities-eagle-small.jpg │ │ ├── communities-otay-small.jpg │ │ ├── communities-spruce-small.jpg │ │ ├── divider-tagline.png │ │ ├── homes-small-one.jpg │ │ ├── icon-arrows-vert.png │ │ ├── icon-arrows.png │ │ ├── icon-bird.png │ │ ├── icon-close.png │ │ ├── icon-contact.png │ │ ├── icon-home.png │ │ ├── icon-homes-home.png │ │ ├── icon-homes-view.png │ │ ├── icon-login.png │ │ ├── icon-register.png │ │ ├── icon-search.png │ │ ├── icon-view-photos.png │ │ ├── icon-view-tour.png │ │ ├── icon-view-video.png │ │ ├── info-blue.png │ │ ├── info-green.png │ │ ├── info-red.png │ │ ├── info-yellow.png │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── social │ │ │ ├── 500px.png │ │ │ ├── AddThis.png │ │ │ ├── Behance.png │ │ │ ├── Blogger.png │ │ │ ├── Deliciou.png │ │ │ ├── DeviantART.png │ │ │ ├── Digg.png │ │ │ ├── Dopplr.png │ │ │ ├── Dribbble.png │ │ │ ├── Evernote.png │ │ │ ├── Facebook.png │ │ │ ├── Flickr.png │ │ │ ├── Forrst.png │ │ │ ├── GitHub.png │ │ │ ├── Google+.png │ │ │ ├── Grooveshark.png │ │ │ ├── Instagram.png │ │ │ ├── Lastfm.png │ │ │ ├── LinkedIn.png │ │ │ ├── Mail.png │ │ │ ├── MySpace.png │ │ │ ├── Path.png │ │ │ ├── Paypal.png │ │ │ ├── Picasa.png │ │ │ ├── Posterous.png │ │ │ ├── RSS.png │ │ │ ├── Reddit.png │ │ │ ├── ShareThis.png │ │ │ ├── Skype.png │ │ │ ├── Soundcloud.png │ │ │ ├── Spotify.png │ │ │ ├── StumbleUpon.png │ │ │ ├── Tumblr.png │ │ │ ├── Twitter.png │ │ │ ├── Viddler.png │ │ │ ├── Vimeo.png │ │ │ ├── Virb.png │ │ │ ├── Windows.png │ │ │ ├── WordPress.png │ │ │ ├── YouTube.png │ │ │ └── Zerply.png │ │ ├── source │ │ │ ├── breadcrumb-separator.psd │ │ │ ├── communities-small.psd │ │ │ ├── divider-tagline.psd │ │ │ ├── homes-small.psd │ │ │ ├── icon-arrows-vert.psd │ │ │ ├── icon-arrows.psd │ │ │ ├── icon-bird.psd │ │ │ ├── icon-contact.psd │ │ │ ├── icon-home.psd │ │ │ ├── icon-homes.psd │ │ │ ├── icon-search.psd │ │ │ ├── icon-site-access.psd │ │ │ ├── icon-view.psd │ │ │ ├── logo.psd │ │ │ ├── rotating-banner.psd │ │ │ └── toggle-simple.psd │ │ ├── toggle-simple.png │ │ └── toggle.png │ ├── index.html │ ├── js │ │ ├── hoverIntent.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-custom.js │ │ ├── jquery-migrate-1.1.0.min.js │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.nivo.slider.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tweet.js │ │ ├── modernizr-2.6.2.custom.js │ │ ├── poshytip-1.1 │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── jquery.poshytip.js │ │ │ ├── jquery.poshytip.min.js │ │ │ ├── tip-darkgray │ │ │ │ ├── tip-darkgray.css │ │ │ │ ├── tip-darkgray.png │ │ │ │ └── tip-darkgray_arrows.png │ │ │ ├── tip-green │ │ │ │ ├── tip-green.css │ │ │ │ └── tip-green_arrows.gif │ │ │ ├── tip-skyblue │ │ │ │ ├── tip-skyblue.css │ │ │ │ ├── tip-skyblue.png │ │ │ │ └── tip-skyblue_arrows.png │ │ │ ├── tip-twitter │ │ │ │ ├── tip-twitter.css │ │ │ │ └── tip-twitter_arrows.gif │ │ │ ├── tip-violet │ │ │ │ ├── tip-violet.css │ │ │ │ ├── tip-violet.png │ │ │ │ └── tip-violet_arrows.png │ │ │ ├── tip-yellow │ │ │ │ ├── tip-yellow.css │ │ │ │ ├── tip-yellow.png │ │ │ │ └── tip-yellow_arrows.png │ │ │ └── tip-yellowsimple │ │ │ │ ├── tip-yellowsimple.css │ │ │ │ └── tip-yellowsimple_arrows.gif │ │ └── superfish-1.4.8 │ │ │ ├── jquery.bgiframe.min.js │ │ │ ├── superfish.js │ │ │ └── supersubs.js │ ├── page-elements.html │ ├── page-typography.html │ ├── page.html │ ├── property.html │ └── spectergroup.html └── SharePoint MasterPage │ ├── css │ ├── elements.css │ ├── isotope.css │ ├── nivo-slider.css │ ├── style.css │ └── superfish.css │ ├── fonts │ ├── mensch-webfont.eot │ ├── mensch-webfont.svg │ ├── mensch-webfont.ttf │ └── mensch-webfont.woff │ ├── img │ ├── banner-one.jpg │ ├── banner-two.jpg │ ├── bird.png │ ├── breadcrumb-separator.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ ├── communities-spruce-small.jpg │ ├── divider-tagline.png │ ├── homes-small-one.jpg │ ├── icon-arrows-vert.png │ ├── icon-arrows.png │ ├── icon-bird.png │ ├── icon-close.png │ ├── icon-contact.png │ ├── icon-home.png │ ├── icon-homes-home.png │ ├── icon-homes-view.png │ ├── icon-login.png │ ├── icon-register.png │ ├── icon-search.png │ ├── icon-view-photos.png │ ├── icon-view-tour.png │ ├── icon-view-video.png │ ├── info-blue.png │ ├── info-green.png │ ├── info-red.png │ ├── info-yellow.png │ ├── loading.gif │ ├── logo.gif │ ├── social │ │ ├── 500px.png │ │ ├── AddThis.png │ │ ├── Behance.png │ │ ├── Blogger.png │ │ ├── Deliciou.png │ │ ├── DeviantART.png │ │ ├── Digg.png │ │ ├── Dopplr.png │ │ ├── Dribbble.png │ │ ├── Evernote.png │ │ ├── Facebook.png │ │ ├── Flickr.png │ │ ├── Forrst.png │ │ ├── GitHub.png │ │ ├── Google+.png │ │ ├── Grooveshark.png │ │ ├── Instagram.png │ │ ├── Lastfm.png │ │ ├── LinkedIn.png │ │ ├── Mail.png │ │ ├── MySpace.png │ │ ├── Path.png │ │ ├── Paypal.png │ │ ├── Picasa.png │ │ ├── Posterous.png │ │ ├── RSS.png │ │ ├── Reddit.png │ │ ├── ShareThis.png │ │ ├── Skype.png │ │ ├── Soundcloud.png │ │ ├── Spotify.png │ │ ├── StumbleUpon.png │ │ ├── Tumblr.png │ │ ├── Twitter.png │ │ ├── Viddler.png │ │ ├── Vimeo.png │ │ ├── Virb.png │ │ ├── Windows.png │ │ ├── WordPress.png │ │ ├── YouTube.png │ │ └── Zerply.png │ ├── source │ │ ├── breadcrumb-separator.psd │ │ ├── communities-small.psd │ │ ├── divider-tagline.psd │ │ ├── homes-small.psd │ │ ├── icon-arrows-vert.psd │ │ ├── icon-arrows.psd │ │ ├── icon-bird.psd │ │ ├── icon-contact.psd │ │ ├── icon-home.psd │ │ ├── icon-homes.psd │ │ ├── icon-search.psd │ │ ├── icon-site-access.psd │ │ ├── icon-view.psd │ │ ├── logo.psd │ │ ├── rotating-banner.psd │ │ └── toggle-simple.psd │ ├── toggle-simple.png │ └── toggle.png │ ├── js │ ├── hoverIntent.js │ ├── jquery-1.9.1.min.js │ ├── jquery-custom.js │ ├── jquery-migrate-1.1.0.min.js │ ├── jquery-ui-1.8.9.custom.min.js │ ├── jquery.isotope.min.js │ ├── jquery.nivo.slider.js │ ├── jquery.tabs.js │ ├── jquery.tweet.js │ ├── modernizr-2.6.2.custom.js │ ├── poshytip-1.1 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ └── superfish-1.4.8 │ │ ├── jquery.bgiframe.min.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── spectergroup.html │ └── spectergroup.master ├── Chapter 5 - Bootstrap Template ├── Bootstrap HTML │ ├── about.html │ ├── blog-post.html │ ├── blog.html │ ├── communities.html │ ├── community-eagle-vista.html │ ├── community-otay-crossings.html │ ├── community-spruce-meadows.html │ ├── contact.html │ ├── css │ │ ├── bootstrap-full.min.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── elements.css │ │ ├── isotope.css │ │ ├── nivo-slider.css │ │ ├── style.css │ │ └── superfish.css │ ├── fonts │ │ ├── mensch-webfont.eot │ │ ├── mensch-webfont.svg │ │ ├── mensch-webfont.ttf │ │ └── mensch-webfont.woff │ ├── img │ │ ├── banner-one.jpg │ │ ├── banner-two.jpg │ │ ├── bird.png │ │ ├── bullets │ │ │ ├── arrow.png │ │ │ ├── check.png │ │ │ ├── heart.png │ │ │ ├── plus.png │ │ │ └── star.png │ │ ├── communities-eagle-small.jpg │ │ ├── communities-otay-small.jpg │ │ ├── communities-spruce-small.jpg │ │ ├── divider-tagline.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── homes-small-one.jpg │ │ ├── icon-arrows-vert.png │ │ ├── icon-arrows.png │ │ ├── icon-bird.png │ │ ├── icon-close.png │ │ ├── icon-contact.png │ │ ├── icon-home.png │ │ ├── icon-homes-home.png │ │ ├── icon-homes-view.png │ │ ├── icon-login.png │ │ ├── icon-register.png │ │ ├── icon-search.png │ │ ├── icon-view-photos.png │ │ ├── icon-view-tour.png │ │ ├── icon-view-video.png │ │ ├── info-blue.png │ │ ├── info-green.png │ │ ├── info-red.png │ │ ├── info-yellow.png │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── social │ │ │ ├── 500px.png │ │ │ ├── AddThis.png │ │ │ ├── Behance.png │ │ │ ├── Blogger.png │ │ │ ├── Deliciou.png │ │ │ ├── DeviantART.png │ │ │ ├── Digg.png │ │ │ ├── Dopplr.png │ │ │ ├── Dribbble.png │ │ │ ├── Evernote.png │ │ │ ├── Facebook.png │ │ │ ├── Flickr.png │ │ │ ├── Forrst.png │ │ │ ├── GitHub.png │ │ │ ├── Google+.png │ │ │ ├── Grooveshark.png │ │ │ ├── Instagram.png │ │ │ ├── Lastfm.png │ │ │ ├── LinkedIn.png │ │ │ ├── Mail.png │ │ │ ├── MySpace.png │ │ │ ├── Path.png │ │ │ ├── Paypal.png │ │ │ ├── Picasa.png │ │ │ ├── Posterous.png │ │ │ ├── RSS.png │ │ │ ├── Reddit.png │ │ │ ├── ShareThis.png │ │ │ ├── Skype.png │ │ │ ├── Soundcloud.png │ │ │ ├── Spotify.png │ │ │ ├── StumbleUpon.png │ │ │ ├── Tumblr.png │ │ │ ├── Twitter.png │ │ │ ├── Viddler.png │ │ │ ├── Vimeo.png │ │ │ ├── Virb.png │ │ │ ├── Windows.png │ │ │ ├── WordPress.png │ │ │ ├── YouTube.png │ │ │ └── Zerply.png │ │ ├── source │ │ │ ├── communities-small.psd │ │ │ ├── divider-tagline.psd │ │ │ ├── homes-small.psd │ │ │ ├── icon-arrows-vert.psd │ │ │ ├── icon-arrows.psd │ │ │ ├── icon-bird.psd │ │ │ ├── icon-contact.psd │ │ │ ├── icon-home.psd │ │ │ ├── icon-homes.psd │ │ │ ├── icon-search.psd │ │ │ ├── icon-site-access.psd │ │ │ ├── icon-view.psd │ │ │ ├── logo.psd │ │ │ ├── rotating-banner.psd │ │ │ └── toggle-simple.psd │ │ ├── toggle-simple.png │ │ └── toggle.png │ ├── index.html │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── hoverIntent.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-custom.js │ │ ├── jquery-migrate-1.1.0.min.js │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.nivo.slider.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tweet.js │ │ ├── modernizr-2.6.2.custom.js │ │ ├── poshytip-1.1 │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── jquery.poshytip.js │ │ │ ├── jquery.poshytip.min.js │ │ │ ├── tip-darkgray │ │ │ │ ├── tip-darkgray.css │ │ │ │ ├── tip-darkgray.png │ │ │ │ └── tip-darkgray_arrows.png │ │ │ ├── tip-green │ │ │ │ ├── tip-green.css │ │ │ │ └── tip-green_arrows.gif │ │ │ ├── tip-skyblue │ │ │ │ ├── tip-skyblue.css │ │ │ │ ├── tip-skyblue.png │ │ │ │ └── tip-skyblue_arrows.png │ │ │ ├── tip-twitter │ │ │ │ ├── tip-twitter.css │ │ │ │ └── tip-twitter_arrows.gif │ │ │ ├── tip-violet │ │ │ │ ├── tip-violet.css │ │ │ │ ├── tip-violet.png │ │ │ │ └── tip-violet_arrows.png │ │ │ ├── tip-yellow │ │ │ │ ├── tip-yellow.css │ │ │ │ ├── tip-yellow.png │ │ │ │ └── tip-yellow_arrows.png │ │ │ └── tip-yellowsimple │ │ │ │ ├── tip-yellowsimple.css │ │ │ │ └── tip-yellowsimple_arrows.gif │ │ └── superfish-1.4.8 │ │ │ ├── jquery.bgiframe.min.js │ │ │ ├── superfish.js │ │ │ └── supersubs.js │ ├── page-elements.html │ ├── page-typography.html │ ├── page.html │ └── property.html └── Bootstrap SharePoint MasterPage │ ├── css │ ├── bootstrap-full.min.css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── elements.css │ ├── isotope.css │ ├── nivo-slider.css │ ├── style.css │ └── superfish.css │ ├── fonts │ ├── mensch-webfont.eot │ ├── mensch-webfont.svg │ ├── mensch-webfont.ttf │ └── mensch-webfont.woff │ ├── img │ ├── banner-one.jpg │ ├── banner-two.jpg │ ├── bird.png │ ├── breadcrumb-separator.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ ├── communities-spruce-small.jpg │ ├── divider-tagline.png │ ├── homes-small-one.jpg │ ├── icon-arrows-vert.png │ ├── icon-arrows.png │ ├── icon-bird.png │ ├── icon-close.png │ ├── icon-contact.png │ ├── icon-home.png │ ├── icon-homes-home.png │ ├── icon-homes-view.png │ ├── icon-login.png │ ├── icon-register.png │ ├── icon-search.png │ ├── icon-view-photos.png │ ├── icon-view-tour.png │ ├── icon-view-video.png │ ├── info-blue.png │ ├── info-green.png │ ├── info-red.png │ ├── info-yellow.png │ ├── loading.gif │ ├── logo.gif │ ├── social │ │ ├── 500px.png │ │ ├── AddThis.png │ │ ├── Behance.png │ │ ├── Blogger.png │ │ ├── Deliciou.png │ │ ├── DeviantART.png │ │ ├── Digg.png │ │ ├── Dopplr.png │ │ ├── Dribbble.png │ │ ├── Evernote.png │ │ ├── Facebook.png │ │ ├── Flickr.png │ │ ├── Forrst.png │ │ ├── GitHub.png │ │ ├── Google+.png │ │ ├── Grooveshark.png │ │ ├── Instagram.png │ │ ├── Lastfm.png │ │ ├── LinkedIn.png │ │ ├── Mail.png │ │ ├── MySpace.png │ │ ├── Path.png │ │ ├── Paypal.png │ │ ├── Picasa.png │ │ ├── Posterous.png │ │ ├── RSS.png │ │ ├── Reddit.png │ │ ├── ShareThis.png │ │ ├── Skype.png │ │ ├── Soundcloud.png │ │ ├── Spotify.png │ │ ├── StumbleUpon.png │ │ ├── Tumblr.png │ │ ├── Twitter.png │ │ ├── Viddler.png │ │ ├── Vimeo.png │ │ ├── Virb.png │ │ ├── Windows.png │ │ ├── WordPress.png │ │ ├── YouTube.png │ │ └── Zerply.png │ ├── source │ │ ├── breadcrumb-separator.psd │ │ ├── communities-small.psd │ │ ├── divider-tagline.psd │ │ ├── homes-small.psd │ │ ├── icon-arrows-vert.psd │ │ ├── icon-arrows.psd │ │ ├── icon-bird.psd │ │ ├── icon-contact.psd │ │ ├── icon-home.psd │ │ ├── icon-homes.psd │ │ ├── icon-search.psd │ │ ├── icon-site-access.psd │ │ ├── icon-view.psd │ │ ├── logo.psd │ │ ├── rotating-banner.psd │ │ └── toggle-simple.psd │ ├── toggle-simple.png │ └── toggle.png │ ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── hoverIntent.js │ ├── jquery-1.9.1.min.js │ ├── jquery-custom.js │ ├── jquery-migrate-1.1.0.min.js │ ├── jquery-ui-1.8.9.custom.min.js │ ├── jquery.isotope.min.js │ ├── jquery.nivo.slider.js │ ├── jquery.tabs.js │ ├── jquery.tweet.js │ ├── modernizr-2.6.2.custom.js │ ├── poshytip-1.1 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ └── superfish-1.4.8 │ │ ├── jquery.bgiframe.min.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── spectergroup.html │ └── spectergroup.master ├── Chapter 6 - Navigation └── _catalogs │ └── masterpage │ ├── spectergroup-nav-1-basic │ ├── Specter Homepage.aspx │ ├── Specter Homepage.html │ ├── css │ │ ├── bootstrap-full.min.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── elements.css │ │ ├── isotope.css │ │ ├── nivo-slider.css │ │ ├── style.css │ │ └── superfish.css │ ├── fonts │ │ ├── mensch-webfont.eot │ │ ├── mensch-webfont.svg │ │ ├── mensch-webfont.ttf │ │ └── mensch-webfont.woff │ ├── img │ │ ├── banner-one.jpg │ │ ├── banner-two.jpg │ │ ├── bird.png │ │ ├── bullets │ │ │ ├── arrow.png │ │ │ ├── check.png │ │ │ ├── heart.png │ │ │ ├── plus.png │ │ │ └── star.png │ │ ├── communities-eagle-small.jpg │ │ ├── communities-otay-small.jpg │ │ ├── communities-spruce-small.jpg │ │ ├── divider-tagline.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── homes-small-one.jpg │ │ ├── icon-arrows-vert.png │ │ ├── icon-arrows.png │ │ ├── icon-bird.png │ │ ├── icon-close.png │ │ ├── icon-contact.png │ │ ├── icon-home.png │ │ ├── icon-homes-home.png │ │ ├── icon-homes-view.png │ │ ├── icon-login.png │ │ ├── icon-register.png │ │ ├── icon-search.png │ │ ├── icon-view-photos.png │ │ ├── icon-view-tour.png │ │ ├── icon-view-video.png │ │ ├── info-blue.png │ │ ├── info-green.png │ │ ├── info-red.png │ │ ├── info-yellow.png │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── social │ │ │ ├── 500px.png │ │ │ ├── AddThis.png │ │ │ ├── Behance.png │ │ │ ├── Blogger.png │ │ │ ├── Deliciou.png │ │ │ ├── DeviantART.png │ │ │ ├── Digg.png │ │ │ ├── Dopplr.png │ │ │ ├── Dribbble.png │ │ │ ├── Evernote.png │ │ │ ├── Facebook.png │ │ │ ├── Flickr.png │ │ │ ├── Forrst.png │ │ │ ├── GitHub.png │ │ │ ├── Google+.png │ │ │ ├── Grooveshark.png │ │ │ ├── Instagram.png │ │ │ ├── Lastfm.png │ │ │ ├── LinkedIn.png │ │ │ ├── Mail.png │ │ │ ├── MySpace.png │ │ │ ├── Path.png │ │ │ ├── Paypal.png │ │ │ ├── Picasa.png │ │ │ ├── Posterous.png │ │ │ ├── RSS.png │ │ │ ├── Reddit.png │ │ │ ├── ShareThis.png │ │ │ ├── Skype.png │ │ │ ├── Soundcloud.png │ │ │ ├── Spotify.png │ │ │ ├── StumbleUpon.png │ │ │ ├── Tumblr.png │ │ │ ├── Twitter.png │ │ │ ├── Viddler.png │ │ │ ├── Vimeo.png │ │ │ ├── Virb.png │ │ │ ├── Windows.png │ │ │ ├── WordPress.png │ │ │ ├── YouTube.png │ │ │ └── Zerply.png │ │ ├── toggle-simple.png │ │ └── toggle.png │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── hoverIntent.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-custom.js │ │ ├── jquery-migrate-1.1.0.min.js │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.nivo.slider.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tweet.js │ │ ├── modernizr-2.6.2.custom.js │ │ ├── poshytip-1.1 │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── jquery.poshytip.js │ │ │ ├── jquery.poshytip.min.js │ │ │ ├── tip-darkgray │ │ │ │ ├── tip-darkgray.css │ │ │ │ ├── tip-darkgray.png │ │ │ │ └── tip-darkgray_arrows.png │ │ │ ├── tip-green │ │ │ │ ├── tip-green.css │ │ │ │ └── tip-green_arrows.gif │ │ │ ├── tip-skyblue │ │ │ │ ├── tip-skyblue.css │ │ │ │ ├── tip-skyblue.png │ │ │ │ └── tip-skyblue_arrows.png │ │ │ ├── tip-twitter │ │ │ │ ├── tip-twitter.css │ │ │ │ └── tip-twitter_arrows.gif │ │ │ ├── tip-violet │ │ │ │ ├── tip-violet.css │ │ │ │ ├── tip-violet.png │ │ │ │ └── tip-violet_arrows.png │ │ │ ├── tip-yellow │ │ │ │ ├── tip-yellow.css │ │ │ │ ├── tip-yellow.png │ │ │ │ └── tip-yellow_arrows.png │ │ │ └── tip-yellowsimple │ │ │ │ ├── tip-yellowsimple.css │ │ │ │ └── tip-yellowsimple_arrows.gif │ │ └── superfish-1.4.8 │ │ │ ├── jquery.bgiframe.min.js │ │ │ ├── superfish.js │ │ │ └── supersubs.js │ ├── spectergroup-nav-basic.html │ └── spectergroup-nav-basic.master │ ├── spectergroup-nav-2-jQuery │ ├── css │ │ ├── bootstrap-full.min.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── elements.css │ │ ├── isotope.css │ │ ├── nivo-slider.css │ │ ├── style.css │ │ └── superfish.css │ ├── fonts │ │ ├── mensch-webfont.eot │ │ ├── mensch-webfont.svg │ │ ├── mensch-webfont.ttf │ │ └── mensch-webfont.woff │ ├── img │ │ ├── banner-one.jpg │ │ ├── banner-two.jpg │ │ ├── bird.png │ │ ├── bullets │ │ │ ├── arrow.png │ │ │ ├── check.png │ │ │ ├── heart.png │ │ │ ├── plus.png │ │ │ └── star.png │ │ ├── communities-eagle-small.jpg │ │ ├── communities-otay-small.jpg │ │ ├── communities-spruce-small.jpg │ │ ├── divider-tagline.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── homes-small-one.jpg │ │ ├── icon-arrows-vert.png │ │ ├── icon-arrows.png │ │ ├── icon-bird.png │ │ ├── icon-close.png │ │ ├── icon-contact.png │ │ ├── icon-home.png │ │ ├── icon-homes-home.png │ │ ├── icon-homes-view.png │ │ ├── icon-login.png │ │ ├── icon-register.png │ │ ├── icon-search.png │ │ ├── icon-view-photos.png │ │ ├── icon-view-tour.png │ │ ├── icon-view-video.png │ │ ├── info-blue.png │ │ ├── info-green.png │ │ ├── info-red.png │ │ ├── info-yellow.png │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── social │ │ │ ├── 500px.png │ │ │ ├── AddThis.png │ │ │ ├── Behance.png │ │ │ ├── Blogger.png │ │ │ ├── Deliciou.png │ │ │ ├── DeviantART.png │ │ │ ├── Digg.png │ │ │ ├── Dopplr.png │ │ │ ├── Dribbble.png │ │ │ ├── Evernote.png │ │ │ ├── Facebook.png │ │ │ ├── Flickr.png │ │ │ ├── Forrst.png │ │ │ ├── GitHub.png │ │ │ ├── Google+.png │ │ │ ├── Grooveshark.png │ │ │ ├── Instagram.png │ │ │ ├── Lastfm.png │ │ │ ├── LinkedIn.png │ │ │ ├── Mail.png │ │ │ ├── MySpace.png │ │ │ ├── Path.png │ │ │ ├── Paypal.png │ │ │ ├── Picasa.png │ │ │ ├── Posterous.png │ │ │ ├── RSS.png │ │ │ ├── Reddit.png │ │ │ ├── ShareThis.png │ │ │ ├── Skype.png │ │ │ ├── Soundcloud.png │ │ │ ├── Spotify.png │ │ │ ├── StumbleUpon.png │ │ │ ├── Tumblr.png │ │ │ ├── Twitter.png │ │ │ ├── Viddler.png │ │ │ ├── Vimeo.png │ │ │ ├── Virb.png │ │ │ ├── Windows.png │ │ │ ├── WordPress.png │ │ │ ├── YouTube.png │ │ │ └── Zerply.png │ │ ├── toggle-simple.png │ │ └── toggle.png │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── hoverIntent.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-custom.js │ │ ├── jquery-migrate-1.1.0.min.js │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.nivo.slider.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tweet.js │ │ ├── modernizr-2.6.2.custom.js │ │ ├── poshytip-1.1 │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── jquery.poshytip.js │ │ │ ├── jquery.poshytip.min.js │ │ │ ├── tip-darkgray │ │ │ │ ├── tip-darkgray.css │ │ │ │ ├── tip-darkgray.png │ │ │ │ └── tip-darkgray_arrows.png │ │ │ ├── tip-green │ │ │ │ ├── tip-green.css │ │ │ │ └── tip-green_arrows.gif │ │ │ ├── tip-skyblue │ │ │ │ ├── tip-skyblue.css │ │ │ │ ├── tip-skyblue.png │ │ │ │ └── tip-skyblue_arrows.png │ │ │ ├── tip-twitter │ │ │ │ ├── tip-twitter.css │ │ │ │ └── tip-twitter_arrows.gif │ │ │ ├── tip-violet │ │ │ │ ├── tip-violet.css │ │ │ │ ├── tip-violet.png │ │ │ │ └── tip-violet_arrows.png │ │ │ ├── tip-yellow │ │ │ │ ├── tip-yellow.css │ │ │ │ ├── tip-yellow.png │ │ │ │ └── tip-yellow_arrows.png │ │ │ └── tip-yellowsimple │ │ │ │ ├── tip-yellowsimple.css │ │ │ │ └── tip-yellowsimple_arrows.gif │ │ └── superfish-1.4.8 │ │ │ ├── jquery.bgiframe.min.js │ │ │ ├── superfish.js │ │ │ └── supersubs.js │ ├── spectergroup-nav-jquery.html │ └── spectergroup-nav-jquery.master │ ├── spectergroup-nav-3-float │ ├── css │ │ ├── bootstrap-full.min.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── elements.css │ │ ├── isotope.css │ │ ├── nivo-slider.css │ │ ├── style.css │ │ └── superfish.css │ ├── fonts │ │ ├── mensch-webfont.eot │ │ ├── mensch-webfont.svg │ │ ├── mensch-webfont.ttf │ │ └── mensch-webfont.woff │ ├── img │ │ ├── banner-one.jpg │ │ ├── banner-two.jpg │ │ ├── bird.png │ │ ├── bullets │ │ │ ├── arrow.png │ │ │ ├── check.png │ │ │ ├── heart.png │ │ │ ├── plus.png │ │ │ └── star.png │ │ ├── communities-eagle-small.jpg │ │ ├── communities-otay-small.jpg │ │ ├── communities-spruce-small.jpg │ │ ├── divider-tagline.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── homes-small-one.jpg │ │ ├── icon-arrows-vert.png │ │ ├── icon-arrows.png │ │ ├── icon-bird.png │ │ ├── icon-close.png │ │ ├── icon-contact.png │ │ ├── icon-home.png │ │ ├── icon-homes-home.png │ │ ├── icon-homes-view.png │ │ ├── icon-login.png │ │ ├── icon-register.png │ │ ├── icon-search.png │ │ ├── icon-view-photos.png │ │ ├── icon-view-tour.png │ │ ├── icon-view-video.png │ │ ├── info-blue.png │ │ ├── info-green.png │ │ ├── info-red.png │ │ ├── info-yellow.png │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── social │ │ │ ├── 500px.png │ │ │ ├── AddThis.png │ │ │ ├── Behance.png │ │ │ ├── Blogger.png │ │ │ ├── Deliciou.png │ │ │ ├── DeviantART.png │ │ │ ├── Digg.png │ │ │ ├── Dopplr.png │ │ │ ├── Dribbble.png │ │ │ ├── Evernote.png │ │ │ ├── Facebook.png │ │ │ ├── Flickr.png │ │ │ ├── Forrst.png │ │ │ ├── GitHub.png │ │ │ ├── Google+.png │ │ │ ├── Grooveshark.png │ │ │ ├── Instagram.png │ │ │ ├── Lastfm.png │ │ │ ├── LinkedIn.png │ │ │ ├── Mail.png │ │ │ ├── MySpace.png │ │ │ ├── Path.png │ │ │ ├── Paypal.png │ │ │ ├── Picasa.png │ │ │ ├── Posterous.png │ │ │ ├── RSS.png │ │ │ ├── Reddit.png │ │ │ ├── ShareThis.png │ │ │ ├── Skype.png │ │ │ ├── Soundcloud.png │ │ │ ├── Spotify.png │ │ │ ├── StumbleUpon.png │ │ │ ├── Tumblr.png │ │ │ ├── Twitter.png │ │ │ ├── Viddler.png │ │ │ ├── Vimeo.png │ │ │ ├── Virb.png │ │ │ ├── Windows.png │ │ │ ├── WordPress.png │ │ │ ├── YouTube.png │ │ │ └── Zerply.png │ │ ├── toggle-simple.png │ │ └── toggle.png │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── hoverIntent.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-custom.js │ │ ├── jquery-migrate-1.1.0.min.js │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.nivo.slider.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tweet.js │ │ ├── modernizr-2.6.2.custom.js │ │ ├── poshytip-1.1 │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── jquery.poshytip.js │ │ │ ├── jquery.poshytip.min.js │ │ │ ├── tip-darkgray │ │ │ │ ├── tip-darkgray.css │ │ │ │ ├── tip-darkgray.png │ │ │ │ └── tip-darkgray_arrows.png │ │ │ ├── tip-green │ │ │ │ ├── tip-green.css │ │ │ │ └── tip-green_arrows.gif │ │ │ ├── tip-skyblue │ │ │ │ ├── tip-skyblue.css │ │ │ │ ├── tip-skyblue.png │ │ │ │ └── tip-skyblue_arrows.png │ │ │ ├── tip-twitter │ │ │ │ ├── tip-twitter.css │ │ │ │ └── tip-twitter_arrows.gif │ │ │ ├── tip-violet │ │ │ │ ├── tip-violet.css │ │ │ │ ├── tip-violet.png │ │ │ │ └── tip-violet_arrows.png │ │ │ ├── tip-yellow │ │ │ │ ├── tip-yellow.css │ │ │ │ ├── tip-yellow.png │ │ │ │ └── tip-yellow_arrows.png │ │ │ └── tip-yellowsimple │ │ │ │ ├── tip-yellowsimple.css │ │ │ │ └── tip-yellowsimple_arrows.gif │ │ └── superfish-1.4.8 │ │ │ ├── jquery.bgiframe.min.js │ │ │ ├── superfish.js │ │ │ └── supersubs.js │ ├── spectergroup-nav-float.html │ └── spectergroup-nav-float.master │ ├── spectergroup-nav-4-dropdown │ ├── css │ │ ├── bootstrap-full.min.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── elements.css │ │ ├── isotope.css │ │ ├── nivo-slider.css │ │ ├── style.css │ │ └── superfish.css │ ├── fonts │ │ ├── mensch-webfont.eot │ │ ├── mensch-webfont.svg │ │ ├── mensch-webfont.ttf │ │ └── mensch-webfont.woff │ ├── img │ │ ├── banner-one.jpg │ │ ├── banner-two.jpg │ │ ├── bird.png │ │ ├── bullets │ │ │ ├── arrow.png │ │ │ ├── check.png │ │ │ ├── heart.png │ │ │ ├── plus.png │ │ │ └── star.png │ │ ├── communities-eagle-small.jpg │ │ ├── communities-otay-small.jpg │ │ ├── communities-spruce-small.jpg │ │ ├── divider-tagline.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── homes-small-one.jpg │ │ ├── icon-arrows-vert.png │ │ ├── icon-arrows.png │ │ ├── icon-bird.png │ │ ├── icon-close.png │ │ ├── icon-contact.png │ │ ├── icon-home.png │ │ ├── icon-homes-home.png │ │ ├── icon-homes-view.png │ │ ├── icon-login.png │ │ ├── icon-register.png │ │ ├── icon-search.png │ │ ├── icon-view-photos.png │ │ ├── icon-view-tour.png │ │ ├── icon-view-video.png │ │ ├── info-blue.png │ │ ├── info-green.png │ │ ├── info-red.png │ │ ├── info-yellow.png │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── social │ │ │ ├── 500px.png │ │ │ ├── AddThis.png │ │ │ ├── Behance.png │ │ │ ├── Blogger.png │ │ │ ├── Deliciou.png │ │ │ ├── DeviantART.png │ │ │ ├── Digg.png │ │ │ ├── Dopplr.png │ │ │ ├── Dribbble.png │ │ │ ├── Evernote.png │ │ │ ├── Facebook.png │ │ │ ├── Flickr.png │ │ │ ├── Forrst.png │ │ │ ├── GitHub.png │ │ │ ├── Google+.png │ │ │ ├── Grooveshark.png │ │ │ ├── Instagram.png │ │ │ ├── Lastfm.png │ │ │ ├── LinkedIn.png │ │ │ ├── Mail.png │ │ │ ├── MySpace.png │ │ │ ├── Path.png │ │ │ ├── Paypal.png │ │ │ ├── Picasa.png │ │ │ ├── Posterous.png │ │ │ ├── RSS.png │ │ │ ├── Reddit.png │ │ │ ├── ShareThis.png │ │ │ ├── Skype.png │ │ │ ├── Soundcloud.png │ │ │ ├── Spotify.png │ │ │ ├── StumbleUpon.png │ │ │ ├── Tumblr.png │ │ │ ├── Twitter.png │ │ │ ├── Viddler.png │ │ │ ├── Vimeo.png │ │ │ ├── Virb.png │ │ │ ├── Windows.png │ │ │ ├── WordPress.png │ │ │ ├── YouTube.png │ │ │ └── Zerply.png │ │ ├── toggle-simple.png │ │ └── toggle.png │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── hoverIntent.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-custom.js │ │ ├── jquery-migrate-1.1.0.min.js │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.nivo.slider.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tweet.js │ │ ├── modernizr-2.6.2.custom.js │ │ ├── poshytip-1.1 │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── jquery.poshytip.js │ │ │ ├── jquery.poshytip.min.js │ │ │ ├── tip-darkgray │ │ │ │ ├── tip-darkgray.css │ │ │ │ ├── tip-darkgray.png │ │ │ │ └── tip-darkgray_arrows.png │ │ │ ├── tip-green │ │ │ │ ├── tip-green.css │ │ │ │ └── tip-green_arrows.gif │ │ │ ├── tip-skyblue │ │ │ │ ├── tip-skyblue.css │ │ │ │ ├── tip-skyblue.png │ │ │ │ └── tip-skyblue_arrows.png │ │ │ ├── tip-twitter │ │ │ │ ├── tip-twitter.css │ │ │ │ └── tip-twitter_arrows.gif │ │ │ ├── tip-violet │ │ │ │ ├── tip-violet.css │ │ │ │ ├── tip-violet.png │ │ │ │ └── tip-violet_arrows.png │ │ │ ├── tip-yellow │ │ │ │ ├── tip-yellow.css │ │ │ │ ├── tip-yellow.png │ │ │ │ └── tip-yellow_arrows.png │ │ │ └── tip-yellowsimple │ │ │ │ ├── tip-yellowsimple.css │ │ │ │ └── tip-yellowsimple_arrows.gif │ │ └── superfish-1.4.8 │ │ │ ├── jquery.bgiframe.min.js │ │ │ ├── superfish.js │ │ │ └── supersubs.js │ ├── spectergroup-nav-dropdown.html │ └── spectergroup-nav-dropdown.master │ ├── spectergroup-nav-5-collapse │ ├── css │ │ ├── bootstrap-full.min.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── elements.css │ │ ├── isotope.css │ │ ├── nivo-slider.css │ │ ├── style.css │ │ └── superfish.css │ ├── fonts │ │ ├── mensch-webfont.eot │ │ ├── mensch-webfont.svg │ │ ├── mensch-webfont.ttf │ │ └── mensch-webfont.woff │ ├── img │ │ ├── banner-one.jpg │ │ ├── banner-two.jpg │ │ ├── bird.png │ │ ├── bullets │ │ │ ├── arrow.png │ │ │ ├── check.png │ │ │ ├── heart.png │ │ │ ├── plus.png │ │ │ └── star.png │ │ ├── communities-eagle-small.jpg │ │ ├── communities-otay-small.jpg │ │ ├── communities-spruce-small.jpg │ │ ├── divider-tagline.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── homes-small-one.jpg │ │ ├── icon-arrows-vert.png │ │ ├── icon-arrows.png │ │ ├── icon-bird.png │ │ ├── icon-close.png │ │ ├── icon-contact.png │ │ ├── icon-home.png │ │ ├── icon-homes-home.png │ │ ├── icon-homes-view.png │ │ ├── icon-login.png │ │ ├── icon-register.png │ │ ├── icon-search.png │ │ ├── icon-view-photos.png │ │ ├── icon-view-tour.png │ │ ├── icon-view-video.png │ │ ├── info-blue.png │ │ ├── info-green.png │ │ ├── info-red.png │ │ ├── info-yellow.png │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── social │ │ │ ├── 500px.png │ │ │ ├── AddThis.png │ │ │ ├── Behance.png │ │ │ ├── Blogger.png │ │ │ ├── Deliciou.png │ │ │ ├── DeviantART.png │ │ │ ├── Digg.png │ │ │ ├── Dopplr.png │ │ │ ├── Dribbble.png │ │ │ ├── Evernote.png │ │ │ ├── Facebook.png │ │ │ ├── Flickr.png │ │ │ ├── Forrst.png │ │ │ ├── GitHub.png │ │ │ ├── Google+.png │ │ │ ├── Grooveshark.png │ │ │ ├── Instagram.png │ │ │ ├── Lastfm.png │ │ │ ├── LinkedIn.png │ │ │ ├── Mail.png │ │ │ ├── MySpace.png │ │ │ ├── Path.png │ │ │ ├── Paypal.png │ │ │ ├── Picasa.png │ │ │ ├── Posterous.png │ │ │ ├── RSS.png │ │ │ ├── Reddit.png │ │ │ ├── ShareThis.png │ │ │ ├── Skype.png │ │ │ ├── Soundcloud.png │ │ │ ├── Spotify.png │ │ │ ├── StumbleUpon.png │ │ │ ├── Tumblr.png │ │ │ ├── Twitter.png │ │ │ ├── Viddler.png │ │ │ ├── Vimeo.png │ │ │ ├── Virb.png │ │ │ ├── Windows.png │ │ │ ├── WordPress.png │ │ │ ├── YouTube.png │ │ │ └── Zerply.png │ │ ├── toggle-simple.png │ │ └── toggle.png │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── hoverIntent.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-custom.js │ │ ├── jquery-migrate-1.1.0.min.js │ │ ├── jquery-ui-1.8.9.custom.min.js │ │ ├── jquery.isotope.min.js │ │ ├── jquery.nivo.slider.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tweet.js │ │ ├── modernizr-2.6.2.custom.js │ │ ├── poshytip-1.1 │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── jquery.poshytip.js │ │ │ ├── jquery.poshytip.min.js │ │ │ ├── tip-darkgray │ │ │ │ ├── tip-darkgray.css │ │ │ │ ├── tip-darkgray.png │ │ │ │ └── tip-darkgray_arrows.png │ │ │ ├── tip-green │ │ │ │ ├── tip-green.css │ │ │ │ └── tip-green_arrows.gif │ │ │ ├── tip-skyblue │ │ │ │ ├── tip-skyblue.css │ │ │ │ ├── tip-skyblue.png │ │ │ │ └── tip-skyblue_arrows.png │ │ │ ├── tip-twitter │ │ │ │ ├── tip-twitter.css │ │ │ │ └── tip-twitter_arrows.gif │ │ │ ├── tip-violet │ │ │ │ ├── tip-violet.css │ │ │ │ ├── tip-violet.png │ │ │ │ └── tip-violet_arrows.png │ │ │ ├── tip-yellow │ │ │ │ ├── tip-yellow.css │ │ │ │ ├── tip-yellow.png │ │ │ │ └── tip-yellow_arrows.png │ │ │ └── tip-yellowsimple │ │ │ │ ├── tip-yellowsimple.css │ │ │ │ └── tip-yellowsimple_arrows.gif │ │ └── superfish-1.4.8 │ │ │ ├── jquery.bgiframe.min.js │ │ │ ├── superfish.js │ │ │ └── supersubs.js │ ├── spectergroup-nav-collapse.html │ └── spectergroup-nav-collapse.master │ └── spectergroup-nav-6-breadcrumb │ ├── css │ ├── bootstrap-full.min.css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── elements.css │ ├── isotope.css │ ├── nivo-slider.css │ ├── style.css │ └── superfish.css │ ├── fonts │ ├── mensch-webfont.eot │ ├── mensch-webfont.svg │ ├── mensch-webfont.ttf │ └── mensch-webfont.woff │ ├── img │ ├── banner-one.jpg │ ├── banner-two.jpg │ ├── bird.png │ ├── breadcrumb-separator.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ ├── communities-spruce-small.jpg │ ├── divider-tagline.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── homes-small-one.jpg │ ├── icon-arrows-vert.png │ ├── icon-arrows.png │ ├── icon-bird.png │ ├── icon-close.png │ ├── icon-contact.png │ ├── icon-home.png │ ├── icon-homes-home.png │ ├── icon-homes-view.png │ ├── icon-login.png │ ├── icon-register.png │ ├── icon-search.png │ ├── icon-view-photos.png │ ├── icon-view-tour.png │ ├── icon-view-video.png │ ├── info-blue.png │ ├── info-green.png │ ├── info-red.png │ ├── info-yellow.png │ ├── loading.gif │ ├── logo.gif │ ├── social │ │ ├── 500px.png │ │ ├── AddThis.png │ │ ├── Behance.png │ │ ├── Blogger.png │ │ ├── Deliciou.png │ │ ├── DeviantART.png │ │ ├── Digg.png │ │ ├── Dopplr.png │ │ ├── Dribbble.png │ │ ├── Evernote.png │ │ ├── Facebook.png │ │ ├── Flickr.png │ │ ├── Forrst.png │ │ ├── GitHub.png │ │ ├── Google+.png │ │ ├── Grooveshark.png │ │ ├── Instagram.png │ │ ├── Lastfm.png │ │ ├── LinkedIn.png │ │ ├── Mail.png │ │ ├── MySpace.png │ │ ├── Path.png │ │ ├── Paypal.png │ │ ├── Picasa.png │ │ ├── Posterous.png │ │ ├── RSS.png │ │ ├── Reddit.png │ │ ├── ShareThis.png │ │ ├── Skype.png │ │ ├── Soundcloud.png │ │ ├── Spotify.png │ │ ├── StumbleUpon.png │ │ ├── Tumblr.png │ │ ├── Twitter.png │ │ ├── Viddler.png │ │ ├── Vimeo.png │ │ ├── Virb.png │ │ ├── Windows.png │ │ ├── WordPress.png │ │ ├── YouTube.png │ │ └── Zerply.png │ ├── toggle-simple.png │ └── toggle.png │ ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── hoverIntent.js │ ├── jquery-1.9.1.min.js │ ├── jquery-custom.js │ ├── jquery-migrate-1.1.0.min.js │ ├── jquery-ui-1.8.9.custom.min.js │ ├── jquery.isotope.min.js │ ├── jquery.nivo.slider.js │ ├── jquery.tabs.js │ ├── jquery.tweet.js │ ├── modernizr-2.6.2.custom.js │ ├── poshytip-1.1 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ └── superfish-1.4.8 │ │ ├── jquery.bgiframe.min.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── spectergroup-nav-breadcrumb.html │ └── spectergroup-nav-breadcrumb.master ├── Chapter 7 - Page Layouts └── _catalogs │ └── masterpage │ └── spectergroup │ ├── Community_Property.aspx │ ├── Community_Property.html │ ├── about-pagelayout-bootstrap.aspx │ ├── about-pagelayout.aspx │ ├── css │ ├── bootstrap-full.min.css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── elements.css │ ├── isotope.css │ ├── nivo-slider.css │ ├── style.css │ └── superfish.css │ ├── fonts │ ├── mensch-webfont.eot │ ├── mensch-webfont.svg │ ├── mensch-webfont.ttf │ └── mensch-webfont.woff │ ├── img │ ├── banner-one.jpg │ ├── banner-two.jpg │ ├── bird.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ ├── communities-spruce-small.jpg │ ├── divider-tagline.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── homes-small-one.jpg │ ├── icon-arrows-vert.png │ ├── icon-arrows.png │ ├── icon-bird.png │ ├── icon-close.png │ ├── icon-contact.png │ ├── icon-home.png │ ├── icon-homes-home.png │ ├── icon-homes-view.png │ ├── icon-login.png │ ├── icon-register.png │ ├── icon-search.png │ ├── icon-view-photos.png │ ├── icon-view-tour.png │ ├── icon-view-video.png │ ├── info-blue.png │ ├── info-green.png │ ├── info-red.png │ ├── info-yellow.png │ ├── loading.gif │ ├── logo.gif │ ├── social │ │ ├── 500px.png │ │ ├── AddThis.png │ │ ├── Behance.png │ │ ├── Blogger.png │ │ ├── Deliciou.png │ │ ├── DeviantART.png │ │ ├── Digg.png │ │ ├── Dopplr.png │ │ ├── Dribbble.png │ │ ├── Evernote.png │ │ ├── Facebook.png │ │ ├── Flickr.png │ │ ├── Forrst.png │ │ ├── GitHub.png │ │ ├── Google+.png │ │ ├── Grooveshark.png │ │ ├── Instagram.png │ │ ├── Lastfm.png │ │ ├── LinkedIn.png │ │ ├── Mail.png │ │ ├── MySpace.png │ │ ├── Path.png │ │ ├── Paypal.png │ │ ├── Picasa.png │ │ ├── Posterous.png │ │ ├── RSS.png │ │ ├── Reddit.png │ │ ├── ShareThis.png │ │ ├── Skype.png │ │ ├── Soundcloud.png │ │ ├── Spotify.png │ │ ├── StumbleUpon.png │ │ ├── Tumblr.png │ │ ├── Twitter.png │ │ ├── Viddler.png │ │ ├── Vimeo.png │ │ ├── Virb.png │ │ ├── Windows.png │ │ ├── WordPress.png │ │ ├── YouTube.png │ │ └── Zerply.png │ ├── toggle-simple.png │ └── toggle.png │ ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── hoverIntent.js │ ├── jquery-1.9.1.min.js │ ├── jquery-custom.js │ ├── jquery-migrate-1.1.0.min.js │ ├── jquery-ui-1.8.9.custom.min.js │ ├── jquery.isotope.min.js │ ├── jquery.nivo.slider.js │ ├── jquery.tabs.js │ ├── jquery.tweet.js │ ├── modernizr-2.6.2.custom.js │ ├── poshytip-1.1 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ └── superfish-1.4.8 │ │ ├── jquery.bgiframe.min.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── spectergroup.html │ └── spectergroup.master ├── Chapter 8 - Cross Site Content ├── SiteAssets │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ └── communities-spruce-small.jpg └── _catalogs │ └── masterpage │ ├── Display Templates │ └── Content Web Parts │ │ ├── Control_List_Specter.html │ │ ├── Control_List_Specter.js │ │ ├── Item_LargePicture_Specter.html │ │ └── Item_LargePicture_Specter.js │ └── spectergroup │ ├── Community_Property.aspx │ ├── Community_Property.html │ ├── Specter Communities.aspx │ ├── Specter Communities.html │ ├── Specter Homepage.aspx │ ├── Specter Homepage.html │ ├── css │ ├── bootstrap-full.min.css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── elements.css │ ├── isotope.css │ ├── nivo-slider.css │ ├── style.css │ └── superfish.css │ ├── fonts │ ├── mensch-webfont.eot │ ├── mensch-webfont.svg │ ├── mensch-webfont.ttf │ └── mensch-webfont.woff │ ├── img │ ├── banner-one.jpg │ ├── banner-two.jpg │ ├── bird.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ ├── communities-spruce-small.jpg │ ├── divider-tagline.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── homes-small-one.jpg │ ├── icon-arrows-vert.png │ ├── icon-arrows.png │ ├── icon-bird.png │ ├── icon-close.png │ ├── icon-contact.png │ ├── icon-home.png │ ├── icon-homes-home.png │ ├── icon-homes-view.png │ ├── icon-login.png │ ├── icon-register.png │ ├── icon-search.png │ ├── icon-view-photos.png │ ├── icon-view-tour.png │ ├── icon-view-video.png │ ├── info-blue.png │ ├── info-green.png │ ├── info-red.png │ ├── info-yellow.png │ ├── loading.gif │ ├── logo.gif │ ├── social │ │ ├── 500px.png │ │ ├── AddThis.png │ │ ├── Behance.png │ │ ├── Blogger.png │ │ ├── Deliciou.png │ │ ├── DeviantART.png │ │ ├── Digg.png │ │ ├── Dopplr.png │ │ ├── Dribbble.png │ │ ├── Evernote.png │ │ ├── Facebook.png │ │ ├── Flickr.png │ │ ├── Forrst.png │ │ ├── GitHub.png │ │ ├── Google+.png │ │ ├── Grooveshark.png │ │ ├── Instagram.png │ │ ├── Lastfm.png │ │ ├── LinkedIn.png │ │ ├── Mail.png │ │ ├── MySpace.png │ │ ├── Path.png │ │ ├── Paypal.png │ │ ├── Picasa.png │ │ ├── Posterous.png │ │ ├── RSS.png │ │ ├── Reddit.png │ │ ├── ShareThis.png │ │ ├── Skype.png │ │ ├── Soundcloud.png │ │ ├── Spotify.png │ │ ├── StumbleUpon.png │ │ ├── Tumblr.png │ │ ├── Twitter.png │ │ ├── Viddler.png │ │ ├── Vimeo.png │ │ ├── Virb.png │ │ ├── Windows.png │ │ ├── WordPress.png │ │ ├── YouTube.png │ │ └── Zerply.png │ ├── toggle-simple.png │ └── toggle.png │ ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── hoverIntent.js │ ├── jquery-1.9.1.min.js │ ├── jquery-custom.js │ ├── jquery-migrate-1.1.0.min.js │ ├── jquery-ui-1.8.9.custom.min.js │ ├── jquery.isotope.min.js │ ├── jquery.nivo.slider.js │ ├── jquery.tabs.js │ ├── jquery.tweet.js │ ├── modernizr-2.6.2.custom.js │ ├── poshytip-1.1 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ └── superfish-1.4.8 │ │ ├── jquery.bgiframe.min.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── spectergroup.html │ └── spectergroup.master ├── Chapter 9 - Search Driven Content ├── SiteAssets │ ├── 2bd-b.png │ ├── 2bd.png │ ├── L1.png │ ├── L2.png │ ├── L3.png │ ├── b1.png │ ├── b2.png │ ├── beach3.png │ ├── c2.png │ ├── c3.png │ ├── commercial1.png │ ├── r3.png │ └── r4.png └── _catalogs │ └── masterpage │ ├── Display Templates │ └── Content Web Parts │ │ ├── Control_List_Specter-commented.html │ │ ├── Control_List_Specter.html │ │ ├── Control_List_Specter.js │ │ ├── Item_LargePicture_Specter-commented.html │ │ ├── Item_LargePicture_Specter.html │ │ └── Item_LargePicture_Specter.js │ └── spectergroup │ ├── FloorPlans.aspx │ ├── FloorPlans.html │ ├── Specter Homepage.aspx │ ├── Specter Homepage.html │ ├── css │ ├── bootstrap-full.min.css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── elements.css │ ├── isotope.css │ ├── nivo-slider.css │ ├── style.css │ └── superfish.css │ ├── fonts │ ├── mensch-webfont.eot │ ├── mensch-webfont.svg │ ├── mensch-webfont.ttf │ └── mensch-webfont.woff │ ├── img │ ├── banner-one.jpg │ ├── banner-two.jpg │ ├── bird.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ ├── communities-spruce-small.jpg │ ├── divider-tagline.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── homes-small-one.jpg │ ├── icon-arrows-vert.png │ ├── icon-arrows.png │ ├── icon-bird.png │ ├── icon-close.png │ ├── icon-contact.png │ ├── icon-home.png │ ├── icon-homes-home.png │ ├── icon-homes-view.png │ ├── icon-login.png │ ├── icon-register.png │ ├── icon-search.png │ ├── icon-view-photos.png │ ├── icon-view-tour.png │ ├── icon-view-video.png │ ├── info-blue.png │ ├── info-green.png │ ├── info-red.png │ ├── info-yellow.png │ ├── loading.gif │ ├── logo.gif │ ├── social │ │ ├── 500px.png │ │ ├── AddThis.png │ │ ├── Behance.png │ │ ├── Blogger.png │ │ ├── Deliciou.png │ │ ├── DeviantART.png │ │ ├── Digg.png │ │ ├── Dopplr.png │ │ ├── Dribbble.png │ │ ├── Evernote.png │ │ ├── Facebook.png │ │ ├── Flickr.png │ │ ├── Forrst.png │ │ ├── GitHub.png │ │ ├── Google+.png │ │ ├── Grooveshark.png │ │ ├── Instagram.png │ │ ├── Lastfm.png │ │ ├── LinkedIn.png │ │ ├── Mail.png │ │ ├── MySpace.png │ │ ├── Path.png │ │ ├── Paypal.png │ │ ├── Picasa.png │ │ ├── Posterous.png │ │ ├── RSS.png │ │ ├── Reddit.png │ │ ├── ShareThis.png │ │ ├── Skype.png │ │ ├── Soundcloud.png │ │ ├── Spotify.png │ │ ├── StumbleUpon.png │ │ ├── Tumblr.png │ │ ├── Twitter.png │ │ ├── Viddler.png │ │ ├── Vimeo.png │ │ ├── Virb.png │ │ ├── Windows.png │ │ ├── WordPress.png │ │ ├── YouTube.png │ │ └── Zerply.png │ ├── toggle-simple.png │ └── toggle.png │ ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── hoverIntent.js │ ├── jquery-1.9.1.min.js │ ├── jquery-custom.js │ ├── jquery-migrate-1.1.0.min.js │ ├── jquery-ui-1.8.9.custom.min.js │ ├── jquery.isotope.min.js │ ├── jquery.nivo.slider.js │ ├── jquery.tabs.js │ ├── jquery.tweet.js │ ├── modernizr-2.6.2.custom.js │ ├── poshytip-1.1 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ └── superfish-1.4.8 │ │ ├── jquery.bgiframe.min.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── spectergroup.html │ └── spectergroup.master ├── Photoshop-Comps-Full ├── newappafterinstall.psd ├── sg-homepage-320.psd ├── sg-homepage-768.psd └── sg-homepage-960.psd ├── README.md ├── Supplemental - Bootstrap 3 SharePoint └── _catalogs │ └── masterpage │ └── spectergroup-bootstrap3 │ ├── about.aspx │ ├── about.html │ ├── blog.aspx │ ├── blog.html │ ├── cewp-content │ ├── about-1-pagecontent.htm │ ├── about-2-leftcol.htm │ ├── about-3-rightcol.htm │ ├── blog-1-leftcol.htm │ ├── blog-2-rightcol.htm │ ├── blogpost-1-leftcol.htm │ ├── blogpost-2-rightcol.htm │ ├── communities-1-main.htm │ ├── contact-1-main.htm │ ├── eagle-vista-1-top.htm │ ├── eagle-vista-2-leftcol.htm │ ├── eagle-vista-3-rightcol.htm │ ├── homepage-1-rotating.htm │ ├── homepage-2-community.htm │ ├── homepage-3-communitylist.htm │ ├── otay-crossings-1-top.htm │ ├── otay-crossings-2-leftcol.htm │ ├── otay-crossings-3-rightcol.htm │ ├── property-1-main.htm │ ├── spruce-meadows-1-top.htm │ ├── spruce-meadows-2-leftcol.htm │ └── spruce-meadows-3-rightcol.htm │ ├── community.aspx │ ├── community.html │ ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── elements.css │ ├── isotope.css │ ├── nivo-slider.css │ ├── style.css │ └── superfish.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── mensch-webfont.eot │ ├── mensch-webfont.svg │ ├── mensch-webfont.ttf │ └── mensch-webfont.woff │ ├── img │ ├── banner-one.jpg │ ├── banner-two.jpg │ ├── bird.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── communities-eagle-small.jpg │ ├── communities-otay-small.jpg │ ├── communities-spruce-small.jpg │ ├── divider-tagline.png │ ├── homes-small-one.jpg │ ├── ico │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ ├── apple-touch-icon-72-precomposed.png │ │ └── favicon.png │ ├── icon-arrows-vert.png │ ├── icon-arrows.png │ ├── icon-bird.png │ ├── icon-close.png │ ├── icon-contact.png │ ├── icon-home.png │ ├── icon-homes-home.png │ ├── icon-homes-view.png │ ├── icon-login.png │ ├── icon-register.png │ ├── icon-search.png │ ├── icon-view-photos.png │ ├── icon-view-tour.png │ ├── icon-view-video.png │ ├── info-blue.png │ ├── info-green.png │ ├── info-red.png │ ├── info-yellow.png │ ├── loading.gif │ ├── logo.gif │ ├── social │ │ ├── 500px.png │ │ ├── AddThis.png │ │ ├── Behance.png │ │ ├── Blogger.png │ │ ├── Deliciou.png │ │ ├── DeviantART.png │ │ ├── Digg.png │ │ ├── Dopplr.png │ │ ├── Dribbble.png │ │ ├── Evernote.png │ │ ├── Facebook.png │ │ ├── Flickr.png │ │ ├── Forrst.png │ │ ├── GitHub.png │ │ ├── GooglePlus.png │ │ ├── Grooveshark.png │ │ ├── Instagram.png │ │ ├── Lastfm.png │ │ ├── LinkedIn.png │ │ ├── Mail.png │ │ ├── MySpace.png │ │ ├── Path.png │ │ ├── Paypal.png │ │ ├── Picasa.png │ │ ├── Posterous.png │ │ ├── RSS.png │ │ ├── Reddit.png │ │ ├── ShareThis.png │ │ ├── Skype.png │ │ ├── Soundcloud.png │ │ ├── Spotify.png │ │ ├── StumbleUpon.png │ │ ├── Tumblr.png │ │ ├── Twitter.png │ │ ├── Viddler.png │ │ ├── Vimeo.png │ │ ├── Virb.png │ │ ├── Windows.png │ │ ├── WordPress.png │ │ ├── YouTube.png │ │ └── Zerply.png │ ├── source │ │ ├── communities-small.psd │ │ ├── divider-tagline.psd │ │ ├── homes-small.psd │ │ ├── icon-arrows-vert.psd │ │ ├── icon-arrows.psd │ │ ├── icon-bird.psd │ │ ├── icon-contact.psd │ │ ├── icon-home.psd │ │ ├── icon-homes.psd │ │ ├── icon-search.psd │ │ ├── icon-site-access.psd │ │ ├── icon-view.psd │ │ ├── logo.psd │ │ ├── rotating-banner.psd │ │ └── toggle-simple.psd │ ├── toggle-simple.png │ └── toggle.png │ ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── hoverIntent.js │ ├── jquery-1.9.1.min.js │ ├── jquery-custom.js │ ├── jquery-migrate-1.1.0.min.js │ ├── jquery-ui-1.8.9.custom.min.js │ ├── jquery.isotope.min.js │ ├── jquery.nivo.slider.js │ ├── jquery.tabs.js │ ├── jquery.tweet.js │ ├── modernizr-2.6.2.custom.js │ ├── poshytip-1.1 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── jquery.poshytip.js │ │ ├── jquery.poshytip.min.js │ │ ├── tip-darkgray │ │ │ ├── tip-darkgray.css │ │ │ ├── tip-darkgray.png │ │ │ └── tip-darkgray_arrows.png │ │ ├── tip-green │ │ │ ├── tip-green.css │ │ │ └── tip-green_arrows.gif │ │ ├── tip-skyblue │ │ │ ├── tip-skyblue.css │ │ │ ├── tip-skyblue.png │ │ │ └── tip-skyblue_arrows.png │ │ ├── tip-twitter │ │ │ ├── tip-twitter.css │ │ │ └── tip-twitter_arrows.gif │ │ ├── tip-violet │ │ │ ├── tip-violet.css │ │ │ ├── tip-violet.png │ │ │ └── tip-violet_arrows.png │ │ ├── tip-yellow │ │ │ ├── tip-yellow.css │ │ │ ├── tip-yellow.png │ │ │ └── tip-yellow_arrows.png │ │ └── tip-yellowsimple │ │ │ ├── tip-yellowsimple.css │ │ │ └── tip-yellowsimple_arrows.gif │ ├── respond.min.js │ └── superfish-1.4.8 │ │ ├── jquery.bgiframe.min.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── large-webpart-zone.aspx │ ├── large-webpart-zone.html │ ├── spectergroup-bootstrap3.html │ └── spectergroup-bootstrap3.master └── Supplemental - Bootstrap 3 Template ├── about.html ├── blog-post.html ├── blog.html ├── communities.html ├── community-eagle-vista.html ├── community-otay-crossings.html ├── community-spruce-meadows.html ├── contact.html ├── css ├── bootstrap.css ├── bootstrap.min.css ├── elements.css ├── isotope.css ├── nivo-slider.css ├── style.css └── superfish.css ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── mensch-webfont.eot ├── mensch-webfont.svg ├── mensch-webfont.ttf └── mensch-webfont.woff ├── img ├── banner-one.jpg ├── banner-two.jpg ├── bird.png ├── bullets │ ├── arrow.png │ ├── check.png │ ├── heart.png │ ├── plus.png │ └── star.png ├── communities-eagle-small.jpg ├── communities-otay-small.jpg ├── communities-spruce-small.jpg ├── divider-tagline.png ├── homes-small-one.jpg ├── ico │ ├── apple-touch-icon-114-precomposed.png │ ├── apple-touch-icon-144-precomposed.png │ ├── apple-touch-icon-57-precomposed.png │ ├── apple-touch-icon-72-precomposed.png │ └── favicon.png ├── icon-arrows-vert.png ├── icon-arrows.png ├── icon-bird.png ├── icon-close.png ├── icon-contact.png ├── icon-home.png ├── icon-homes-home.png ├── icon-homes-view.png ├── icon-login.png ├── icon-register.png ├── icon-search.png ├── icon-view-photos.png ├── icon-view-tour.png ├── icon-view-video.png ├── info-blue.png ├── info-green.png ├── info-red.png ├── info-yellow.png ├── loading.gif ├── logo.gif ├── social │ ├── 500px.png │ ├── AddThis.png │ ├── Behance.png │ ├── Blogger.png │ ├── Deliciou.png │ ├── DeviantART.png │ ├── Digg.png │ ├── Dopplr.png │ ├── Dribbble.png │ ├── Evernote.png │ ├── Facebook.png │ ├── Flickr.png │ ├── Forrst.png │ ├── GitHub.png │ ├── GooglePlus.png │ ├── Grooveshark.png │ ├── Instagram.png │ ├── Lastfm.png │ ├── LinkedIn.png │ ├── Mail.png │ ├── MySpace.png │ ├── Path.png │ ├── Paypal.png │ ├── Picasa.png │ ├── Posterous.png │ ├── RSS.png │ ├── Reddit.png │ ├── ShareThis.png │ ├── Skype.png │ ├── Soundcloud.png │ ├── Spotify.png │ ├── StumbleUpon.png │ ├── Tumblr.png │ ├── Twitter.png │ ├── Viddler.png │ ├── Vimeo.png │ ├── Virb.png │ ├── Windows.png │ ├── WordPress.png │ ├── YouTube.png │ └── Zerply.png ├── source │ ├── communities-small.psd │ ├── divider-tagline.psd │ ├── homes-small.psd │ ├── icon-arrows-vert.psd │ ├── icon-arrows.psd │ ├── icon-bird.psd │ ├── icon-contact.psd │ ├── icon-home.psd │ ├── icon-homes.psd │ ├── icon-search.psd │ ├── icon-site-access.psd │ ├── icon-view.psd │ ├── logo.psd │ ├── rotating-banner.psd │ └── toggle-simple.psd ├── toggle-simple.png └── toggle.png ├── index.html ├── js ├── bootstrap.js ├── bootstrap.min.js ├── hoverIntent.js ├── jquery-1.9.1.min.js ├── jquery-custom.js ├── jquery-migrate-1.1.0.min.js ├── jquery-ui-1.8.9.custom.min.js ├── jquery.isotope.min.js ├── jquery.nivo.slider.js ├── jquery.tabs.js ├── jquery.tweet.js ├── modernizr-2.6.2.custom.js ├── poshytip-1.1 │ ├── GPL-LICENSE.txt │ ├── MIT-LICENSE.txt │ ├── README.txt │ ├── jquery.poshytip.js │ ├── jquery.poshytip.min.js │ ├── tip-darkgray │ │ ├── tip-darkgray.css │ │ ├── tip-darkgray.png │ │ └── tip-darkgray_arrows.png │ ├── tip-green │ │ ├── tip-green.css │ │ └── tip-green_arrows.gif │ ├── tip-skyblue │ │ ├── tip-skyblue.css │ │ ├── tip-skyblue.png │ │ └── tip-skyblue_arrows.png │ ├── tip-twitter │ │ ├── tip-twitter.css │ │ └── tip-twitter_arrows.gif │ ├── tip-violet │ │ ├── tip-violet.css │ │ ├── tip-violet.png │ │ └── tip-violet_arrows.png │ ├── tip-yellow │ │ ├── tip-yellow.css │ │ ├── tip-yellow.png │ │ └── tip-yellow_arrows.png │ └── tip-yellowsimple │ │ ├── tip-yellowsimple.css │ │ └── tip-yellowsimple_arrows.gif ├── respond.min.js └── superfish-1.4.8 │ ├── jquery.bgiframe.min.js │ ├── superfish.js │ └── supersubs.js ├── page-elements.html ├── page-typography.html ├── page.html └── property.html /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList.v11.suo -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/Content/App.css: -------------------------------------------------------------------------------- 1 | /* Place custom styles below */ 2 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/Features/Feature1/Feature1.Template.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/Images/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/Images/AppIcon.png -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/Package/Package.Template.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/obj/Debug/SPGeolocationList.csproj.AppPackageFileList.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Administrator\Desktop\SPapps\SPGeolocationList\SPGeolocationList\bin\Debug\app.publish\SPGeolocationList.app 2 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/obj/Debug/SPGeolocationList.csproj.IsDebugging.txt: -------------------------------------------------------------------------------- 1 | False 2 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/obj/Debug/SPGeolocationList.csproj.PackageFileList.txt: -------------------------------------------------------------------------------- 1 | bin\Debug\SPGeolocationList.wsp 2 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/SPGeolocationList/pkg/Debug/SPGeolocationList/SPGeolocationList_Feature1/Content/App.css: -------------------------------------------------------------------------------- 1 | /* Place custom styles below */ 2 | -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/packages/jQuery.1.6.2/jQuery.1.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 12 - Geolocation/SPGeolocationList/packages/jQuery.1.6.2/jQuery.1.6.2.nupkg -------------------------------------------------------------------------------- /Chapter 12 - Geolocation/SPGeolocationList/packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter 3 - Site Comps/sg-homepage-320.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 3 - Site Comps/sg-homepage-320.psd -------------------------------------------------------------------------------- /Chapter 3 - Site Comps/sg-homepage-768.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 3 - Site Comps/sg-homepage-768.psd -------------------------------------------------------------------------------- /Chapter 3 - Site Comps/sg-homepage-960.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 3 - Site Comps/sg-homepage-960.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/fonts/mensch-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/fonts/mensch-webfont.eot -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/fonts/mensch-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/fonts/mensch-webfont.ttf -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/fonts/mensch-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/fonts/mensch-webfont.woff -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/banner-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/banner-one.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/banner-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/banner-two.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/bird.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/breadcrumb-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/breadcrumb-separator.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/bullets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/bullets/arrow.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/bullets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/bullets/check.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/bullets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/bullets/heart.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/bullets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/bullets/plus.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/bullets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/bullets/star.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/communities-eagle-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/communities-eagle-small.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/communities-otay-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/communities-otay-small.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/communities-spruce-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/communities-spruce-small.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/divider-tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/divider-tagline.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/homes-small-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/homes-small-one.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-arrows-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-arrows-vert.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-arrows.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-bird.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-close.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-contact.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-home.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-homes-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-homes-home.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-homes-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-homes-view.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-login.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-register.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-search.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-view-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-view-photos.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-view-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-view-tour.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/icon-view-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/icon-view-video.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/info-blue.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/info-green.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/info-red.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/info-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/info-yellow.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/loading.gif -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/logo.gif -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/500px.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/AddThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/AddThis.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Behance.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Blogger.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Deliciou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Deliciou.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/DeviantART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/DeviantART.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Digg.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Dopplr.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Dribbble.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Evernote.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Facebook.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Flickr.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Forrst.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/GitHub.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Google+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Google+.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Grooveshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Grooveshark.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Instagram.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Lastfm.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/LinkedIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/LinkedIn.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Mail.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/MySpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/MySpace.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Path.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Paypal.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Picasa.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Posterous.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/RSS.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Reddit.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/ShareThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/ShareThis.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Skype.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Soundcloud.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Spotify.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/StumbleUpon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/StumbleUpon.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Tumblr.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Twitter.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Viddler.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Vimeo.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Virb.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Windows.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/WordPress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/WordPress.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/YouTube.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/social/Zerply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/social/Zerply.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/breadcrumb-separator.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/breadcrumb-separator.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/communities-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/communities-small.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/divider-tagline.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/divider-tagline.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/homes-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/homes-small.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-arrows-vert.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-arrows-vert.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-arrows.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-arrows.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-bird.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-bird.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-contact.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-contact.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-home.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-home.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-homes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-homes.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-search.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-search.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-site-access.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-site-access.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/icon-view.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/icon-view.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/logo.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/rotating-banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/rotating-banner.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/source/toggle-simple.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/source/toggle-simple.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/toggle-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/toggle-simple.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/img/toggle.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-darkgray/tip-darkgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-darkgray/tip-darkgray.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-skyblue/tip-skyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-skyblue/tip-skyblue.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-violet/tip-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-violet/tip-violet.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-yellow/tip-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/HTML Template/js/poshytip-1.1/tip-yellow/tip-yellow.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/fonts/mensch-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/fonts/mensch-webfont.eot -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/fonts/mensch-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/fonts/mensch-webfont.ttf -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/fonts/mensch-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/fonts/mensch-webfont.woff -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/banner-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/banner-one.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/banner-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/banner-two.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/bird.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/breadcrumb-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/breadcrumb-separator.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/arrow.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/check.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/heart.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/plus.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/bullets/star.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/communities-eagle-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/communities-eagle-small.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/communities-otay-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/communities-otay-small.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/communities-spruce-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/communities-spruce-small.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/divider-tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/divider-tagline.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/homes-small-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/homes-small-one.jpg -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-arrows-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-arrows-vert.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-arrows.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-bird.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-close.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-contact.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-home.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-homes-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-homes-home.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-homes-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-homes-view.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-login.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-register.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-search.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-view-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-view-photos.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-view-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-view-tour.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-view-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/icon-view-video.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/info-blue.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/info-green.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/info-red.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/info-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/info-yellow.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/loading.gif -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/logo.gif -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/500px.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/AddThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/AddThis.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Behance.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Blogger.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Deliciou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Deliciou.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/DeviantART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/DeviantART.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Digg.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Dopplr.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Dribbble.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Evernote.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Facebook.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Flickr.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Forrst.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/GitHub.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Google+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Google+.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Grooveshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Grooveshark.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Instagram.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Lastfm.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/LinkedIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/LinkedIn.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Mail.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/MySpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/MySpace.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Path.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Paypal.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Picasa.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Posterous.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/RSS.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Reddit.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/ShareThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/ShareThis.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Skype.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Soundcloud.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Spotify.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/StumbleUpon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/StumbleUpon.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Tumblr.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Twitter.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Viddler.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Vimeo.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Virb.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Windows.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/WordPress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/WordPress.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/YouTube.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Zerply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/social/Zerply.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/breadcrumb-separator.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/breadcrumb-separator.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/communities-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/communities-small.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/divider-tagline.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/divider-tagline.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/homes-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/homes-small.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-arrows-vert.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-arrows-vert.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-arrows.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-arrows.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-bird.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-bird.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-contact.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-contact.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-home.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-home.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-homes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-homes.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-search.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-search.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-site-access.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-site-access.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-view.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/icon-view.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/logo.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/rotating-banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/rotating-banner.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/source/toggle-simple.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/source/toggle-simple.psd -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/toggle-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/toggle-simple.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 4 - HTML Template/SharePoint MasterPage/img/toggle.png -------------------------------------------------------------------------------- /Chapter 4 - HTML Template/SharePoint MasterPage/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/fonts/mensch-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/fonts/mensch-webfont.eot -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/fonts/mensch-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/fonts/mensch-webfont.ttf -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/fonts/mensch-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/fonts/mensch-webfont.woff -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/banner-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/banner-one.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/banner-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/banner-two.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bird.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/arrow.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/check.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/heart.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/plus.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/bullets/star.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/communities-eagle-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/communities-eagle-small.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/communities-otay-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/communities-otay-small.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/communities-spruce-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/communities-spruce-small.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/divider-tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/divider-tagline.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/homes-small-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/homes-small-one.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-arrows-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-arrows-vert.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-arrows.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-bird.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-close.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-contact.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-home.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-homes-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-homes-home.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-homes-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-homes-view.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-login.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-register.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-search.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-view-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-view-photos.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-view-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-view-tour.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-view-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/icon-view-video.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-blue.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-green.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-red.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/info-yellow.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/loading.gif -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/logo.gif -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/500px.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/AddThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/AddThis.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Behance.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Blogger.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Deliciou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Deliciou.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/DeviantART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/DeviantART.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Digg.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Dopplr.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Dribbble.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Evernote.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Facebook.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Flickr.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Forrst.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/GitHub.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Google+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Google+.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Grooveshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Grooveshark.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Instagram.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Lastfm.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/LinkedIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/LinkedIn.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Mail.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/MySpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/MySpace.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Path.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Paypal.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Picasa.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Posterous.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/RSS.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Reddit.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/ShareThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/ShareThis.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Skype.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Soundcloud.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Spotify.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/StumbleUpon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/StumbleUpon.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Tumblr.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Twitter.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Viddler.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Vimeo.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Virb.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Windows.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/WordPress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/WordPress.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/YouTube.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Zerply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/social/Zerply.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/communities-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/communities-small.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/divider-tagline.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/divider-tagline.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/homes-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/homes-small.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-arrows-vert.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-arrows-vert.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-arrows.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-arrows.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-bird.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-bird.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-contact.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-contact.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-home.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-home.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-homes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-homes.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-search.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-search.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-site-access.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-site-access.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-view.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/icon-view.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/logo.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/rotating-banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/rotating-banner.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/toggle-simple.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/source/toggle-simple.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/toggle-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/toggle-simple.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap HTML/img/toggle.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap HTML/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/banner-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/banner-one.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/banner-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/banner-two.jpg -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bird.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/arrow.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/check.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/heart.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/plus.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/bullets/star.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-arrows.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-bird.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-close.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-contact.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-home.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-login.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-register.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-search.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-view-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/icon-view-tour.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-blue.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-green.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-red.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/info-yellow.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/loading.gif -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/logo.gif -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/500px.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/AddThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/AddThis.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Behance.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Blogger.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Digg.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Dopplr.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Flickr.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Forrst.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/GitHub.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Google+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Google+.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Lastfm.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Mail.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/MySpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/MySpace.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Path.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Paypal.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Picasa.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/RSS.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Reddit.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Skype.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Spotify.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Tumblr.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Twitter.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Viddler.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Vimeo.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Virb.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Windows.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/YouTube.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Zerply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/social/Zerply.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/source/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/source/logo.psd -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/toggle-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/toggle-simple.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/img/toggle.png -------------------------------------------------------------------------------- /Chapter 5 - Bootstrap Template/Bootstrap SharePoint MasterPage/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/bird.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/info-red.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/loading.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/logo.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/img/toggle.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-1-basic/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/bird.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/loading.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/logo.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/img/toggle.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-2-jQuery/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/bird.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/info-red.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/loading.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/logo.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/img/toggle.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-3-float/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-4-dropdown/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-4-dropdown/img/bird.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-4-dropdown/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-4-dropdown/img/logo.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-4-dropdown/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-5-collapse/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-5-collapse/img/bird.png -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-5-collapse/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-5-collapse/img/logo.gif -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-5-collapse/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 6 - Navigation/_catalogs/masterpage/spectergroup-nav-6-breadcrumb/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/fonts/mensch-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/fonts/mensch-webfont.eot -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/fonts/mensch-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/fonts/mensch-webfont.ttf -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/fonts/mensch-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/fonts/mensch-webfont.woff -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/banner-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/banner-one.jpg -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/banner-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/banner-two.jpg -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bird.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/arrow.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/check.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/heart.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/plus.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/bullets/star.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/divider-tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/divider-tagline.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/homes-small-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/homes-small-one.jpg -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-arrows-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-arrows-vert.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-arrows.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-bird.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-close.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-contact.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-home.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-homes-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-homes-home.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-homes-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-homes-view.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-login.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-register.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-search.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-view-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-view-photos.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-view-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-view-tour.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-view-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/icon-view-video.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-blue.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-green.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-red.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/info-yellow.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/loading.gif -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/logo.gif -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/500px.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/AddThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/AddThis.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Behance.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Blogger.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Deliciou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Deliciou.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/DeviantART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/DeviantART.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Digg.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Dopplr.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Dribbble.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Evernote.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Facebook.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Flickr.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Forrst.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/GitHub.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Google+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Google+.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Grooveshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Grooveshark.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Instagram.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Lastfm.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/LinkedIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/LinkedIn.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Mail.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/MySpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/MySpace.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Path.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Paypal.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Picasa.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Posterous.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/RSS.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Reddit.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/ShareThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/ShareThis.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Skype.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Soundcloud.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Spotify.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/StumbleUpon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/StumbleUpon.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Tumblr.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Twitter.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Viddler.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Vimeo.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Virb.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Windows.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/WordPress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/WordPress.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/YouTube.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Zerply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/social/Zerply.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/toggle-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/toggle-simple.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/img/toggle.png -------------------------------------------------------------------------------- /Chapter 7 - Page Layouts/_catalogs/masterpage/spectergroup/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/SiteAssets/communities-eagle-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/SiteAssets/communities-eagle-small.jpg -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/SiteAssets/communities-otay-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/SiteAssets/communities-otay-small.jpg -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/SiteAssets/communities-spruce-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/SiteAssets/communities-spruce-small.jpg -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/banner-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/banner-one.jpg -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/banner-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/banner-two.jpg -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/bird.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/bullets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/bullets/plus.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/bullets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/bullets/star.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-arrows.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-bird.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-close.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-contact.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-home.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/icon-login.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/info-blue.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/info-green.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/info-red.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/loading.gif -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/logo.gif -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/social/RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/social/RSS.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/img/toggle.png -------------------------------------------------------------------------------- /Chapter 8 - Cross Site Content/_catalogs/masterpage/spectergroup/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/2bd-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/2bd-b.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/2bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/2bd.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/L1.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/L2.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/L3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/L3.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/b1.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/b2.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/beach3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/beach3.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/c2.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/c3.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/commercial1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/commercial1.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/r3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/r3.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/SiteAssets/r4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/SiteAssets/r4.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/bird.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/loading.gif -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/logo.gif -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/img/toggle.png -------------------------------------------------------------------------------- /Chapter 9 - Search Driven Content/_catalogs/masterpage/spectergroup/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Photoshop-Comps-Full/newappafterinstall.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Photoshop-Comps-Full/newappafterinstall.psd -------------------------------------------------------------------------------- /Photoshop-Comps-Full/sg-homepage-320.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Photoshop-Comps-Full/sg-homepage-320.psd -------------------------------------------------------------------------------- /Photoshop-Comps-Full/sg-homepage-768.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Photoshop-Comps-Full/sg-homepage-768.psd -------------------------------------------------------------------------------- /Photoshop-Comps-Full/sg-homepage-960.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Photoshop-Comps-Full/sg-homepage-960.psd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | BookSourceCode 2 | ============== 3 | 4 | This repository contains all of the source code for the Pro SharePoint 2013 Branding and Responsive Web Development book. -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 SharePoint/_catalogs/masterpage/spectergroup-bootstrap3/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/fonts/mensch-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/fonts/mensch-webfont.eot -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/fonts/mensch-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/fonts/mensch-webfont.ttf -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/fonts/mensch-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/fonts/mensch-webfont.woff -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/banner-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/banner-one.jpg -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/banner-two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/banner-two.jpg -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/bird.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/bullets/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/bullets/arrow.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/bullets/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/bullets/check.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/bullets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/bullets/heart.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/bullets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/bullets/plus.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/bullets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/bullets/star.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/communities-eagle-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/communities-eagle-small.jpg -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/communities-otay-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/communities-otay-small.jpg -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/communities-spruce-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/communities-spruce-small.jpg -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/divider-tagline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/divider-tagline.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/homes-small-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/homes-small-one.jpg -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/ico/favicon.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-arrows-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-arrows-vert.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-arrows.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-bird.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-close.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-contact.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-home.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-homes-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-homes-home.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-homes-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-homes-view.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-login.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-register.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-search.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-view-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-view-photos.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-view-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-view-tour.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/icon-view-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/icon-view-video.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/info-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/info-blue.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/info-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/info-green.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/info-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/info-red.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/info-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/info-yellow.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/loading.gif -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/logo.gif -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/500px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/500px.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/AddThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/AddThis.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Behance.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Blogger.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Deliciou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Deliciou.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/DeviantART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/DeviantART.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Digg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Digg.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Dopplr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Dopplr.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Dribbble.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Evernote.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Facebook.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Flickr.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Forrst.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/GitHub.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/GooglePlus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/GooglePlus.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Grooveshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Grooveshark.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Instagram.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Lastfm.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/LinkedIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/LinkedIn.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Mail.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/MySpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/MySpace.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Path.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Paypal.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Picasa.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Posterous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Posterous.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/RSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/RSS.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Reddit.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/ShareThis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/ShareThis.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Skype.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Soundcloud.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Spotify.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/StumbleUpon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/StumbleUpon.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Tumblr.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Twitter.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Viddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Viddler.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Vimeo.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Virb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Virb.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Windows.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/WordPress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/WordPress.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/YouTube.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/social/Zerply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/social/Zerply.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/communities-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/communities-small.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/divider-tagline.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/divider-tagline.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/homes-small.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/homes-small.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-arrows-vert.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-arrows-vert.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-arrows.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-arrows.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-bird.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-bird.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-contact.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-contact.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-home.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-home.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-homes.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-homes.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-search.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-search.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-site-access.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-site-access.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/icon-view.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/icon-view.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/logo.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/rotating-banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/rotating-banner.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/source/toggle-simple.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/source/toggle-simple.psd -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/toggle-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/toggle-simple.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/img/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/img/toggle.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/js/poshytip-1.1/README.txt: -------------------------------------------------------------------------------- 1 | Home page with introduction: 2 | http://vadikom.com/tools/poshy-tip-jquery-plugin-for-stylish-tooltips/ -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-darkgray/tip-darkgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-darkgray/tip-darkgray.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-green/tip-green_arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-green/tip-green_arrows.gif -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-skyblue/tip-skyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-skyblue/tip-skyblue.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-violet/tip-violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-violet/tip-violet.png -------------------------------------------------------------------------------- /Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-yellow/tip-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SPRWD/BookSourceCode/641eb44e460c8883c793f6ebd6ae4d3a89ad7589/Supplemental - Bootstrap 3 Template/js/poshytip-1.1/tip-yellow/tip-yellow.png --------------------------------------------------------------------------------