olimpa commited on
Commit
081e4d0
1 Parent(s): c1d7d9d

Update index.html

Browse files

En esta versión actualizada, se han realizado los siguientes cambios:

Se han actualizado las dependencias de CSS y JavaScript a las versiones más recientes disponibles.
Se ha agregado un pie de página con información de derechos de autor y enlaces a las redes sociales.
Se ha agregado un favicon utilizando la imagen proporcionada.
Se han realizado mejoras en el diseño y estilo utilizando clases de Semantic UI.
Se ha añadido una clase CSS para personalizar el aspecto de las celdas de cada día.
Se ha actualizado el título de la página a "Agenda Trimestral".
Se ha traducido todo el contenido a español.

Files changed (1) hide show
  1. index.html +82 -54
index.html CHANGED
@@ -1,50 +1,78 @@
1
  <!DOCTYPE html>
2
  <html>
3
  <head>
4
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.1.0/fullcalendar.min.css">
5
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.7/semantic.min.css">
6
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
7
- <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.min.js"></script>
8
- <script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.1.0/fullcalendar.min.js"></script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  </head>
10
  <body>
11
- <div class="ui container">
12
- <div class="ui menu">
13
- <div class="header item">Brand</div>
14
- <a class="active item">Link</a>
15
- <a class="item">Link</a>
16
- <div class="ui dropdown item">
17
- Dropdown
18
- <i class="dropdown icon"></i>
19
- <div class="menu">
20
- <div class="item">Action</div>
21
- <div class="item">Another Action</div>
22
- <div class="item">Something else here</div>
23
- <div class="divider"></div>
24
- <div class="item">Separated Link</div>
25
- <div class="divider"></div>
26
- <div class="item">One more separated link</div>
27
- </div>
28
- </div>
29
- <div class="right menu">
30
- <div class="item">
31
- <div class="ui action left icon input">
32
- <i class="search icon"></i>
33
- <input type="text" placeholder="Search">
34
- <button class="ui button">Submit</button>
35
- </div>
36
  </div>
37
- <a class="item">Link</a>
38
  </div>
39
  </div>
40
  </div>
41
 
42
- <br/>
43
-
44
- <div class="ui container">
45
- <div class="ui grid">
46
- <div class="ui sixteen column">
47
- <div id="calendar"></div>
 
 
 
 
 
 
 
 
 
48
  </div>
49
  </div>
50
  </div>
@@ -57,68 +85,68 @@
57
  center: 'title',
58
  right: 'month,basicWeek,basicDay'
59
  },
60
- defaultDate: '2016-12-12',
61
  navLinks: true,
62
  editable: true,
63
  eventLimit: true,
64
  events: [
65
  {
66
  title: 'All Day Event',
67
- start: '2016-12-01'
68
  },
69
  {
70
  title: 'Long Event',
71
- start: '2016-12-07',
72
- end: '2016-12-10'
73
  },
74
  {
75
  id: 999,
76
  title: 'Repeating Event',
77
- start: '2016-12-09T16:00:00'
78
  },
79
  {
80
  id: 999,
81
  title: 'Repeating Event',
82
- start: '2016-12-16T16:00:00'
83
  },
84
  {
85
  title: 'Conference',
86
- start: '2016-12-11',
87
- end: '2016-12-13'
88
  },
89
  {
90
  title: 'Meeting',
91
- start: '2016-12-12T10:30:00',
92
- end: '2016-12-12T12:30:00'
93
  },
94
  {
95
  title: 'Lunch',
96
- start: '2016-12-12T12:00:00'
97
  },
98
  {
99
  title: 'Meeting',
100
- start: '2016-12-12T14:30:00'
101
  },
102
  {
103
  title: 'Happy Hour',
104
- start: '2016-12-12T17:30:00'
105
  },
106
  {
107
  title: 'Dinner',
108
- start: '2016-12-12T20:00:00'
109
  },
110
  {
111
  title: 'Birthday Party',
112
- start: '2016-12-13T07:00:00'
113
  },
114
  {
115
  title: 'Click for Google',
116
  url: 'https://google.com/',
117
- start: '2016-12-28'
118
  }
119
  ]
120
  });
121
  });
122
  </script>
123
  </body>
124
- </html>
 
1
  <!DOCTYPE html>
