-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actualizado 20/09/2022 11:47 - V1.0.0-Beta
- Loading branch information
Showing
8 changed files
with
128 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<?php | ||
include_once($_SERVER['DOCUMENT_ROOT'].'/dirs.php'); | ||
include_once(DB_PATH.'db.php'); | ||
include_once(HELPERS_PATH.'currentproject.php'); | ||
include_once(MODELS_PATH.'project.php') | ||
?> | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<!--IDIOMA DE LOS CARACTERES--> | ||
<meta charset="utf-8" /> | ||
<!--TÍTULO--> | ||
<title>PAX | DIGITAL MINDS</title> | ||
<!--ICONO--> | ||
<link rel="icon" type="favicon/x-icon" href="../images/icon.png" /> | ||
<!--LLAMADA A LAS HOJAS DE ESTILO--> | ||
<link rel="stylesheet" type="text/css" href="../stylesheets/General.css" /> | ||
<link rel="stylesheet" type="text/css" href="../stylesheets/areausuarios.css" /> | ||
<link rel="stylesheet" type="text/css" href="../stylesheets/user-site.css" /> | ||
|
||
<!--LLAMADA A LOS SCRIPTS--> | ||
<script src="../scripts/RRSS.js"></script> | ||
|
||
|
||
<!--METADATOS--> | ||
<meta name="author" content="Maximiliano Serratosa" /> | ||
<meta name="robots" content="follow" /> | ||
<meta name="description" content="PAX | DIGITAL MINDS es tu solucion para tu aplicacion web" /> | ||
<meta name="keywords" content="html, css, javascript, php, diseño web, ajax, mysql" /> | ||
<meta name="revisit-after" content="7 days" /> | ||
<meta name="category" content="Web app" /> | ||
<title>VER PROYECTO</title> | ||
</head> | ||
<body> | ||
|
||
<!--INICIO DE LA CABECERA--> | ||
<header id="header"> | ||
<div class="wrap"> | ||
<div id="logo"> | ||
<span class="displ"><img src="../images/icon.png" alt="logo" /></span> | ||
<h1>PAX | DIGITAL MINDS</h1> | ||
</div> | ||
|
||
|
||
<!--MENÚ DE NAVEGACIÓN--> | ||
<nav id="menu"> | ||
<ul> | ||
<li><a href="../index.html" class="btn">INICIO</a></li> | ||
<li><a href="portfolio.php" class="btn">PORTFOLIO</a></li> | ||
<li><a href="presupuesto.html" class="btn">PRESUPUESTO</a></li> | ||
<li><a href="contacto.html" class="btn">CONTACTO</a></li> | ||
<li><a href="../users/areausuarios.php" class="btn_in">AREA USUARIOS</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
</header> | ||
|
||
<!--INICIO DE SECCION--> | ||
<section class="wrap wrap-content"><h2>VER PROYECTO</h2> | ||
<section class="info"> | ||
|
||
<?php foreach($proyecto as $p):?> | ||
<?php $proyecto = new Proyecto($p['ID_proyecto'], $p['nombre_proyecto'], $p['datos'], $p['tecnologia_empleada'], $p['tiempo_consecucion'], $p['imagen']);?> | ||
<!--INICIO DEL BANNER--> | ||
<div id="banner"><h2><?php echo $proyecto->getNombre_proyecto();?></h2></div> | ||
|
||
</section> | ||
</section> | ||
|
||
|
||
<!--INICIAMOS CAJA PARA VER NOTICIAS--> | ||
<section class="wrap wrap-content"> | ||
<section id="articles"> | ||
<article> | ||
<div class="data"> | ||
<span>Tecnología empleada: <?php echo $proyecto->getTecnologia();?></span> | ||
<span>Tiempo de consecución: <?php echo $proyecto->getTiempo();?></span> | ||
</div> | ||
<h4><?php echo $proyecto->getNombre_proyecto();?></h4> | ||
<h5><?php echo $proyecto->getDatos();?></h5> | ||
<p> | ||
<img src='../<?= $proyecto->getImagen();?>'/><br/><br/><br/> | ||
</p> | ||
|
||
|
||
|
||
<br/><br/><a href='javascript:history.back()' class="boton_secundario" id="back_button">VOLVER ATRÁS</a> | ||
</article> | ||
</section> | ||
</section> | ||
|
||
<?php endforeach;?> | ||
|
||
<section> | ||
</section> | ||
|
||
|
||
<div class="clearfix"></div> | ||
<footer id="footer"> | ||
|
||
<div class="wrap"> | ||
|
||
|
||
<div> | ||
<h5>PAX | DIGITAL MINDS</h5> | ||
<!--DIRECCION--> | ||
Avenida de Palmela 19 - 03730 Jávea (Alicante)<br /> | ||
<!--AVISO LEGAL--> | ||
<p><a href="#" class="advice">Política de cookies</a> | | ||
<a href="#" class="advice">Política de privacidad</a> | | ||
<a href="views/avisolegal.html" class="advice">Aviso Legal</a></p> | ||
|
||
</p>© PAX | DIGITAL MINDS 2022 | ||
</div> | ||
|
||
</div> | ||
</footer> | ||
</html> |