blob: 17fc7baf907466e513e69e9220cc8bb17e55c41f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
!!! 5
%html
%head
%title Pokeviewer
%meta{ name: "viewport", content: "width=device-width,initial-scale=1" }
= stylesheet_link_tag "application", media: "all"
= javascript_include_tag "application"
= csrf_meta_tags
= csp_meta_tag
%body#pokemon-embed
%ul#pokemon-embed-tabs
%li.ptabe-button.ptabe-details= link_to "Details", "\#", data: {tab: "details"}
%li.ptabe-button.ptabe-stats= link_to "Stats", "\#", data: {tab: "stats"}
%li.ptabe-button.ptabe-moves= link_to "Moves", "\#", data: {tab: "moves"}
%li.ptabe-button.ptabe-contest= link_to "Contest", "\#", data: {tab: "contest"}
%li.ptabe-button.ptabe-ribbons= link_to "Ribbons", "\#", data: {tab: "ribbons"}
= render @revision
|