Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(572)

Side by Side Diff: chrome/browser/resources/ntp4/new_tab.html

Issue 8008005: [ntp4] Create app tiles using template data. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/ntp4/apps_page.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values=" 2 <html i18n-values="
3 dir:textdirection; 3 dir:textdirection;
4 hasattribution:hasattribution; 4 hasattribution:hasattribution;
5 customlogo:customlogo; 5 customlogo:customlogo;
6 themegravity:themegravity;" 6 themegravity:themegravity;"
7 class="starting-up"> 7 class="starting-up">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 <div i18n-content="ntp4_intro_message"></div> 111 <div i18n-content="ntp4_intro_message"></div>
112 <a i18n-content="learn_more" target="_blank"></a> 112 <a i18n-content="learn_more" target="_blank"></a>
113 </div> 113 </div>
114 114
115 <!-- Apps promo. --> 115 <!-- Apps promo. -->
116 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden> 116 <div id="apps-promo-extras-template" class="apps-promo-extras" hidden>
117 <h3 class="apps-promo-heading"></h3> 117 <h3 class="apps-promo-heading"></h3>
118 <a class="apps-promo-link g-button-basic"><a/> 118 <a class="apps-promo-link g-button-basic"><a/>
119 </div> 119 </div>
120 120
121 <!-- App Contents w/ Large Icon -->
122 <div id="app-large-icon-template" class="app-contents" hidden>
123 <div class="app-img-container">
124 <img class="invisible">
125 <span class="title"></span>
126 </div>
127 </div>
128
129 <!-- App Contents w/ Small Icon -->
130 <div id="app-small-icon-template" class="app-contents" hidden>
131 <div class="app-icon-div">
132 <div class="app-img-container">
133 <img class="invisible">
134 </div>
135 <div class="color-stripe"></div>
136 </div>
137 <span class="title"></span>
138 </div>
139
121 <!-- Bookmark --> 140 <!-- Bookmark -->
122 <div id="bookmark-template" class="bookmark" hidden> 141 <div id="bookmark-template" class="bookmark" hidden>
123 <a class="button bookmark-fills-parent"> 142 <a class="button bookmark-fills-parent">
124 <div class="close-button" hidden></div> 143 <div class="close-button" hidden></div>
125 <span class="button-frame bookmark-fills-parent"></span> 144 <span class="button-frame bookmark-fills-parent"></span>
126 <span class="favicon bookmark-fills-parent"></span> 145 <span class="favicon bookmark-fills-parent"></span>
127 </a> 146 </a>
128 <div class="color-stripe"></div> 147 <div class="color-stripe"></div>
129 <a class="title"></a> 148 <a class="title"></a>
130 </div> 149 </div>
(...skipping 14 matching lines...) Expand all
145 </div> 164 </div>
146 165
147 <!-- Bookmarks Import Data Link --> 166 <!-- Bookmarks Import Data Link -->
148 <div id="bookmarks-import-data-link-template" 167 <div id="bookmarks-import-data-link-template"
149 class="bookmarks-import-data-link-wrapper" hidden> 168 class="bookmarks-import-data-link-wrapper" hidden>
150 <a href="chrome://settings/importData" 169 <a href="chrome://settings/importData"
151 i18n-content="importDataLinkTitle" class="link-color"></a> 170 i18n-content="importDataLinkTitle" class="link-color"></a>
152 </div> 171 </div>
153 172
154 </html> 173 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/ntp4/apps_page.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698