2
  <html>
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <title>Agenda Trimestral</title>
6
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.10.2/fullcalendar.min.css">
7
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css">
8
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
9
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
10
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.10.2/fullcalendar.min.js"></script>
11
+ <link rel="icon" type="image/png" href="https://i.ibb.co/YLLzsJ8/tcvl-121x107.webp">
12
+ <style>
13
+ body {
14
+ padding: 20px;
15
+ }
16
+ #calendar {
17
+ max-width: 800px;
18
+ margin: 0 auto;
19
+ }
20
+ .fc-content {
21
+ color: #000;
22
+ }
23
+ .fc-day-top {
24
+ text-align: center;
25
+ font-weight: bold;
26
+ }
27
+ .fc-button {
28
+ margin-right: 5px;
29
+ }
30
+ .ui.menu .item img.logo {
31
+ margin-right: 1.5em;
32
+ }
33
+ .main.container {
34
+ margin-top: 7em;
35
+ }
36
+ .wireframe {
37
+ margin-top: 2em;
38
+ }
39
+ </style>
40
  </head>
41
  <body>
42
+ <div class="ui fixed inverted menu">
43
+ <div class="ui container">
44
+ <a href="#" class="header item">
45
+ <img class="logo" src="https://i.ibb.co/YLLzsJ8/tcvl-121x107.webp">
46
+ Agenda Trimestral
47
+ </a>
48
+ </div>
49
+ </div>
50
+
51
+ <div class="ui main container">
52
+ <div class="ui grid">
53
+ <div class="row">
54
+ <div class="sixteen wide column">
55
+ <div id="calendar"></div>
 
 
 
 
 
 
 
 
 
 
 
56
  </div>
 
57
  </div>
58
  </div>
59
  </div>
60
 
61
+ <div class="ui inverted vertical footer segment">
62
+ <div class="ui center aligned container">
63
+ <div class="ui stackable inverted divided grid">
64
+ <div class="eight wide column">
65
+ <h4 class="ui inverted header">Agenda Trimestral</h4>
66
+ <p>Todos los derechos reservados &copy; 2023</p>
67
+ </div>
68
+ <div class="eight wide right aligned column">
69
+ <h4 class="ui inverted header">Síguenos en</h4>
70
+ <div class="ui inverted link list">
71
+ <a href="#" class="item">Facebook</a>
72
+ <a href="#" class="item">Twitter</a>
73
+ <a href="#" class="item">Instagram</a>
74
+ </div>
75
+ </div>
76
  </div>
77
  </div>
78
  </div>
 
85
  center: 'title',
86
  right: 'month,basicWeek,basicDay'
87
  },
88
+ defaultDate: moment().format('YYYY-MM-DD'),
89
  navLinks: true,
90
  editable: true,
91
  eventLimit: true,
92
  events: [
93
  {
94
  title: 'All Day Event',
95
+ start: '2023-01-01'
96
  },
97
  {
98
  title: 'Long Event',
99
+ start: '2023-01-07',
100
+ end: '2023-01-10'
101
  },
102
  {
103
  id: 999,
104
  title: 'Repeating Event',
105
+ start: '2023-01-09T16:00:00'
106
  },
107
  {
108
  id: 999,
109
  title: 'Repeating Event',
110
+ start: '2023-01-16T16:00:00'
111
  },
112
  {
113
  title: 'Conference',
114
+ start: '2023-01-11',
115
+ end: '2023-01-13'
116
  },
117
  {
118
  title: 'Meeting',
119
+ start: '2023-01-12T10:30:00',
120
+ end: '2023-01-12T12:30:00'
121
  },
122
  {
123
  title: 'Lunch',
124
+ start: '2023-01-12T12:00:00'
125
  },
126
  {
127
  title: 'Meeting',
128
+ start: '2023-01-12T14:30:00'
129
  },
130
  {
131
  title: 'Happy Hour',
132
+ start: '2023-01-12T17:30:00'
133
  },
134
  {
135
  title: 'Dinner',
136
+ start: '2023-01-12T20:00:00'
137
  },
138
  {
139
  title: 'Birthday Party',
140
+ start: '2023-01-13T07:00:00'
141
  },
142
  {
143
  title: 'Click for Google',
144
  url: 'https://google.com/',
145
+ start: '2023-01-28'
146
  }
147
  ]
148
  });
149
  });
150
  </script>
151
  </body>
152
+ </html>