Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

start project #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
./node_modules/
./dist/
node_modules
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
language: node_js
cache:
directories:
- ~/.npm
node_js:
- '12'
git:
depth: 3
script:
- yarn build
deploy:
provider: pages
edge: true
skip-cleanup : true
keep-history: true
github-token: $GITHUB_TOKEN
local-dir: dist/
target-brach: gh-pages
commit_message: "Deploy Release"
on:
branch: master
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
# sedme
# *SEDME* Sistema estudiantil de definición de metas para Platzi Master

## Instalación

Abrir en consola el proyecto

`npm install`

Para ejeccutar el proyecto en modo desarrollo

`npm run start`

## Acerca de
Proyecto front-end desarrollado con:
* SASS
* PUG
* HTML
* JAVASCRIPT
* WEBPACK 4

By:
![Image](./src/img/DarkCodeLogo.png)
Empty file removed components/calendar/calendar.pug
Empty file.
Empty file removed components/calendar/calendar.scss
Empty file.
Empty file removed components/navBar/navBar.pug
Empty file.
Empty file removed components/navBar/navBar.scss
Empty file.
Empty file removed components/sideBar/sidebarNav.pug
Empty file.
Empty file removed css/styles.css
Empty file.
Empty file removed css/styles.scss
Empty file.
1 change: 1 addition & 0 deletions dist/calendar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html><head><title></title><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,maximum-scale=1,user-scalable=no"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i|Oswald:400,500,600,700&amp;display=swap"></head><body><nav><ul class="menu"><li class="logo"><a href="#">SEDME</a></li><li class="item button"><a href="#">USUARIO X</a></li></ul></nav><div class="content-box"><div class="sidebar"><div class="toggle-btn"><span>&#9776</span></div><ul><li>Inicio</li><li>Calendario</li><li>Learning Path</li><li>Actividades</li><li>Metas de la semana</li><li>Ayuda</li><li>Acerca de</li><li><img src="../../img/DarkCodeLogo.png" alt="Logotipo"></li></ul></div><div class="container"><h1>Calendario</h1>Contenido del div hjgjhggh Lorem ipsum dolor sit, amet consectetur adipisicing elit. Recusandae saepe libero ducimus non beatae nihil ab ullam quae iusto sequi!</div></div><script src="js/calendar.js"></script></body></html>
1 change: 1 addition & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<body><ul><li><a href="/calendar.html">Calendario</a></li><li><a href="/login.html">Login</a></li></ul><script src="js/calendar.js"></script></body>
1 change: 1 addition & 0 deletions dist/js/calendar.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file removed index.html
Empty file.
7 changes: 7 additions & 0 deletions index.pug
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
body
.test(style="padding:30px")
ul
li
a(href='/calendar.html') Calendario
li
a(href='/login.html') Login
Loading