|
| 1 | +<section> |
| 2 | + <h2>Dogs group</h2> |
| 3 | + <p>Showing a card with a group of content</p> |
| 4 | + <md-card class="example-card" role="group"> |
| 5 | + <md-card-content> |
| 6 | + <p>Herding Group</p> |
| 7 | + <p>Hound Group</p> |
| 8 | + <p>Non-Sporting Group</p> |
| 9 | + <p>Sporting Group</p> |
| 10 | + <p>Terrier Group</p> |
| 11 | + <p>Toy Group</p> |
| 12 | + <p>Working Group</p> |
| 13 | + <p>Foundation Stock Service</p> |
| 14 | + <p>Miscellaneous Class</p> |
| 15 | + </md-card-content> |
| 16 | + </md-card> |
| 17 | +</section> |
| 18 | + |
| 19 | +<section> |
| 20 | + <h2>Husky</h2> |
| 21 | + <p>Showing a card with title only</p> |
| 22 | + <md-card class="example-card"> |
| 23 | + Siberian Husky |
| 24 | + </md-card> |
| 25 | +</section> |
| 26 | + |
| 27 | +<section> |
| 28 | + <h2>Malamute</h2> |
| 29 | + <p>Showing a Card with title and subtitle. </p> |
| 30 | + <md-card class="example-card"> |
| 31 | + <md-card-title>Alaskan Malamute</md-card-title> |
| 32 | + <md-card-subtitle>Dog breed</md-card-subtitle> |
| 33 | + </md-card> |
| 34 | +</section> |
| 35 | + |
| 36 | + |
| 37 | +<section> |
| 38 | + <h2>German Shepherd</h2> |
| 39 | + <p> |
| 40 | + Showing a card with title, subtitle, and a footer. |
| 41 | + </p> |
| 42 | + <md-card class="example-card"> |
| 43 | + <md-card-subtitle>Dog breed</md-card-subtitle> |
| 44 | + <md-card-title>German Shepherd</md-card-title> |
| 45 | + <md-card-content> |
| 46 | + The German Shepherd is a breed of medium to large-sized working dog that originated in |
| 47 | + Germany. The breed's officially recognized name is German Shepherd Dog in the English |
| 48 | + language. The breed is also known as the Alsatian in Britain and Ireland. |
| 49 | + </md-card-content> |
| 50 | + <md-card-footer> |
| 51 | + People also search for Rottweiler, Siberian Husky, Labrador Retriever, Doberman Pinscher |
| 52 | + </md-card-footer> |
| 53 | + </md-card> |
| 54 | +</section> |
| 55 | + |
| 56 | +<section> |
| 57 | + <h2>Dachshund</h2> |
| 58 | + <p>Showing a card with title, subtitle, and avatar as header and a card image.</p> |
| 59 | + <md-card class="example-card"> |
| 60 | + <md-card-header> |
| 61 | + <img md-card-avatar src="a11y/card/assets/dachshund-avatar.jpg" aria-label="Dachshund avatar"> |
| 62 | + <md-card-title>Dachshund</md-card-title> |
| 63 | + <md-card-subtitle>Dog breed</md-card-subtitle> |
| 64 | + </md-card-header> |
| 65 | + <img md-card-image src="a11y/card/assets/dachshund.jpg" |
| 66 | + aria-label="Dachshund"> |
| 67 | + <md-card-content> |
| 68 | + The dachshund is a short-legged, long-bodied, hound-type dog breed. |
| 69 | + </md-card-content> |
| 70 | + </md-card> |
| 71 | +</section> |
| 72 | + |
| 73 | +<section> |
| 74 | + <h2>Shiba Inu</h2> |
| 75 | + <p>Showing a card with header, content, image, and two action buttons: "share" and "like".</p> |
| 76 | + <md-card class="example-card"> |
| 77 | + <md-card-header> |
| 78 | + <img md-card-avatar src="a11y/card/assets/shiba-inu-avatar.jpg" aria-label="Shiba Inu avatar"> |
| 79 | + <md-card-title>Shiba Inu</md-card-title> |
| 80 | + <md-card-subtitle>Dog Breed</md-card-subtitle> |
| 81 | + </md-card-header> |
| 82 | + <img md-card-image src="a11y/card/assets/shiba-inu.jpg" aria-label="Shiba Inu"> |
| 83 | + <md-card-content> |
| 84 | + The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan. |
| 85 | + A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally |
| 86 | + bred for hunting. |
| 87 | + </md-card-content> |
| 88 | + <md-card-actions align="end"> |
| 89 | + <button md-button (click)="openSnackbar('Liked Shiba Inu')">like</button> |
| 90 | + <button md-button (click)="openSnackbar('Shared Shiba Inu')">share</button> |
| 91 | + </md-card-actions> |
| 92 | + </md-card> |
| 93 | +</section> |
0 commit comments