From bc3f9fa08a432d3dd1052a080aa519ac5c1a2c28 Mon Sep 17 00:00:00 2001 From: iloredom Date: Wed, 3 Sep 2025 16:30:40 -0300 Subject: [PATCH 1/5] Se mueve el archivo js a una nueva carpeta --- script.js => js/app.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename script.js => js/app.js (100%) diff --git a/script.js b/js/app.js similarity index 100% rename from script.js rename to js/app.js From 566f75ef39527e5ce5dd3b85404c7331eddf594e Mon Sep 17 00:00:00 2001 From: iloredom Date: Wed, 3 Sep 2025 16:41:04 -0300 Subject: [PATCH 2/5] Se corrige la direccion del archvio js --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 0c6dc85..446bf34 100644 --- a/index.html +++ b/index.html @@ -31,7 +31,7 @@

- + \ No newline at end of file From 2d619cf2616728735d7af4a63f96b4ad155da507 Mon Sep 17 00:00:00 2001 From: iloredo-ort <32654764@comunidadort.edu.ar> Date: Thu, 4 Sep 2025 16:20:33 -0300 Subject: [PATCH 3/5] Se agrega gitignore --- .gitignore | 218 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 218 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..50f049a --- /dev/null +++ b/.gitignore @@ -0,0 +1,218 @@ +# Created by https://www.toptal.com/developers/gitignore/api/node,linux,windows,macos +# Edit at https://www.toptal.com/developers/gitignore?templates=node,linux,windows,macos + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Node Patch ### +# Serverless Webpack directories +.webpack/ + +# Optional stylelint cache + +# SvelteKit build / generate output +.svelte-kit + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +Thumbs.db:encryptable +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# End of https://www.toptal.com/developers/gitignore/api/node,linux,windows,macos \ No newline at end of file From 190b040030239f3b9cbd724115ec18aef1e6435e Mon Sep 17 00:00:00 2001 From: iloredom Date: Thu, 4 Sep 2025 17:23:34 -0300 Subject: [PATCH 4/5] Se agrega bootstrap como dependencia --- assets/style.css | 11 +++++++++++ index.html | 1 + package-lock.json | 42 ++++++++++++++++++++++++++++++++++++++++++ package.json | 5 +++++ 4 files changed, 59 insertions(+) create mode 100644 assets/style.css create mode 100644 package-lock.json create mode 100644 package.json diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..f3ffe7c --- /dev/null +++ b/assets/style.css @@ -0,0 +1,11 @@ +/* style.css */ +@import '../node_modules/bootstrap/dist/css/bootstrap.min.css'; + +/* Tu CSS personalizado después */ +body { + padding-top: 20px; +} + +.mi-clase { + background-color: #f8f9fa; +} \ No newline at end of file diff --git a/index.html b/index.html index 446bf34..76ea89b 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,7 @@ Document + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..2cfef74 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,42 @@ +{ + "name": "javascript", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "bootstrap": "^5.3.8" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "license": "MIT", + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/bootstrap": { + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.8.tgz", + "integrity": "sha512-HP1SZDqaLDPwsNiqRqi5NcP0SSXciX2s9E+RyqJIIqGo+vJeN5AJVM98CXmW/Wux0nQ5L7jeWUdplCEf0Ee+tg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "license": "MIT", + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..719e5df --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "bootstrap": "^5.3.8" + } +} From 108bd6f3d2a6498d75bd9da91cf2cd9e1b0440e8 Mon Sep 17 00:00:00 2001 From: iloredom Date: Fri, 5 Sep 2025 02:36:40 -0300 Subject: [PATCH 5/5] se corrige import bootstrap --- assets/style.css | 11 --------- index.html | 64 ++++++++++++++++++++++++------------------------ 2 files changed, 32 insertions(+), 43 deletions(-) diff --git a/assets/style.css b/assets/style.css index f3ffe7c..e69de29 100644 --- a/assets/style.css +++ b/assets/style.css @@ -1,11 +0,0 @@ -/* style.css */ -@import '../node_modules/bootstrap/dist/css/bootstrap.min.css'; - -/* Tu CSS personalizado después */ -body { - padding-top: 20px; -} - -.mi-clase { - background-color: #f8f9fa; -} \ No newline at end of file diff --git a/index.html b/index.html index 76ea89b..7dbf2db 100644 --- a/index.html +++ b/index.html @@ -1,38 +1,38 @@ + + + + Document + + + - - - - Document - - + + - - +
+ + + + +
-
- - - - -
+ + + + + + + +
Nombre
- - - - - - - - -
Nombre
- - - - - \ No newline at end of file + + + +