diff --git a/el/FAQ/Makefile b/el/FAQ/Makefile new file mode 100644 index 0000000000..f1a5ee32e8 --- /dev/null +++ b/el/FAQ/Makefile @@ -0,0 +1,12 @@ +# $FreeBSD$ + +.if exists(../Makefile.conf) +.include "../Makefile.conf" +.endif +.if exists(../Makefile.inc) +.include "../Makefile.inc" +.endif + +DATA= index.html + +.include "${WEB_PREFIX}/share/mk/web.site.mk" diff --git a/el/FAQ/index.html b/el/FAQ/index.html new file mode 100644 index 0000000000..b8329b45e0 --- /dev/null +++ b/el/FAQ/index.html @@ -0,0 +1,16 @@ + +
+ +Η Λίστα Συχνών Ερωτήσεων δεν είναι προσβάσιμη από αυτή τη + διεύθυνση πλέον. Η νέα της διεύθυνση είναι: + ../doc/el_GR.ISO8859-7/books/faq/index.html. + Ο φυλλομετρητής σας θα φορτώσει αυτόματα αυτή τη σελίδα σε λίγα + δευτερόλεπτα. Αν δε γίνει αυτόματα αυτό, ακολουθήστε τον παραπάνω + σύνδεσμο και ενημερώστε τους σελιδοδείκτες σας να δείχνουν στη νέα + διεύθυνση.
+ + diff --git a/el/Makefile b/el/Makefile index b3253c4660..6df09fa5d8 100644 --- a/el/Makefile +++ b/el/Makefile @@ -1,23 +1,26 @@ -# $FreeBSD$ +# $FreeBSD: www/el/Makefile,v 1.1 2008/02/10 09:40:20 keramida Exp $ # # The FreeBSD Greek Documentation Project # Makefile for www/el directory (should be created) # # %SOURCE% mn/Makefile # %SRCID% 1.1 .if exists(Makefile.conf) .include "Makefile.conf" .endif .if exists(../Makefile.inc) .include "../Makefile.inc" .endif +# Subdirectories +# SGML +SUBDIR= FAQ .if !defined(WEB_ONLY) || empty(WEB_ONLY) -SUBDIR= doc +SUBDIR+= doc .endif WEBDIR?= data/el .include "${WEB_PREFIX}/share/mk/web.site.mk"