root/afridex/index.php @ 3

Revision 1, 1.7 kB (checked in by admin, 18 years ago)
Line 
1<?php get_header(); ?>
2<div id="midspace">
3<div id="mid">
4<p><strong>Afridex</strong> is a business information <strong>aggregator</strong> and professional <strong>database</strong>. It pulls data from across the web about African start-ups, established companies and foreign groups
5operating in the continent.  Afridex is still in closed beta but if you'd like to see your company listed immediately email <a href="mailto:j.gosier@appfrica.org">j.gosier@appfrica.org</a>...
6</p>
7</div></div>
8<div id="site">
9<div id="container">
10<div id="content">
11<div id="content2">
12        <h2>Latest Additions to Afridex</h2>
13       
14        <?php $alt = ""; ?>
15        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
16        <?php if ($alt == "") { $alt = " alt"; } else { $alt = ""; } ?>
17       
18        <div class="contact">
19                <span class="m-name">
20                        <a href="<?php the_permalink(); ?>">
21                                <img class="contact-picture" src="
22                                <?php $wpcm_image_path = get_post_meta($post->ID, "Image", true); 
23                                        if ($wpcm_image_path == '') { echo '/images/contact-default.png'; } 
24                                                else { echo get_post_meta($post->ID, "Image", true); } ?>"
25                                                alt="<?php echo get_post_meta($post->ID, "Company", true); ?>" style="width:30px;" /></a>
26                </span>
27                <span class="m-name"><a href="<?php the_permalink(); ?>"><?php echo get_post_meta($post->ID, "Company", true); ?></a></span>
28                <span class="m-mobile"><a href="<?php the_permalink(); ?>"><?php echo get_post_meta($post->ID, "Website1", true); ?></a></span>
29        </div>
30       
31        <?php endwhile; else: ?>
32        <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
33        <?php endif; ?>
34       
35</div></div>
36<?php include('indexright_bar.php') ?>
37<?php get_sidebar(); ?>
38</div>
39<?php get_footer() ?>
Note: See TracBrowser for help on using the browser.