CSS Minimalbeispiel: Unterschied zwischen den Versionen
Aus DynPG-Wiki
Zeile 1: | Zeile 1: | ||
[[Category:Beispiele]] | [[Category:Beispiele]] | ||
[[en:CSS Minimal example]] | [[en:CSS Minimal example]] | ||
− | + | → Hauptartikel: [[CSS]] | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | ''Beschreibung:'' Hier soll der Inhalt eines Artikels in roter Farbe ausgegeben werden. | ||
− | ''' | + | '''CSS-Minimalbeispiel - index.php (Artikel-Detailansicht )''' |
<code>[php,N] | <code>[php,N] | ||
<?php | <?php | ||
− | + | require '../dynpg/getcontent.php'; | |
− | + | $GLOBALS["DynPG"]->SetParam_PathToRoot('../dynpg/'); | |
?> | ?> | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> | ||
+ | <head> | ||
+ | <title>Einen Artikel ausgeben</title> | ||
− | + | <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> | |
− | + | ||
− | + | <?php $DynPG->Write_CSS_JS_Header(); ?> <!--Standard-Css von DynPG einbinden--> | |
+ | <link rel="stylesheet" type="text/css" href="style.css" /> <!--eigenes style.css einbinden--> | ||
+ | </head> | ||
− | + | <body> | |
− | + | <h1>Artikelansicht</h1> | |
− | + | ||
− | + | <?php | |
+ | $GLOBALS["DynPG"]->SetParam_A_Anytime(true); //Artikel von Anfang an anzeigen | ||
+ | $GLOBALS["DynPG"]->SetParam_A_Article(5); //Artikelnr. angeben | ||
+ | $GLOBALS["DynPG"]->Write_Article(); //Artikel mit der ID 5 ausgeben | ||
+ | ?> | ||
+ | </body> | ||
+ | </html> | ||
+ | </code> | ||
− | + | '''CSS-Minimalbeispiel - style.css''' | |
− | + | <code>[css, N] | |
− | + | .dynpg_A_content { | |
− | + | color: red; | |
− | + | } | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</code> | </code> | ||
− | [http:// | + | [http://examples.gampers.ch/examples/css/minimal/index.php Beispiel ausführen] |
Version vom 11. November 2010, 11:47 Uhr
→ Hauptartikel: CSS
Beschreibung: Hier soll der Inhalt eines Artikels in roter Farbe ausgegeben werden.
CSS-Minimalbeispiel - index.php (Artikel-Detailansicht )
<?php require '../dynpg/getcontent.php'; $GLOBALS["DynPG"]->SetParam_PathToRoot('../dynpg/'); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US"> <head> <title>Einen Artikel ausgeben</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> <?php $DynPG->Write_CSS_JS_Header(); ?> <!--Standard-Css von DynPG einbinden--> <link rel="stylesheet" type="text/css" href="style.css" /> <!--eigenes style.css einbinden--> </head> <body> <h1>Artikelansicht</h1> <?php $GLOBALS["DynPG"]->SetParam_A_Anytime(true); //Artikel von Anfang an anzeigen $GLOBALS["DynPG"]->SetParam_A_Article(5); //Artikelnr. angeben $GLOBALS["DynPG"]->Write_Article(); //Artikel mit der ID 5 ausgeben ?> </body> </html>
CSS-Minimalbeispiel - style.css
.dynpg_A_content { color: red; }