The html of the book detail page is important for laying out the page properly. This consists primarily of wrapping contents in a <div id="book_detail">
and adding the appropriate ids to the books components as shown below in the code snippet.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="book_detail"> | |
<h2 id="bookTitle">My Awsome Title</h2> | |
<img src="https://via.placeholder.com/350x150" alt="book image" id="bookImage"> | |
<p><a href="#" id="epubLink">My Awesome epub link</a></p> | |
<p><a href="#" id="mobiLink">My Awesome mobi link</a></p> | |
<h4>Contents</h4> | |
<p>My Awesome Content</p> | |
</div> |
- Create a Google Account with your .mil email address
- Create or sign in to your Analytics account
- Set up a property in your Analytics account. A property represents your website or app, and is the collection point in Analytics for the data from your site or app.
- Optional Set up a reporting view in your property. Views let you create filtered perspectives of your data; for example, all data except from your company’s internal IP addresses, or all data associated with a specific sales region.
- Follow the instructions to add the tracking code to your website or mobile app so you can collect data in you Analytics property.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is Git's per-user configuration file. | |
[user] | |
# Please adapt and uncomment the following lines: | |
# name = Frank Pigeon | |
# email = [email protected] | |
[user] | |
email = [email protected] | |
name = Frank Pigeon Jr. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/fpigeon/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that ohmy-zsh is loaded. | |
ZSH_THEME="" | |
# Uncomment the following line to use case-sensitive completion. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontFamily": "Operator Mono, Fira Code", | |
"editor.fontSize": 18, | |
"editor.lineHeight": 29, | |
"editor.tabSize": 2, | |
"editor.fontLigatures": true, | |
"files.trimTrailingWhitespace": true, | |
"files.autoSave": "onFocusChange", | |
"editor.renderIndentGuides": false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 18, | |
// font family with optional fallbacks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="source"> | |
<!-- Source content here --> | |
</div> |