-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_index.Rmd
73 lines (67 loc) · 2.09 KB
/
_index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
title: Início
description: ""
toc: false
disableReadmoreNav: true
disable_comments: true
---
```{r loading-pkgs,echo=FALSE,warning=FALSE,message=FALSE}
# Carregando os packages que serão usados.
library(magrittr)
library(kableExtra)
library(shiny)
library(tidyverse)
library(ggplot2)
library(ggplotify)
library(plotly)
# Chunk config
knitr::opts_chunk$set(echo=FALSE,message=FALSE,warning=FALSE)
# Scripts
base::source(file = "../R/personagens_back_end.R", encoding = "UTF-8")
base::source(file = "../R/personagens_front_end.R", encoding = "UTF-8")
```
```{r hero}
tags$div(class="container-fluid",
tags$div(class="row",
style="background-image: url('./bg.jpg');",
style="background-repeat: no-repeat;
background-size: cover;
background-position: center center;
width: 100%;",
tags$div(class="container-fluid",
style="text-align: center; align-content: center;",
tags$br(),
tags$br(),
tags$span(class="fa fa-exclamation-triangle fa-10x",
`aria-hidden`="true",
style="color:#ffac00"),
tags$br(),
tags$br(),
tags$h1(class="genshin_font",
style="color: #1c1c22",
"Site em construção"),
tags$br(),
tags$br())
)
)
```
```{r lead}
lead_wrapper(message = "Esse site é um exercício de programação. Muitos dos dados foram obtidos diretamente na internet.")
```
```{r twitter}
tags$div(class="container-fluid",
tags$div(class="row",
tags$div(class="col-6",
tagList(
tags$a(class="twitter-timeline",
href="https://twitter.com/GenshinImpact"),
tags$script("async",
src="https://platform.twitter.com/widgets.js",
charset="utf-8")
)
),
tags$div(class="col-6",
tags$h4("Mapa"))
)
)
```