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
require 'net/ftp' | |
CONTENT_SERVER_DOMAIN_NAME = "one-of-the-ftp-server.thought-sauce.com.hk" | |
CONTENT_SERVER_FTP_LOGIN = "saucy-ftp-server-login" | |
CONTENT_SERVER_FTP_PASSWORD = "saucy-ftp-server-password" | |
# LOGIN and LIST available files at default home directory | |
Net::FTP.open(CONTENT_SERVER_DOMAIN_NAME, CONTENT_SERVER_FTP_LOGIN, CONTENT_SERVER_FTP_PASSWORD) do |ftp| | |
files = ftp.list |
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
<!DOCTYPE html> | |
<!--[if lt IE 7 ]><html class="ie ie6" <?php language_attributes();?>> <![endif]--> | |
<!--[if IE 7 ]><html class="ie ie7" <?php language_attributes();?>> <![endif]--> | |
<!--[if IE 8 ]><html class="ie ie8" <?php language_attributes();?>> <![endif]--> | |
<!--[if IE 9 ]><html class="ie ie9" <?php language_attributes();?>> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--><html <?php language_attributes();?>> <!--<![endif]--> | |
<head> | |
<meta name="robots" content="INDEX,FOLLOW" /> | |
<meta name="author" content="stem cells"> | |
<title><?php if ( is_category() ) { |