First commit - Base changemaker-lite build with updated documentation.

This commit is contained in:
admin 2026-01-14 10:09:12 -07:00
parent 84d1285677
commit a04b7d5b43
815 changed files with 102396 additions and 87727 deletions

0
assets/images/.gitkeep Executable file
View File

0
assets/uploads/.gitkeep Normal file → Executable file
View File

202
config.sh
View File

@ -272,6 +272,8 @@ initialize_available_ports() {
["REDIS_EXPORTER_PORT"]=9121
["ALERTMANAGER_PORT"]=9093
["GOTIFY_PORT"]=8889
["MAILHOG_SMTP_PORT"]=1025
["MAILHOG_WEB_PORT"]=8025
)
# Find available ports for each service
@ -353,6 +355,10 @@ REDIS_EXPORTER_PORT=${REDIS_EXPORTER_PORT:-9121}
ALERTMANAGER_PORT=${ALERTMANAGER_PORT:-9093}
GOTIFY_PORT=${GOTIFY_PORT:-8889}
# MailHog Email Testing Ports
MAILHOG_SMTP_PORT=${MAILHOG_SMTP_PORT:-1025}
MAILHOG_WEB_PORT=${MAILHOG_WEB_PORT:-8025}
# Domain Configuration
BASE_DOMAIN=https://changeme.org
DOMAIN=changeme.org
@ -467,6 +473,10 @@ EOL
echo "Redis Exporter: ${REDIS_EXPORTER_PORT:-9121}"
echo "Alertmanager: ${ALERTMANAGER_PORT:-9093}"
echo "Gotify: ${GOTIFY_PORT:-8889}"
echo ""
echo "=== Email Testing ==="
echo "MailHog SMTP: ${MAILHOG_SMTP_PORT:-1025}"
echo "MailHog Web: ${MAILHOG_WEB_PORT:-8025}"
echo "================================"
}
@ -502,31 +512,34 @@ update_mkdocs_yml() {
# Function to update service URLs in services.yaml
update_services_yaml() {
local new_domain=$1
local local_ip=${2:-"localhost"} # Optional parameter for local IP address
if [ ! -f "$SERVICES_YAML" ]; then
echo "Warning: services.yaml not found at $SERVICES_YAML"
return 1
fi
echo "Updating service URLs in services.yaml..."
# Create a backup of the services.yaml file
local timestamp=$(date +"%Y%m%d_%H%M%S")
local backup_file="${SERVICES_YAML}.backup_${timestamp}"
cp "$SERVICES_YAML" "$backup_file"
echo "Created backup of services.yaml at $backup_file"
# Define service name to subdomain mapping
# Load environment variables to get port numbers
load_env_vars
# Define service name to subdomain mapping for Production tab
# This approach is URL-agnostic - it doesn't matter what the current URLs are
declare -A service_mappings=(
declare -A production_mappings=(
["Code Server"]="code.$new_domain"
["Listmonk"]="listmonk.$new_domain"
["NocoDB"]="db.$new_domain"
["Map Server"]="map.$new_domain"
["Influence"]="influence.$new_domain"
["Main Site"]="$new_domain"
["MkDocs (Live)"]="docs.$new_domain"
["Mini QR"]="qr.$new_domain"
["MailHog"]="mail.$new_domain"
["n8n"]="n8n.$new_domain"
["Gitea"]="git.$new_domain"
["Prometheus"]="prometheus.$new_domain"
@ -535,41 +548,107 @@ update_services_yaml() {
["Gotify"]="gotify.$new_domain"
["cAdvisor"]="cadvisor.$new_domain"
)
# Process each service mapping
for service_name in "${!service_mappings[@]}"; do
local target_url="https://${service_mappings[$service_name]}"
# Use awk to find and update the href for each specific service
# This finds the service by name and updates its href regardless of current URL
# Define service name to local URL mapping for Local tab
declare -A local_mappings=(
["Code Server"]="$local_ip:${CODE_SERVER_PORT:-8888}"
["NocoDB"]="$local_ip:${NOCODB_PORT:-8090}"
["Homepage"]="$local_ip:${HOMEPAGE_PORT:-3010}"
["Main Site"]="$local_ip:${MKDOCS_SITE_SERVER_PORT:-4001}"
["MkDocs (Live)"]="$local_ip:${MKDOCS_PORT:-4000}"
["Mini QR"]="$local_ip:${MINI_QR_PORT:-8089}"
["Listmonk"]="$local_ip:${LISTMONK_PORT:-9001}"
["MailHog"]="$local_ip:${MAILHOG_WEB_PORT:-8025}"
["n8n"]="$local_ip:${N8N_PORT:-5678}"
["Gitea"]="$local_ip:${GITEA_WEB_PORT:-3030}"
["Prometheus"]="$local_ip:${PROMETHEUS_PORT:-9090}"
["Grafana"]="$local_ip:${GRAFANA_PORT:-3001}"
["Alertmanager"]="$local_ip:${ALERTMANAGER_PORT:-9093}"
["Gotify"]="$local_ip:${GOTIFY_PORT:-8889}"
["cAdvisor"]="$local_ip:${CADVISOR_PORT:-8080}"
["Node Exporter"]="$local_ip:${NODE_EXPORTER_PORT:-9100}/metrics"
["Redis Exporter"]="$local_ip:${REDIS_EXPORTER_PORT:-9121}/metrics"
)
# Update Production URLs
echo "Updating Production tab URLs..."
for service_name in "${!production_mappings[@]}"; do
local target_url="https://${production_mappings[$service_name]}"
# Use awk to find and update the href for Production services only
awk -v service="$service_name" -v new_url="$target_url" '
BEGIN { in_service = 0 }
# Check if we found the service name
/- [^:]+:/ {
if ($0 ~ ("- " service ":")) {
BEGIN {
in_production = 0
in_service = 0
}
# Track if we are in Production section
/^- Production/ { in_production = 1; in_service = 0 }
/^- Local/ { in_production = 0; in_service = 0 }
# Check if we found the service name in Production section
in_production && /^ - [^:]+:/ {
if ($0 ~ (" - " service ":")) {
in_service = 1
} else {
in_service = 0
}
}
# If we are in the target service and find href line, update it
in_service && /href:/ {
in_production && in_service && /href:/ {
gsub(/href: "[^"]*"/, "href: \"" new_url "\"")
}
# Print the line (modified or not)
{ print }
' "$SERVICES_YAML" > "${SERVICES_YAML}.tmp"
# Replace the original file with the updated version
mv "${SERVICES_YAML}.tmp" "$SERVICES_YAML"
echo " ✓ Updated $service_name -> $target_url"
echo " ✓ Production: $service_name -> $target_url"
done
echo "✅ All service URLs updated to use domain: $new_domain"
# Update Local URLs
echo "Updating Local tab URLs..."
for service_name in "${!local_mappings[@]}"; do
local target_url="http://${local_mappings[$service_name]}"
# Use awk to find and update the href for Local services only
awk -v service="$service_name" -v new_url="$target_url" '
BEGIN {
in_local = 0
in_service = 0
}
# Track if we are in Local section
/^- Local/ { in_local = 1; in_service = 0 }
/^- Production/ { in_local = 0; in_service = 0 }
# Check if we found the service name in Local section
in_local && /^ - [^:]+:/ {
if ($0 ~ (" - " service ":")) {
in_service = 1
} else {
in_service = 0
}
}
# If we are in the target service and find href line, update it
in_local && in_service && /href:/ {
gsub(/href: "[^"]*"/, "href: \"" new_url "\"")
}
# Print the line (modified or not)
{ print }
' "$SERVICES_YAML" > "${SERVICES_YAML}.tmp"
mv "${SERVICES_YAML}.tmp" "$SERVICES_YAML"
echo " ✓ Local: $service_name -> $target_url"
done
echo "✅ All service URLs updated:"
echo " - Production tab: $new_domain"
echo " - Local tab: $local_ip"
return 0
}
@ -997,6 +1076,8 @@ check_port_conflicts() {
"REDIS_EXPORTER_PORT"
"ALERTMANAGER_PORT"
"GOTIFY_PORT"
"MAILHOG_SMTP_PORT"
"MAILHOG_WEB_PORT"
)
for var in "${port_vars[@]}"; do
@ -1107,30 +1188,63 @@ update_docker_compose_names() {
# Update container names, network names, and volume names
# Process the file and save to temp file
# These patterns handle both clean files and files that already have instance suffixes
sed \
-e "s/container_name: code-server-changemaker-[a-zA-Z0-9_-]*$/container_name: code-server-changemaker-${instance_id}/g" \
-e "s/container_name: code-server-changemaker$/container_name: code-server-changemaker-${instance_id}/g" \
-e "s/container_name: mkdocs-site-server-changemaker-[a-zA-Z0-9_-]*$/container_name: mkdocs-site-server-changemaker-${instance_id}/g" \
-e "s/container_name: mkdocs-site-server-changemaker$/container_name: mkdocs-site-server-changemaker-${instance_id}/g" \
-e "s/container_name: \([^-]*\)-changemaker-[a-zA-Z0-9_-]*$/container_name: \1-changemaker-${instance_id}/g" \
-e "s/container_name: \([^-]*\)-changemaker$/container_name: \1-changemaker-${instance_id}/g" \
-e "s/container_name: \([^-]*\)_\([^-]*\)_changemaker$/container_name: \1_\2_changemaker_${instance_id}/g" \
-e "s/container_name: \([^-]*\)_\([^-]*\)$/container_name: \1_\2_${instance_id}/g" \
-e "s/container_name: \([^-]*\)$/container_name: \1-${instance_id}/g" \
-e "s/container_name: listmonk_app_[^_]*_[a-zA-Z0-9_-]*-[a-zA-Z0-9_-]*$/container_name: listmonk_app_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: listmonk_app$/container_name: listmonk_app_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: listmonk_db_[^_]*_[a-zA-Z0-9_-]*-[a-zA-Z0-9_-]*$/container_name: listmonk_db_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: listmonk_db$/container_name: listmonk_db_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: gitea_changemaker_[^_]*_[a-zA-Z0-9_-]*-[a-zA-Z0-9_-]*$/container_name: gitea_changemaker_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: gitea_app$/container_name: gitea_changemaker_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: gitea_mysql_changemaker_[^_]*_[^_]*_[a-zA-Z0-9_-]*-[a-zA-Z0-9_-]*$/container_name: gitea_mysql_changemaker_${instance_id}_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: gitea_mysql_changemaker$/container_name: gitea_mysql_changemaker_${instance_id}_${instance_id}_${instance_id}-${instance_id}/g" \
-e "s/container_name: \([^-]*\)-[a-zA-Z0-9_-]*$/container_name: \1-${instance_id}/g" \
-e "s/container_name: \([^-_]*\)$/container_name: \1-${instance_id}/g" \
-e "s/changemaker-lite-[a-zA-Z0-9_-]*:/changemaker-lite-${instance_id}:/g" \
-e "s/changemaker-lite:/changemaker-lite-${instance_id}:/g" \
-e "s/- changemaker-lite-[a-zA-Z0-9_-]*$/- changemaker-lite-${instance_id}/g" \
-e "s/- changemaker-lite$/- changemaker-lite-${instance_id}/g" \
-e "s/listmonk-data-[a-zA-Z0-9_-]*:/listmonk-data-${instance_id}:/g" \
-e "s/listmonk-data:/listmonk-data-${instance_id}:/g" \
-e "s/source: listmonk-data-[a-zA-Z0-9_-]*$/source: listmonk-data-${instance_id}/g" \
-e "s/source: listmonk-data$/source: listmonk-data-${instance_id}/g" \
-e "s/n8n_data_[a-zA-Z0-9_-]*:/n8n_data_${instance_id}:/g" \
-e "s/n8n_data:/n8n_data_${instance_id}:/g" \
-e "s/source: n8n_data_[a-zA-Z0-9_-]*$/source: n8n_data_${instance_id}/g" \
-e "s/source: n8n_data$/source: n8n_data_${instance_id}/g" \
-e "s/nc_data_[a-zA-Z0-9_-]*:/nc_data_${instance_id}:/g" \
-e "s/nc_data:/nc_data_${instance_id}:/g" \
-e "s/source: nc_data_[a-zA-Z0-9_-]*$/source: nc_data_${instance_id}/g" \
-e "s/source: nc_data$/source: nc_data_${instance_id}/g" \
-e "s/db_data_[a-zA-Z0-9_-]*:/db_data_${instance_id}:/g" \
-e "s/db_data:/db_data_${instance_id}:/g" \
-e "s/source: db_data_[a-zA-Z0-9_-]*$/source: db_data_${instance_id}/g" \
-e "s/source: db_data$/source: db_data_${instance_id}/g" \
-e "s/gitea_data_[a-zA-Z0-9_-]*:/gitea_data_${instance_id}:/g" \
-e "s/gitea_data:/gitea_data_${instance_id}:/g" \
-e "s/source: gitea_data_[a-zA-Z0-9_-]*$/source: gitea_data_${instance_id}/g" \
-e "s/source: gitea_data$/source: gitea_data_${instance_id}/g" \
-e "s/mysql_data_[a-zA-Z0-9_-]*:/mysql_data_${instance_id}:/g" \
-e "s/mysql_data:/mysql_data_${instance_id}:/g" \
-e "s/source: mysql_data_[a-zA-Z0-9_-]*$/source: mysql_data_${instance_id}/g" \
-e "s/source: mysql_data$/source: mysql_data_${instance_id}/g" \
-e "s/redis-data-[a-zA-Z0-9_-]*:/redis-data-${instance_id}:/g" \
-e "s/redis-data:/redis-data-${instance_id}:/g" \
-e "s/source: redis-data-[a-zA-Z0-9_-]*$/source: redis-data-${instance_id}/g" \
-e "s/source: redis-data$/source: redis-data-${instance_id}/g" \
-e "s/prometheus-data-[a-zA-Z0-9_-]*:/prometheus-data-${instance_id}:/g" \
-e "s/prometheus-data:/prometheus-data-${instance_id}:/g" \
-e "s/source: prometheus-data-[a-zA-Z0-9_-]*$/source: prometheus-data-${instance_id}/g" \
-e "s/source: prometheus-data$/source: prometheus-data-${instance_id}/g" \
-e "s/grafana-data-[a-zA-Z0-9_-]*:/grafana-data-${instance_id}:/g" \
-e "s/grafana-data:/grafana-data-${instance_id}:/g" \
-e "s/source: grafana-data-[a-zA-Z0-9_-]*$/source: grafana-data-${instance_id}/g" \
-e "s/source: grafana-data$/source: grafana-data-${instance_id}/g" \
"$DOCKER_COMPOSE_FILE" > "$temp_file"
@ -1209,6 +1323,7 @@ fi
update_env_instance_config "$instance_identifier"
# Domain configuration
echo -e "\n---- Domain Configuration ----"
read -p "Enter your domain name (without protocol, e.g., example.com): " domain_name
if [ -z "$domain_name" ]; then
@ -1216,6 +1331,20 @@ if [ -z "$domain_name" ]; then
domain_name="changeme.org"
fi
# Local IP configuration for Homepage Local tab
echo -e "\n---- Local Network Configuration ----"
echo "For the Homepage dashboard, you can configure the Local tab to use a specific"
echo "IP address for accessing services on your local network (e.g., Tailscale IP)."
echo ""
read -p "Enter local IP address [default: localhost]: " local_ip
if [ -z "$local_ip" ]; then
local_ip="localhost"
echo "Using default: localhost"
else
echo "Using local IP: $local_ip"
fi
echo -e "\nUpdating domain settings in .env file..."
# Update main domain settings
@ -1293,7 +1422,7 @@ update_mkdocs_yml "$domain_name"
# Update service URLs in services.yaml
echo -e "\nUpdating service URLs in services.yaml..."
update_services_yaml "$domain_name"
update_services_yaml "$domain_name" "$local_ip"
# Update the login URL in main.html
echo -e "\nUpdating login URL in main.html..."
@ -1380,6 +1509,7 @@ echo -e "\n✅ Configuration completed successfully!"
echo "Your .env file has been configured with:"
echo "- Instance ID: $instance_identifier"
echo "- Domain: $domain_name"
echo "- Local IP: $local_ip (for Homepage Local tab)"
echo "- Cookie Domain: .$domain_name"
echo "- Allowed Origins: https://map.$domain_name,http://localhost:3000"
echo "- Map .env updated with domain settings"
@ -1390,7 +1520,9 @@ echo "- Grafana Admin Password: Generated (see .env file)"
echo "- Gotify Admin Password: Generated (see .env file)"
echo "- Centralized services: Redis, Prometheus, Grafana"
echo "- Monitoring services: cAdvisor, Node Exporter, Redis Exporter, Alertmanager, Gotify"
echo "- Email testing: MailHog"
echo "- Tunnel configuration updated at: $TUNNEL_CONFIG_FILE"
echo "- Homepage services.yaml configured with Production and Local tabs"
echo -e "\nYour .env file is located at: $ENV_FILE"
echo "A backup of your original .env file was created before modifications."
@ -1421,6 +1553,10 @@ echo ""
echo " Centralized Services:"
echo " - Redis: http://localhost:${REDIS_PORT:-6379}"
echo ""
echo " Email Testing:"
echo " - MailHog Web UI: http://localhost:${MAILHOG_WEB_PORT:-8025}"
echo " - MailHog SMTP: localhost:${MAILHOG_SMTP_PORT:-1025}"
echo ""
echo " Monitoring Services (optional monitoring profile):"
echo " - Prometheus: http://localhost:${PROMETHEUS_PORT:-9090}"
echo " - Grafana: http://localhost:${GRAFANA_PORT:-3001}"

View File

@ -1,29 +1,29 @@
# Cloudflare Tunnel Configuration for cmlite.org
# Generated by Changemaker.lite start-production.sh on Sat Jul 5 09:07:25 PM MDT 2025
# Cloudflare Tunnel Configuration for freealberta.org
# Generated by Changemaker.lite start-production.sh on Mon Jan 12 01:31:30 PM MST 2026
tunnel: 0447884a-8052-41fa-9ff1-f6d16abdc5e1
credentials-file: /mnt/storagessd1tb/changemaker.lite.dev/changemaker.lite/configs/cloudflare/0447884a-8052-41fa-9ff1-f6d16abdc5e1.json
tunnel: 5c56e1b0-5a58-4bf3-96ea-517400ba55f3
credentials-file: /home/bunker-admin/freealberta/changemaker.lite/configs/cloudflare/5c56e1b0-5a58-4bf3-96ea-517400ba55f3.json
ingress:
- hostname: homepage.cmlite.org
service: http://localhost:3010
- hostname: code.cmlite.org
service: http://localhost:8888
- hostname: listmonk.cmlite.org
- hostname: homepage.freealberta.org
service: http://localhost:3011
- hostname: code.freealberta.org
service: http://localhost:8889
- hostname: listmonk.freealberta.org
service: http://localhost:9001
- hostname: docs.cmlite.org
service: http://localhost:4000
- hostname: cmlite.org
- hostname: docs.freealberta.org
service: http://localhost:4002
- hostname: n8n.cmlite.org
service: http://localhost:5678
- hostname: db.cmlite.org
service: http://localhost:8090
- hostname: git.cmlite.org
service: http://localhost:3030
- hostname: map.cmlite.org
service: http://localhost:3000
- hostname: qr.cmlite.org
service: http://localhost:8089
- hostname: influence.cmlite.org
- hostname: freealberta.org
service: http://localhost:4003
- hostname: n8n.freealberta.org
service: http://localhost:5679
- hostname: db.freealberta.org
service: http://localhost:8092
- hostname: git.freealberta.org
service: http://localhost:3031
- hostname: map.freealberta.org
service: http://localhost:3002
- hostname: influence.freealberta.org
service: http://localhost:3333
- hostname: qr.freealberta.org
service: http://localhost:8091
- service: http_status:404

162
configs/homepage/services.yaml Executable file → Normal file
View File

@ -11,73 +11,67 @@
- Code Server:
icon: mdi-code-braces
href: "https://code.bnkserve.org"
href: "https://code.freealberta.org"
description: VS Code in the browser - Platform Editor
container: code-server-changemaker
container: code-server-changemaker-freealberta
- NocoDB:
icon: mdi-database
href: "https://db.bnkserve.org"
href: "https://db.freealberta.org"
description: No-code database platform
container: changemakerlite-nocodb-1
- Map Server:
icon: mdi-map
href: "https://map.bnkserve.org"
description: Map server for geospatial data
container: nocodb-map-viewer
- Influence:
icon: mdi-account-group
href: "https://influence.bnkserve.org"
description: Political influence and campaign management
container: influence-app-1
- Production - Content & Docs:
- Main Site:
icon: mdi-web
href: "https://bnkserve.org"
href: "https://freealberta.org"
description: CM-lite campaign website
container: mkdocs-site-server-changemaker
container: mkdocs-site-server-changemaker-freealberta
- MkDocs (Live):
icon: mdi-book-open-page-variant
href: "https://docs.cmlite.org"
href: "https://docs.freealberta.org"
description: Live documentation server with hot reload
container: mkdocs-changemaker
container: mkdocs-changemaker-freealberta
- Mini QR:
icon: mdi-qrcode
href: "https://qr.bnkserve.org"
href: "https://qr.freealberta.org"
description: QR code generator
container: mini-qr
container: mini-qr-freealberta
- Listmonk:
icon: mdi-email-newsletter
href: "https://listmonk.bnkserve.org"
href: "https://listmonk.freealberta.org"
description: Newsletter & mailing list manager
container: listmonk_app
container: listmonk_app_test4_freealberta-freealberta
- MailHog:
icon: mdi-email-open
href: "https://mail.freealberta.org"
description: Email testing service
container: mailhog-changemaker-freealberta
- Production - Automation:
- n8n:
icon: mdi-robot-industrial
href: "https://n8n.bnkserve.org"
href: "https://n8n.freealberta.org"
description: Workflow automation platform
container: n8n-changemaker
container: n8n-changemaker-freealberta
- Gitea:
icon: mdi-git
href: "https://git.bnkserve.org"
href: "https://git.freealberta.org"
description: Git repository hosting
container: gitea_changemaker
container: gitea_changemaker_test4_freealberta-freealberta
- PostgreSQL (Listmonk):
icon: mdi-database-outline
href: "#"
description: Database for Listmonk
container: listmonk_db
container: listmonk_db_test4_freealberta-freealberta
- PostgreSQL (NocoDB):
icon: mdi-database-outline
@ -89,51 +83,51 @@
icon: mdi-database-sync
href: "#"
description: Shared cache & session storage
container: redis-changemaker
container: redis-changemaker-freealberta
- Production - Monitoring:
- Prometheus:
icon: mdi-chart-line
href: "https://prometheus.bnkserve.org"
href: "https://prometheus.freealberta.org"
description: Metrics collection & time-series database
container: prometheus-changemaker
container: prometheus-changemaker-freealberta
- Grafana:
icon: mdi-chart-box
href: "https://grafana.bnkserve.org"
href: "https://grafana.freealberta.org"
description: Monitoring dashboards & visualizations
container: grafana-changemaker
container: grafana-changemaker-freealberta
- Alertmanager:
icon: mdi-bell-alert
href: "https://alertmanager.bnkserve.org"
href: "https://alertmanager.freealberta.org"
description: Alert routing & notification management
container: alertmanager-changemaker
container: alertmanager-changemaker-freealberta
- Gotify:
icon: mdi-cellphone-message
href: "https://gotify.bnkserve.org"
href: "https://gotify.freealberta.org"
description: Self-hosted push notifications
container: gotify-changemaker
container: gotify-changemaker-freealberta
- cAdvisor:
icon: mdi-docker
href: "https://cadvisor.bnkserve.org"
href: "https://cadvisor.freealberta.org"
description: Container resource metrics
container: cadvisor-changemaker
container: cadvisor-changemaker-freealberta
- Node Exporter:
icon: mdi-server
href: "#"
description: System-level metrics exporter
container: node-exporter-changemaker
container: node-exporter-changemaker-freealberta
- Redis Exporter:
icon: mdi-database-export
href: "#"
description: Redis metrics exporter
container: redis-exporter-changemaker
container: redis-exporter-changemaker-freealberta
#####################################
# LOCAL DEVELOPMENT - Localhost URLs
@ -143,79 +137,73 @@
- Code Server:
icon: mdi-code-braces
href: "http://localhost:8888"
href: "http://100.67.78.53:8888"
description: VS Code in the browser (port 8888)
container: code-server-changemaker
container: code-server-changemaker-freealberta
- NocoDB:
icon: mdi-database
href: "http://localhost:8090"
href: "http://100.67.78.53:8090"
description: No-code database platform (port 8090)
container: changemakerlite-nocodb-1
- Map Server:
icon: mdi-map
href: "http://localhost:3000"
description: Map server for geospatial data (port 3000)
container: nocodb-map-viewer
- Influence:
icon: mdi-account-group
href: "http://localhost:3333"
description: Political influence and campaign management (port 3333)
container: influence-app-1
- Homepage:
icon: mdi-home
href: "http://localhost:3010"
href: "http://100.67.78.53:3010"
description: This dashboard (port 3010)
container: homepage-changemaker
container: homepage-changemaker-freealberta
- Local - Content & Docs:
- Main Site:
icon: mdi-web
href: "http://localhost:4001"
href: "http://100.67.78.53:4001"
description: CM-lite campaign website (port 4001)
container: mkdocs-site-server-changemaker
container: mkdocs-site-server-changemaker-freealberta
- MkDocs (Live):
icon: mdi-book-open-page-variant
href: "http://localhost:4000"
href: "http://100.67.78.53:4000"
description: Live documentation with hot reload (port 4000)
container: mkdocs-changemaker
container: mkdocs-changemaker-freealberta
- Mini QR:
icon: mdi-qrcode
href: "http://localhost:8089"
href: "http://100.67.78.53:8089"
description: QR code generator (port 8089)
container: mini-qr
container: mini-qr-freealberta
- Listmonk:
icon: mdi-email-newsletter
href: "http://localhost:9000"
description: Newsletter & mailing list manager (port 9000)
container: listmonk_app
href: "http://100.67.78.53:9001"
description: Newsletter & mailing list manager (port 9001)
container: listmonk_app_test4_freealberta-freealberta
- MailHog:
icon: mdi-email-open
href: "http://100.67.78.53:8025"
description: Email testing service (port 8025)
container: mailhog-changemaker-freealberta
- Local - Automation:
- n8n:
icon: mdi-robot-industrial
href: "http://localhost:5678"
href: "http://100.67.78.53:5678"
description: Workflow automation platform (port 5678)
container: n8n-changemaker
container: n8n-changemaker-freealberta
- Gitea:
icon: mdi-git
href: "http://localhost:3030"
href: "http://100.67.78.53:3030"
description: Git repository hosting (port 3030)
container: gitea_changemaker
container: gitea_changemaker_test4_freealberta-freealberta
- PostgreSQL (Listmonk):
icon: mdi-database-outline
href: "#"
description: Database for Listmonk (port 5432)
container: listmonk_db
container: listmonk_db_test4_freealberta-freealberta
- PostgreSQL (NocoDB):
icon: mdi-database-outline
@ -227,48 +215,48 @@
icon: mdi-database-sync
href: "#"
description: Shared cache & session storage (port 6379)
container: redis-changemaker
container: redis-changemaker-freealberta
- Local - Monitoring:
- Prometheus:
icon: mdi-chart-line
href: "http://localhost:9090"
href: "http://100.67.78.53:9090"
description: Metrics collection & time-series database (port 9090)
container: prometheus-changemaker
container: prometheus-changemaker-freealberta
- Grafana:
icon: mdi-chart-box
href: "http://localhost:3001"
href: "http://100.67.78.53:3001"
description: Monitoring dashboards & visualizations (port 3001)
container: grafana-changemaker
container: grafana-changemaker-freealberta
- Alertmanager:
icon: mdi-bell-alert
href: "http://localhost:9093"
href: "http://100.67.78.53:9093"
description: Alert routing & notification management (port 9093)
container: alertmanager-changemaker
container: alertmanager-changemaker-freealberta
- Gotify:
icon: mdi-cellphone-message
href: "http://localhost:8889"
href: "http://100.67.78.53:8889"
description: Self-hosted push notifications (port 8889)
container: gotify-changemaker
container: gotify-changemaker-freealberta
- cAdvisor:
icon: mdi-docker
href: "http://localhost:8080"
href: "http://100.67.78.53:8080"
description: Container resource metrics (port 8080)
container: cadvisor-changemaker
container: cadvisor-changemaker-freealberta
- Node Exporter:
icon: mdi-server
href: "http://localhost:9100/metrics"
href: "http://100.67.78.53:9100/metrics"
description: System-level metrics exporter (port 9100)
container: node-exporter-changemaker
container: node-exporter-changemaker-freealberta
- Redis Exporter:
icon: mdi-database-export
href: "http://localhost:9121/metrics"
href: "http://100.67.78.53:9121/metrics"
description: Redis metrics exporter (port 9121)
container: redis-exporter-changemaker
container: redis-exporter-changemaker-freealberta

View File

@ -0,0 +1,274 @@
---
# Homepage Services Configuration
# Tab 1: Production URLs (external/public access)
# Tab 2: Local Development URLs (localhost with ports from config.sh)
#####################################
# PRODUCTION - External URLs
#####################################
- Production - Essential Tools:
- Code Server:
icon: mdi-code-braces
href: "https://code.bnkserve.org"
description: VS Code in the browser - Platform Editor
container: code-server-changemaker
- NocoDB:
icon: mdi-database
href: "https://db.bnkserve.org"
description: No-code database platform
container: changemakerlite-nocodb-1
- Map Server:
icon: mdi-map
href: "https://map.bnkserve.org"
description: Map server for geospatial data
container: nocodb-map-viewer
- Influence:
icon: mdi-account-group
href: "https://influence.bnkserve.org"
description: Political influence and campaign management
container: influence-app-1
- Production - Content & Docs:
- Main Site:
icon: mdi-web
href: "https://bnkserve.org"
description: CM-lite campaign website
container: mkdocs-site-server-changemaker
- MkDocs (Live):
icon: mdi-book-open-page-variant
href: "https://docs.cmlite.org"
description: Live documentation server with hot reload
container: mkdocs-changemaker
- Mini QR:
icon: mdi-qrcode
href: "https://qr.bnkserve.org"
description: QR code generator
container: mini-qr
- Listmonk:
icon: mdi-email-newsletter
href: "https://listmonk.bnkserve.org"
description: Newsletter & mailing list manager
container: listmonk_app
- Production - Automation:
- n8n:
icon: mdi-robot-industrial
href: "https://n8n.bnkserve.org"
description: Workflow automation platform
container: n8n-changemaker
- Gitea:
icon: mdi-git
href: "https://git.bnkserve.org"
description: Git repository hosting
container: gitea_changemaker
- PostgreSQL (Listmonk):
icon: mdi-database-outline
href: "#"
description: Database for Listmonk
container: listmonk_db
- PostgreSQL (NocoDB):
icon: mdi-database-outline
href: "#"
description: Database for NocoDB
container: changemakerlite-root_db-1
- Redis:
icon: mdi-database-sync
href: "#"
description: Shared cache & session storage
container: redis-changemaker
- Production - Monitoring:
- Prometheus:
icon: mdi-chart-line
href: "https://prometheus.bnkserve.org"
description: Metrics collection & time-series database
container: prometheus-changemaker
- Grafana:
icon: mdi-chart-box
href: "https://grafana.bnkserve.org"
description: Monitoring dashboards & visualizations
container: grafana-changemaker
- Alertmanager:
icon: mdi-bell-alert
href: "https://alertmanager.bnkserve.org"
description: Alert routing & notification management
container: alertmanager-changemaker
- Gotify:
icon: mdi-cellphone-message
href: "https://gotify.bnkserve.org"
description: Self-hosted push notifications
container: gotify-changemaker
- cAdvisor:
icon: mdi-docker
href: "https://cadvisor.bnkserve.org"
description: Container resource metrics
container: cadvisor-changemaker
- Node Exporter:
icon: mdi-server
href: "#"
description: System-level metrics exporter
container: node-exporter-changemaker
- Redis Exporter:
icon: mdi-database-export
href: "#"
description: Redis metrics exporter
container: redis-exporter-changemaker
#####################################
# LOCAL DEVELOPMENT - Localhost URLs
#####################################
- Local - Essential Tools:
- Code Server:
icon: mdi-code-braces
href: "http://localhost:8888"
description: VS Code in the browser (port 8888)
container: code-server-changemaker
- NocoDB:
icon: mdi-database
href: "http://localhost:8090"
description: No-code database platform (port 8090)
container: changemakerlite-nocodb-1
- Map Server:
icon: mdi-map
href: "http://localhost:3000"
description: Map server for geospatial data (port 3000)
container: nocodb-map-viewer
- Influence:
icon: mdi-account-group
href: "http://localhost:3333"
description: Political influence and campaign management (port 3333)
container: influence-app-1
- Homepage:
icon: mdi-home
href: "http://localhost:3010"
description: This dashboard (port 3010)
container: homepage-changemaker
- Local - Content & Docs:
- Main Site:
icon: mdi-web
href: "http://localhost:4001"
description: CM-lite campaign website (port 4001)
container: mkdocs-site-server-changemaker
- MkDocs (Live):
icon: mdi-book-open-page-variant
href: "http://localhost:4000"
description: Live documentation with hot reload (port 4000)
container: mkdocs-changemaker
- Mini QR:
icon: mdi-qrcode
href: "http://localhost:8089"
description: QR code generator (port 8089)
container: mini-qr
- Listmonk:
icon: mdi-email-newsletter
href: "http://localhost:9000"
description: Newsletter & mailing list manager (port 9000)
container: listmonk_app
- Local - Automation:
- n8n:
icon: mdi-robot-industrial
href: "http://localhost:5678"
description: Workflow automation platform (port 5678)
container: n8n-changemaker
- Gitea:
icon: mdi-git
href: "http://localhost:3030"
description: Git repository hosting (port 3030)
container: gitea_changemaker
- PostgreSQL (Listmonk):
icon: mdi-database-outline
href: "#"
description: Database for Listmonk (port 5432)
container: listmonk_db
- PostgreSQL (NocoDB):
icon: mdi-database-outline
href: "#"
description: Database for NocoDB
container: changemakerlite-root_db-1
- Redis:
icon: mdi-database-sync
href: "#"
description: Shared cache & session storage (port 6379)
container: redis-changemaker
- Local - Monitoring:
- Prometheus:
icon: mdi-chart-line
href: "http://localhost:9090"
description: Metrics collection & time-series database (port 9090)
container: prometheus-changemaker
- Grafana:
icon: mdi-chart-box
href: "http://localhost:3001"
description: Monitoring dashboards & visualizations (port 3001)
container: grafana-changemaker
- Alertmanager:
icon: mdi-bell-alert
href: "http://localhost:9093"
description: Alert routing & notification management (port 9093)
container: alertmanager-changemaker
- Gotify:
icon: mdi-cellphone-message
href: "http://localhost:8889"
description: Self-hosted push notifications (port 8889)
container: gotify-changemaker
- cAdvisor:
icon: mdi-docker
href: "http://localhost:8080"
description: Container resource metrics (port 8080)
container: cadvisor-changemaker
- Node Exporter:
icon: mdi-server
href: "http://localhost:9100/metrics"
description: System-level metrics exporter (port 9100)
container: node-exporter-changemaker
- Redis Exporter:
icon: mdi-database-export
href: "http://localhost:9121/metrics"
description: Redis metrics exporter (port 9121)
container: redis-exporter-changemaker

View File

@ -8,7 +8,7 @@ services:
build:
context: .
dockerfile: Dockerfile.code-server
container_name: code-server-changemaker
container_name: code-server-changemaker-freealberta
environment:
- DOCKER_USER=${USER_NAME:-coder}
- DEFAULT_WORKSPACE=/home/coder/mkdocs/
@ -21,16 +21,16 @@ services:
- "${CODE_SERVER_PORT:-8888}:8080"
restart: unless-stopped
networks:
- changemaker-lite
- changemaker-lite-freealberta
listmonk-app:
image: listmonk/listmonk:latest
container_name: listmonk_app_test4
container_name: listmonk_app_test4_freealberta-freealberta
restart: unless-stopped
ports:
- "${LISTMONK_PORT:-9001}:9000"
networks:
- changemaker-lite
- changemaker-lite-freealberta
hostname: ${LISTMONK_HOSTNAME}
depends_on:
- listmonk-db
@ -41,7 +41,7 @@ services:
LISTMONK_db__password: *db-password
LISTMONK_db__database: *db-name
LISTMONK_db__host: listmonk-db
LISTMONK_db__port: ${LISTMONK_DB_PORT:-5432}
LISTMONK_db__port: 5432
LISTMONK_db__ssl_mode: disable
LISTMONK_db__max_open: ${LISTMONK_DB_MAX_OPEN:-25}
LISTMONK_db__max_idle: ${LISTMONK_DB_MAX_IDLE:-25}
@ -54,12 +54,12 @@ services:
listmonk-db:
image: postgres:17-alpine
container_name: listmonk_db_test4
container_name: listmonk_db_test4_freealberta-freealberta
restart: unless-stopped
ports:
- "127.0.0.1:${LISTMONK_DB_PORT:-5432}:5432"
networks:
- changemaker-lite
- changemaker-lite-freealberta
environment:
<<: *db-credentials
healthcheck:
@ -69,12 +69,12 @@ services:
retries: 6
volumes:
- type: volume
source: listmonk-data
source: listmonk-data-freealberta
target: /var/lib/postgresql/data
mkdocs:
image: squidfunk/mkdocs-material
container_name: mkdocs-changemaker
container_name: mkdocs-changemaker-freealberta
volumes:
- ./mkdocs:/docs:rw
- ./assets/images:/docs/assets/images:rw
@ -85,12 +85,12 @@ services:
- SITE_URL=${BASE_DOMAIN:-https://changeme.org}
command: serve --dev-addr=0.0.0.0:8000 --watch-theme --livereload
networks:
- changemaker-lite
- changemaker-lite-freealberta
restart: unless-stopped
mkdocs-site-server:
image: lscr.io/linuxserver/nginx:latest
container_name: mkdocs-site-server-changemaker
container_name: mkdocs-site-server-changemaker-freealberta
environment:
- PUID=${USER_ID:-1000}
- PGID=${GROUP_ID:-1000}
@ -102,11 +102,11 @@ services:
- "${MKDOCS_SITE_SERVER_PORT:-4001}:80"
restart: unless-stopped
networks:
- changemaker-lite
- changemaker-lite-freealberta
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: n8n-changemaker
container_name: n8n-changemaker-freealberta
restart: unless-stopped
ports:
- "${N8N_PORT:-5678}:5678"
@ -125,7 +125,7 @@ services:
- n8n_data_test4:/home/node/.n8n
- ./local-files:/files
networks:
- changemaker-lite
- changemaker-lite-freealberta
nocodb:
depends_on:
@ -140,7 +140,7 @@ services:
volumes:
- "nc_data_test4:/usr/app/data"
networks:
- changemaker-lite
- changemaker-lite-freealberta
root_db:
environment:
POSTGRES_DB: root_db
@ -156,12 +156,12 @@ services:
volumes:
- "db_data_test4:/var/lib/postgresql/data"
networks:
- changemaker-lite
- changemaker-lite-freealberta
# Homepage App
homepage-changemaker:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage-changemaker
container_name: homepage-changemaker-freealberta
ports:
- "${HOMEPAGE_PORT:-3010}:3000"
volumes:
@ -177,12 +177,12 @@ services:
- HOMEPAGE_VAR_BASE_URL=${HOMEPAGE_VAR_BASE_URL:-http://localhost}
restart: unless-stopped
networks:
- changemaker-lite
- changemaker-lite-freealberta
# Gitea - Git service
gitea-app:
image: gitea/gitea:1.23.7
container_name: gitea_changemaker_test4
container_name: gitea_changemaker_test4_freealberta-freealberta
environment:
- USER_UID=${USER_ID:-1000}
- USER_GID=${GROUP_ID:-1000}
@ -201,7 +201,7 @@ services:
- GITEA__server__PROXY_ALLOW_SUBNET=0.0.0.0/0
restart: unless-stopped
networks:
- changemaker-lite
- changemaker-lite-freealberta
volumes:
- gitea_data_test4:/data
- /etc/timezone:/etc/timezone:ro
@ -214,7 +214,7 @@ services:
gitea-db:
image: mysql:8
container_name: gitea_mysql_changemaker_test4_test4
container_name: gitea_mysql_changemaker_test4_test4_freealberta-freealberta
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=${GITEA_DB_ROOT_PASSWORD}
@ -222,7 +222,7 @@ services:
- MYSQL_PASSWORD=${GITEA_DB_PASSWD}
- MYSQL_DATABASE=${GITEA_DB_NAME:-gitea}
networks:
- changemaker-lite
- changemaker-lite-freealberta
volumes:
- mysql_data_test4:/var/lib/mysql
healthcheck:
@ -233,22 +233,22 @@ services:
mini-qr:
image: ghcr.io/lyqht/mini-qr:latest
container_name: mini-qr
container_name: mini-qr-freealberta
ports:
- "${MINI_QR_PORT:-8089}:8080"
restart: unless-stopped
networks:
- changemaker-lite
- changemaker-lite-freealberta
# Shared Redis - Used by all services for caching, queues, sessions
redis:
image: redis:7-alpine
container_name: redis-changemaker
container_name: redis-changemaker-freealberta
command: redis-server --appendonly yes --maxmemory 512mb --maxmemory-policy allkeys-lru
ports:
- "6379:6379"
- "${REDIS_PORT:-6379}:6379"
volumes:
- redis-data:/data
- redis-data-freealberta:/data
restart: always
healthcheck:
test: ["CMD", "redis-cli", "ping"]
@ -264,7 +264,7 @@ services:
cpus: '0.25'
memory: 256M
networks:
- changemaker-lite
- changemaker-lite-freealberta
logging:
driver: "json-file"
options:
@ -274,7 +274,7 @@ services:
# Prometheus - Metrics collection for all services
prometheus:
image: prom/prometheus:latest
container_name: prometheus-changemaker
container_name: prometheus-changemaker-freealberta
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
@ -283,17 +283,17 @@ services:
- "${PROMETHEUS_PORT:-9090}:9090"
volumes:
- ./configs/prometheus:/etc/prometheus
- prometheus-data:/prometheus
- prometheus-data-freealberta:/prometheus
restart: always
networks:
- changemaker-lite
- changemaker-lite-freealberta
profiles:
- monitoring
# Grafana - Metrics visualization for all services
grafana:
image: grafana/grafana:latest
container_name: grafana-changemaker
container_name: grafana-changemaker-freealberta
ports:
- "${GRAFANA_PORT:-3001}:3000"
environment:
@ -301,20 +301,20 @@ services:
- GF_USERS_ALLOW_SIGN_UP=false
- GF_SERVER_ROOT_URL=${GRAFANA_ROOT_URL:-http://localhost:3001}
volumes:
- grafana-data:/var/lib/grafana
- grafana-data-freealberta:/var/lib/grafana
- ./configs/grafana:/etc/grafana/provisioning
restart: always
depends_on:
- prometheus
networks:
- changemaker-lite
- changemaker-lite-freealberta
profiles:
- monitoring
# cAdvisor - Container metrics exporter for Docker
cadvisor:
image: gcr.io/cadvisor/cadvisor:latest
container_name: cadvisor-changemaker
container_name: cadvisor-changemaker-freealberta
ports:
- "${CADVISOR_PORT:-8080}:8080"
volumes:
@ -328,14 +328,14 @@ services:
- /dev/kmsg
restart: always
networks:
- changemaker-lite
- changemaker-lite-freealberta
profiles:
- monitoring
# Node Exporter - System metrics exporter
node-exporter:
image: prom/node-exporter:latest
container_name: node-exporter-changemaker
container_name: node-exporter-changemaker-freealberta
ports:
- "${NODE_EXPORTER_PORT:-9100}:9100"
command:
@ -349,14 +349,14 @@ services:
- /:/rootfs:ro
restart: always
networks:
- changemaker-lite
- changemaker-lite-freealberta
profiles:
- monitoring
# Redis Exporter - Redis metrics exporter
redis-exporter:
image: oliver006/redis_exporter:latest
container_name: redis-exporter-changemaker
container_name: redis-exporter-changemaker-freealberta
ports:
- "${REDIS_EXPORTER_PORT:-9121}:9121"
environment:
@ -365,14 +365,14 @@ services:
depends_on:
- redis
networks:
- changemaker-lite
- changemaker-lite-freealberta
profiles:
- monitoring
# Alertmanager - Alert routing and notification
alertmanager:
image: prom/alertmanager:latest
container_name: alertmanager-changemaker
container_name: alertmanager-changemaker-freealberta
ports:
- "${ALERTMANAGER_PORT:-9093}:9093"
volumes:
@ -383,14 +383,14 @@ services:
- '--storage.path=/alertmanager'
restart: always
networks:
- changemaker-lite
- changemaker-lite-freealberta
profiles:
- monitoring
# Gotify - Self-hosted push notification service
gotify:
image: gotify/server:latest
container_name: gotify-changemaker
container_name: gotify-changemaker-freealberta
ports:
- "${GOTIFY_PORT:-8889}:80"
environment:
@ -401,7 +401,7 @@ services:
- gotify-data:/app/data
restart: always
networks:
- changemaker-lite
- changemaker-lite-freealberta
profiles:
- monitoring
@ -411,13 +411,13 @@ services:
# SMTP: mailhog-changemaker:1025
mailhog:
image: mailhog/mailhog:latest
container_name: mailhog-changemaker
container_name: mailhog-changemaker-freealberta
ports:
- "1025:1025" # SMTP server
- "8025:8025" # Web UI
- "${MAILHOG_SMTP_PORT:-1025}:1025" # SMTP server
- "${MAILHOG_WEB_PORT:-8025}:8025" # Web UI
restart: unless-stopped
networks:
- changemaker-lite
- changemaker-lite-freealberta
logging:
driver: "json-file"
options:
@ -425,18 +425,18 @@ services:
max-file: "2"
networks:
changemaker-lite:
changemaker-lite-freealberta:
driver: bridge
volumes:
listmonk-data:
listmonk-data-freealberta:
n8n_data_test4:
nc_data_test4:
db_data_test4:
gitea_data_test4:
mysql_data_test4:
redis-data:
prometheus-data:
grafana-data:
redis-data-freealberta:
prometheus-data-freealberta:
grafana-data-freealberta:
alertmanager-data:
gotify-data:

View File

@ -0,0 +1,442 @@
x-db-credentials: &db-credentials
POSTGRES_USER: &db-user ${POSTGRES_USER}
POSTGRES_PASSWORD: &db-password ${POSTGRES_PASSWORD}
POSTGRES_DB: &db-name ${POSTGRES_DB}
services:
code-server:
build:
context: .
dockerfile: Dockerfile.code-server
container_name: code-server-changemaker
environment:
- DOCKER_USER=${USER_NAME:-coder}
- DEFAULT_WORKSPACE=/home/coder/mkdocs/
user: "${USER_ID:-1000}:${GROUP_ID:-1000}"
volumes:
- ./configs/code-server/.config:/home/coder/.config
- ./configs/code-server/.local:/home/coder/.local
- ./mkdocs:/home/coder/mkdocs/
ports:
- "${CODE_SERVER_PORT:-8888}:8080"
restart: unless-stopped
networks:
- changemaker-lite
listmonk-app:
image: listmonk/listmonk:latest
container_name: listmonk_app_test4
restart: unless-stopped
ports:
- "${LISTMONK_PORT:-9001}:9000"
networks:
- changemaker-lite
hostname: ${LISTMONK_HOSTNAME}
depends_on:
- listmonk-db
command: [sh, -c, "./listmonk --install --idempotent --yes --config '' && ./listmonk --upgrade --yes --config '' && ./listmonk --config ''"]
environment:
LISTMONK_app__address: 0.0.0.0:9000
LISTMONK_db__user: *db-user
LISTMONK_db__password: *db-password
LISTMONK_db__database: *db-name
LISTMONK_db__host: listmonk-db
LISTMONK_db__port: ${LISTMONK_DB_PORT:-5432}
LISTMONK_db__ssl_mode: disable
LISTMONK_db__max_open: ${LISTMONK_DB_MAX_OPEN:-25}
LISTMONK_db__max_idle: ${LISTMONK_DB_MAX_IDLE:-25}
LISTMONK_db__max_lifetime: ${LISTMONK_DB_MAX_LIFETIME:-300s}
TZ: Etc/UTC
LISTMONK_ADMIN_USER: ${LISTMONK_ADMIN_USER:-}
LISTMONK_ADMIN_PASSWORD: ${LISTMONK_ADMIN_PASSWORD:-}
volumes:
- ./assets/uploads:/listmonk/uploads:rw
listmonk-db:
image: postgres:17-alpine
container_name: listmonk_db_test4
restart: unless-stopped
ports:
- "127.0.0.1:${LISTMONK_DB_PORT:-5432}:5432"
networks:
- changemaker-lite
environment:
<<: *db-credentials
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
interval: 10s
timeout: 5s
retries: 6
volumes:
- type: volume
source: listmonk-data
target: /var/lib/postgresql/data
mkdocs:
image: squidfunk/mkdocs-material
container_name: mkdocs-changemaker
volumes:
- ./mkdocs:/docs:rw
- ./assets/images:/docs/assets/images:rw
user: "${USER_ID:-1000}:${GROUP_ID:-1000}"
ports:
- "${MKDOCS_PORT:-4000}:8000"
environment:
- SITE_URL=${BASE_DOMAIN:-https://changeme.org}
command: serve --dev-addr=0.0.0.0:8000 --watch-theme --livereload
networks:
- changemaker-lite
restart: unless-stopped
mkdocs-site-server:
image: lscr.io/linuxserver/nginx:latest
container_name: mkdocs-site-server-changemaker
environment:
- PUID=${USER_ID:-1000}
- PGID=${GROUP_ID:-1000}
- TZ=Etc/UTC
volumes:
- ./mkdocs/site:/config/www
- ./configs/mkdocs-site/default.conf:/config/nginx/site-confs/default.conf # Add this line
ports:
- "${MKDOCS_SITE_SERVER_PORT:-4001}:80"
restart: unless-stopped
networks:
- changemaker-lite
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: n8n-changemaker
restart: unless-stopped
ports:
- "${N8N_PORT:-5678}:5678"
environment:
- N8N_HOST=${N8N_HOST:-n8n.${DOMAIN}}
- N8N_PORT=5678
- N8N_PROTOCOL=https
- NODE_ENV=production
- WEBHOOK_URL=https://${N8N_HOST:-n8n.${DOMAIN}}/
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE:-UTC}
- N8N_ENCRYPTION_KEY=${N8N_ENCRYPTION_KEY:-changeMe}
- N8N_USER_MANAGEMENT_DISABLED=false
- N8N_DEFAULT_USER_EMAIL=${N8N_USER_EMAIL:-admin@example.com}
- N8N_DEFAULT_USER_PASSWORD=${N8N_USER_PASSWORD:-changeMe}
volumes:
- n8n_data_test4:/home/node/.n8n
- ./local-files:/files
networks:
- changemaker-lite
nocodb:
depends_on:
root_db:
condition: service_healthy
environment:
NC_DB: "pg://root_db:5432?u=postgres&p=password&d=root_db"
image: "nocodb/nocodb:latest"
ports:
- "${NOCODB_PORT:-8090}:8080"
restart: always
volumes:
- "nc_data_test4:/usr/app/data"
networks:
- changemaker-lite
root_db:
environment:
POSTGRES_DB: root_db
POSTGRES_PASSWORD: password
POSTGRES_USER: postgres
healthcheck:
interval: 10s
retries: 10
test: "pg_isready -U \"$$POSTGRES_USER\" -d \"$$POSTGRES_DB\""
timeout: 2s
image: postgres:16.6
restart: always
volumes:
- "db_data_test4:/var/lib/postgresql/data"
networks:
- changemaker-lite
# Homepage App
homepage-changemaker:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage-changemaker
ports:
- "${HOMEPAGE_PORT:-3010}:3000"
volumes:
- ./configs/homepage:/app/config
- ./assets/icons:/app/public/icons
- ./assets/images:/app/public/images
- /var/run/docker.sock:/var/run/docker.sock
environment:
- PUID=${USER_ID:-1000}
- PGID=${DOCKER_GROUP_ID:-984}
- TZ=Etc/UTC
- HOMEPAGE_ALLOWED_HOSTS=*
- HOMEPAGE_VAR_BASE_URL=${HOMEPAGE_VAR_BASE_URL:-http://localhost}
restart: unless-stopped
networks:
- changemaker-lite
# Gitea - Git service
gitea-app:
image: gitea/gitea:1.23.7
container_name: gitea_changemaker_test4
environment:
- USER_UID=${USER_ID:-1000}
- USER_GID=${GROUP_ID:-1000}
- GITEA__database__DB_TYPE=${GITEA_DB_TYPE:-mysql}
- GITEA__database__HOST=${GITEA_DB_HOST:-gitea-db:3306}
- GITEA__database__NAME=${GITEA_DB_NAME:-gitea}
- GITEA__database__USER=${GITEA_DB_USER:-gitea}
- GITEA__database__PASSWD=${GITEA_DB_PASSWD}
- GITEA__server__ROOT_URL=${GITEA_ROOT_URL}
- GITEA__server__HTTP_PORT=3000
- GITEA__server__PROTOCOL=http
- GITEA__server__DOMAIN=${GITEA_DOMAIN}
- GITEA__server__ENABLE_GZIP=true
- GITEA__server__PROXY_PROTOCOL=true
- GITEA__server__PROXY_PROXY_PROTOCOL_TLS=true
- GITEA__server__PROXY_ALLOW_SUBNET=0.0.0.0/0
restart: unless-stopped
networks:
- changemaker-lite
volumes:
- gitea_data_test4:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "${GITEA_WEB_PORT:-3030}:3000"
- "${GITEA_SSH_PORT:-2222}:22"
depends_on:
- gitea-db
gitea-db:
image: mysql:8
container_name: gitea_mysql_changemaker_test4_test4
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=${GITEA_DB_ROOT_PASSWORD}
- MYSQL_USER=${GITEA_DB_USER:-gitea}
- MYSQL_PASSWORD=${GITEA_DB_PASSWD}
- MYSQL_DATABASE=${GITEA_DB_NAME:-gitea}
networks:
- changemaker-lite
volumes:
- mysql_data_test4:/var/lib/mysql
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-u", "${GITEA_DB_USER:-gitea}", "-p${GITEA_DB_PASSWD}"]
interval: 10s
timeout: 5s
retries: 5
mini-qr:
image: ghcr.io/lyqht/mini-qr:latest
container_name: mini-qr
ports:
- "${MINI_QR_PORT:-8089}:8080"
restart: unless-stopped
networks:
- changemaker-lite
# Shared Redis - Used by all services for caching, queues, sessions
redis:
image: redis:7-alpine
container_name: redis-changemaker
command: redis-server --appendonly yes --maxmemory 512mb --maxmemory-policy allkeys-lru
ports:
- "6379:6379"
volumes:
- redis-data:/data
restart: always
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
deploy:
resources:
limits:
cpus: '1'
memory: 512M
reservations:
cpus: '0.25'
memory: 256M
networks:
- changemaker-lite
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
# Prometheus - Metrics collection for all services
prometheus:
image: prom/prometheus:latest
container_name: prometheus-changemaker
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--storage.tsdb.retention.time=30d'
ports:
- "${PROMETHEUS_PORT:-9090}:9090"
volumes:
- ./configs/prometheus:/etc/prometheus
- prometheus-data:/prometheus
restart: always
networks:
- changemaker-lite
profiles:
- monitoring
# Grafana - Metrics visualization for all services
grafana:
image: grafana/grafana:latest
container_name: grafana-changemaker
ports:
- "${GRAFANA_PORT:-3001}:3000"
environment:
- GF_SECURITY_ADMIN_PASSWORD=${GRAFANA_ADMIN_PASSWORD:-admin}
- GF_USERS_ALLOW_SIGN_UP=false
- GF_SERVER_ROOT_URL=${GRAFANA_ROOT_URL:-http://localhost:3001}
volumes:
- grafana-data:/var/lib/grafana
- ./configs/grafana:/etc/grafana/provisioning
restart: always
depends_on:
- prometheus
networks:
- changemaker-lite
profiles:
- monitoring
# cAdvisor - Container metrics exporter for Docker
cadvisor:
image: gcr.io/cadvisor/cadvisor:latest
container_name: cadvisor-changemaker
ports:
- "${CADVISOR_PORT:-8080}:8080"
volumes:
- /:/rootfs:ro
- /var/run:/var/run:ro
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
- /dev/disk/:/dev/disk:ro
privileged: true
devices:
- /dev/kmsg
restart: always
networks:
- changemaker-lite
profiles:
- monitoring
# Node Exporter - System metrics exporter
node-exporter:
image: prom/node-exporter:latest
container_name: node-exporter-changemaker
ports:
- "${NODE_EXPORTER_PORT:-9100}:9100"
command:
- '--path.rootfs=/host'
- '--path.procfs=/host/proc'
- '--path.sysfs=/host/sys'
- '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
restart: always
networks:
- changemaker-lite
profiles:
- monitoring
# Redis Exporter - Redis metrics exporter
redis-exporter:
image: oliver006/redis_exporter:latest
container_name: redis-exporter-changemaker
ports:
- "${REDIS_EXPORTER_PORT:-9121}:9121"
environment:
- REDIS_ADDR=redis:6379
restart: always
depends_on:
- redis
networks:
- changemaker-lite
profiles:
- monitoring
# Alertmanager - Alert routing and notification
alertmanager:
image: prom/alertmanager:latest
container_name: alertmanager-changemaker
ports:
- "${ALERTMANAGER_PORT:-9093}:9093"
volumes:
- ./configs/alertmanager:/etc/alertmanager
- alertmanager-data:/alertmanager
command:
- '--config.file=/etc/alertmanager/alertmanager.yml'
- '--storage.path=/alertmanager'
restart: always
networks:
- changemaker-lite
profiles:
- monitoring
# Gotify - Self-hosted push notification service
gotify:
image: gotify/server:latest
container_name: gotify-changemaker
ports:
- "${GOTIFY_PORT:-8889}:80"
environment:
- GOTIFY_DEFAULTUSER_NAME=${GOTIFY_ADMIN_USER:-admin}
- GOTIFY_DEFAULTUSER_PASS=${GOTIFY_ADMIN_PASSWORD:-admin}
- TZ=Etc/UTC
volumes:
- gotify-data:/app/data
restart: always
networks:
- changemaker-lite
profiles:
- monitoring
# MailHog - Shared email testing service for all applications
# Captures all emails sent by any service for development/testing
# Web UI: http://localhost:8025
# SMTP: mailhog-changemaker:1025
mailhog:
image: mailhog/mailhog:latest
container_name: mailhog-changemaker
ports:
- "1025:1025" # SMTP server
- "8025:8025" # Web UI
restart: unless-stopped
networks:
- changemaker-lite
logging:
driver: "json-file"
options:
max-size: "5m"
max-file: "2"
networks:
changemaker-lite:
driver: bridge
volumes:
listmonk-data:
n8n_data_test4:
nc_data_test4:
db_data_test4:
gitea_data_test4:
mysql_data_test4:
redis-data:
prometheus-data:
grafana-data:
alertmanager-data:
gotify-data:

0
mkdocs/.cache/.gitkeep Normal file → Executable file
View File

23
mkdocs/docs/adopt.md Normal file
View File

@ -0,0 +1,23 @@
# Adopt This Project
We're looking for passionate individuals who want to take this project forward and make it their own. If you're interested in administrating this initiative to create positive change in Alberta, we'd love to hear from you.
## Bounties
Want to contribute however adopting a new role or website seems like a lot? No worries! You should check out our [bounties](bounties.md) for individual tasks that we need help with. It is mostly keyboard work, info gather and the like, and could really use your brain their.
## What is This Site
This site is a flash project put together by [bnkops](bnkops.com) as a demonstration of the [changemaker](changemaker.bnkops.com) system. It was built by the admin over a bed ridden weekend as something to do however that isn't really a sustainable model to build a website or brand.
## What Does "Adopt This Project" Mean?
Thats kinda up to you! We are occasionally checking and updating this page however have no longer term strategy for freealberta.org. We could:
- Share the whole system, source code and all, for you to build on your own machine
- Bnkops could continue to host the system, and you get access via the changemaker login
- You could compensate us (zero-profit) for the hardware and get the freealberta.org server delivered straight to you
## Contact
Email us at [contact@freealberta.org](mailto:contact@freealberta.org) to discuss taking over this project.

View File

@ -1,525 +0,0 @@
# Setting Up Ansible with Tailscale for Remote Server Management
## Overview
This guide walks you through setting up Ansible to manage remote servers (like ThinkCentre units) using Tailscale for secure networking. This approach provides reliable remote access without complex port forwarding or VPN configurations.
In plainer language; this allows you to manage several Changemaker nodes remotely. If you are a full time campaigner, this can enable you to manage several campaigns infrastructure from a central location while each user gets their own Changemaker box.
## What You'll Learn
- How to set up Ansible for infrastructure automation
- How to configure secure remote access using Tailscale
- How to troubleshoot common SSH and networking issues
- Why this approach is better than alternatives like Cloudflare Tunnels for simple SSH access
## Prerequisites
- **Master Node**: Your main computer running Ubuntu/Linux (control machine)
- **Target Nodes**: Remote servers/ThinkCentres running Ubuntu/Linux
- **Both machines**: Must have internet access
- **User Account**: Same username on all machines (recommended)
## Part 1: Initial Setup on Master Node
### 1. Create Ansible Directory Structure
```bash
# Create project directory
mkdir ~/ansible_quickstart
cd ~/ansible_quickstart
# Create directory structure
mkdir -p group_vars host_vars roles playbooks
```
### 2. Install Ansible
```bash
sudo apt update
sudo apt install ansible
```
### 3. Generate SSH Keys (if not already done)
```bash
# Generate SSH key pair
ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa
# Display public key (save this for later)
cat ~/.ssh/id_rsa.pub
```
## Part 2: Target Node Setup (Physical Access Required Initially)
### 1. Enable SSH on Target Node
Access each target node physically (monitor + keyboard):
```bash
# Update system
sudo apt update && sudo apt upgrade -y
# Install and enable SSH
sudo apt install openssh-server
sudo systemctl enable ssh
sudo systemctl start ssh
# Check SSH status
sudo systemctl status ssh
```
**Note**: If you get "Unit ssh.service could not be found", you need to install the SSH server first:
```bash
# Install OpenSSH server
sudo apt install openssh-server
# Then start and enable SSH
sudo systemctl start ssh
sudo systemctl enable ssh
# Verify SSH is running and listening
sudo ss -tlnp | grep :22
```
You should see SSH listening on port 22.
### 2. Configure SSH Key Authentication
```bash
# Create .ssh directory
mkdir -p ~/.ssh
chmod 700 ~/.ssh
# Create authorized_keys file
nano ~/.ssh/authorized_keys
```
Paste your public key from the master node, then:
```bash
# Set proper permissions
chmod 600 ~/.ssh/authorized_keys
```
### 3. Configure SSH Security
```bash
# Edit SSH config
sudo nano /etc/ssh/sshd_config
```
Ensure these lines are uncommented:
```
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
```
```bash
# Restart SSH service
sudo systemctl restart ssh
```
### 4. Configure Firewall
```bash
# Check firewall status
sudo ufw status
# Allow SSH through firewall
sudo ufw allow ssh
# Fix home directory permissions (required for SSH keys)
chmod 755 ~/
```
## Part 3: Test Local SSH Connection
Before proceeding with remote access, test SSH connectivity locally:
```bash
# From master node, test SSH to target
ssh username@<target-local-ip>
```
**Common Issues and Solutions:**
- **Connection hangs**: Check firewall rules (`sudo ufw allow ssh`)
- **Permission denied**: Verify SSH keys and file permissions
- **SSH config errors**: Ensure `PubkeyAuthentication yes` is set
## Part 4: Set Up Tailscale for Remote Access
### Why Tailscale Over Alternatives
We initially tried Cloudflare Tunnels but encountered complexity with:
- DNS routing issues
- Complex configuration for SSH
- Same-network testing problems
- Multiple configuration approaches with varying success
**Tailscale is superior because:**
- Zero configuration mesh networking
- Works from any network
- Persistent IP addresses
- No port forwarding needed
- Free for personal use
### 1. Install Tailscale on Master Node
```bash
# Install Tailscale
curl -fsSL https://tailscale.com/install.sh | sh
# Connect to Tailscale network
sudo tailscale up
```
Follow the authentication URL to connect with your Google/Microsoft/GitHub account.
### 2. Install Tailscale on Target Nodes
**On each target node:**
```bash
# Install Tailscale
curl -fsSL https://tailscale.com/install.sh | sh
# Connect to Tailscale network
sudo tailscale up
```
Authenticate each device through the provided URL.
### 3. Get Tailscale IP Addresses
**On each machine:**
```bash
# Get your Tailscale IP
tailscale ip -4
```
Each device receives a persistent IP like `100.x.x.x`.
## Part 5: Configure Ansible
### 1. Create Inventory File
```bash
# Create inventory.ini
cd ~/ansible_quickstart
nano inventory.ini
```
**Content:**
```ini
[thinkcenter]
tc-node1 ansible_host=100.x.x.x ansible_user=your-username
tc-node2 ansible_host=100.x.x.x ansible_user=your-username
[all:vars]
ansible_ssh_private_key_file=~/.ssh/id_rsa
ansible_host_key_checking=False
```
Replace:
- `100.x.x.x` with actual Tailscale IPs
- `your-username` with your actual username
### 2. Test Ansible Connectivity
```bash
# Test connection to all nodes
ansible all -i inventory.ini -m ping
```
**Expected output:**
```
tc-node1 | SUCCESS => {
"changed": false,
"ping": "pong"
}
```
## Part 6: Create and Run Playbooks
### 1. Simple Information Gathering Playbook
```bash
mkdir -p playbooks
nano playbooks/info-playbook.yml
```
**Content:**
```yaml
---
- name: Gather Node Information
hosts: all
tasks:
- name: Get system information
setup:
- name: Display basic system info
debug:
msg: |
Hostname: {{ ansible_hostname }}
Operating System: {{ ansible_distribution }} {{ ansible_distribution_version }}
Architecture: {{ ansible_architecture }}
Memory: {{ ansible_memtotal_mb }}MB
CPU Cores: {{ ansible_processor_vcpus }}
- name: Show disk usage
command: df -h /
register: disk_info
- name: Display disk usage
debug:
msg: "Root filesystem usage: {{ disk_info.stdout_lines[1] }}"
- name: Check uptime
command: uptime
register: uptime_info
- name: Display uptime
debug:
msg: "System uptime: {{ uptime_info.stdout }}"
```
### 2. Run the Playbook
```bash
ansible-playbook -i inventory.ini playbooks/info-playbook.yml
```
## Part 7: Advanced Playbook Example
### System Setup Playbook
```bash
nano playbooks/setup-node.yml
```
**Content:**
```yaml
---
- name: Setup ThinkCentre Node
hosts: all
become: yes
tasks:
- name: Update package cache
apt:
update_cache: yes
- name: Install essential packages
package:
name:
- htop
- vim
- curl
- git
- docker.io
state: present
- name: Add user to docker group
user:
name: "{{ ansible_user }}"
groups: docker
append: yes
- name: Create management directory
file:
path: /opt/management
state: directory
owner: "{{ ansible_user }}"
group: "{{ ansible_user }}"
```
## Troubleshooting Guide
### SSH Issues
**Problem: SSH connection hangs**
- Check firewall: `sudo ufw status` and `sudo ufw allow ssh`
- Verify SSH service: `sudo systemctl status ssh`
- Test local connectivity first
**Problem: Permission denied (publickey)**
- Check SSH key permissions: `chmod 600 ~/.ssh/authorized_keys`
- Verify home directory permissions: `chmod 755 ~/`
- Ensure SSH config allows key auth: `PubkeyAuthentication yes`
**Problem: Bad owner or permissions on SSH config**
```bash
chmod 600 ~/.ssh/config
```
### Ansible Issues
**Problem: Host key verification failed**
- Add to inventory: `ansible_host_key_checking=False`
**Problem: Ansible command not found**
```bash
sudo apt install ansible
```
**Problem: Connection timeouts**
- Verify Tailscale connectivity: `ping <tailscale-ip>`
- Check if both nodes are connected: `tailscale status`
### Tailscale Issues
**Problem: Can't connect to Tailscale IP**
- Verify both devices are authenticated: `tailscale status`
- Check Tailscale is running: `sudo systemctl status tailscaled`
- Restart Tailscale: `sudo tailscale up`
## Scaling to Multiple Nodes
### Adding New Nodes
1. **Install Tailscale on new node**
2. **Set up SSH access** (repeat Part 2)
3. **Add to inventory.ini:**
```ini
[thinkcenter]
tc-node1 ansible_host=100.125.148.60 ansible_user=bunker-admin
tc-node2 ansible_host=100.x.x.x ansible_user=bunker-admin
tc-node3 ansible_host=100.x.x.x ansible_user=bunker-admin
```
### Group Management
```ini
[webservers]
tc-node1 ansible_host=100.x.x.x ansible_user=bunker-admin
tc-node2 ansible_host=100.x.x.x ansible_user=bunker-admin
[databases]
tc-node3 ansible_host=100.x.x.x ansible_user=bunker-admin
[all:vars]
ansible_ssh_private_key_file=~/.ssh/id_rsa
ansible_host_key_checking=False
```
Run playbooks on specific groups:
```bash
ansible-playbook -i inventory.ini -l webservers playbook.yml
```
## Best Practices
### Security
- Use SSH keys, not passwords
- Keep Tailscale client updated
- Regular security updates via Ansible
- Use `become: yes` only when necessary
### Organization
```
ansible_quickstart/
├── inventory.ini
├── group_vars/
├── host_vars/
├── roles/
└── playbooks/
├── info-playbook.yml
├── setup-node.yml
└── maintenance.yml
```
### Monitoring and Maintenance
Create regular maintenance playbooks:
```yaml
- name: System maintenance
hosts: all
become: yes
tasks:
- name: Update all packages
apt:
upgrade: dist
update_cache: yes
- name: Clean package cache
apt:
autoclean: yes
autoremove: yes
```
## Alternative Approaches We Considered
### Cloudflare Tunnels
- **Pros**: Good for web services, handles NAT traversal
- **Cons**: Complex SSH setup, DNS routing issues, same-network problems
- **Use case**: Better for web applications than SSH access
### Traditional VPN
- **Pros**: Full network access
- **Cons**: Complex setup, port forwarding required, router configuration
- **Use case**: When you control the network infrastructure
### SSH Reverse Tunnels
- **Pros**: Simple concept
- **Cons**: Requires VPS, single point of failure, manual setup
- **Use case**: Temporary access or when other methods fail
## Conclusion
This setup provides:
- **Reliable remote access** from anywhere
- **Secure mesh networking** with Tailscale
- **Infrastructure automation** with Ansible
- **Easy scaling** to multiple nodes
- **No complex networking** required
The combination of Ansible + Tailscale is ideal for managing distributed infrastructure without the complexity of traditional VPN setups or the limitations of cloud-specific solutions.
## Quick Reference Commands
```bash
# Check Tailscale status
tailscale status
# Test Ansible connectivity
ansible all -i inventory.ini -m ping
# Run playbook on all hosts
ansible-playbook -i inventory.ini playbook.yml
# Run playbook on specific group
ansible-playbook -i inventory.ini -l groupname playbook.yml
# Run single command on all hosts
ansible all -i inventory.ini -m command -a "uptime"
# SSH to node via Tailscale
ssh username@100.x.x.x
```

View File

@ -1,3 +0,0 @@
# Advanced Configurations
We are also publishing how BNKops does several advanced workflows. These include things like assembling hardware, how to manage a network, how to manage several changemakers simultaneously, and integrating AI.

View File

@ -1,685 +0,0 @@
# Remote Development with VSCode over Tailscale
## Overview
This guide describes how to set up Visual Studio Code for remote development on servers using the Tailscale network. This enables development directly on remote machines as if they were local, with full access to files, terminals, and debugging capabilities.
## What You'll Learn
- How to configure VSCode for remote SSH connections
- How to set up remote development environments
- How to manage multiple remote servers efficiently
- How to troubleshoot common remote development issues
- Best practices for remote development workflows
## Prerequisites
- **Ansible + Tailscale setup completed** (see previous guide)
- **VSCode installed** on the local machine (master node)
- **Working SSH access** to remote servers via Tailscale
- **Tailscale running** on both local and remote machines
## Verify Prerequisites
Before starting, verify the setup:
```bash
# Check Tailscale connectivity
tailscale status
# Test SSH access
ssh <username>@<tailscale-ip>
# Check VSCode is installed
code --version
```
## Part 1: Install and Configure Remote-SSH Extension
### 1. Install the Remote Development Extensions
**Option A: Install Remote Development Pack (Recommended)**
1. Open VSCode
2. Press **Ctrl+Shift+X** (or **Cmd+Shift+X** on Mac)
3. Search for **"Remote Development"**
4. Install the **Remote Development extension pack** by Microsoft
This pack includes:
- Remote - SSH
- Remote - SSH: Editing Configuration Files
- Remote - Containers
- Remote - WSL (Windows only)
**Option B: Install Individual Extension**
1. Search for **"Remote - SSH"**
2. Install **Remote - SSH** by Microsoft
### 2. Verify Installation
After installation, the following should be visible:
- Remote Explorer icon in the Activity Bar (left sidebar)
- "Remote-SSH" commands in Command Palette (Ctrl+Shift+P)
## Part 2: Configure SSH Connections
### 1. Access SSH Configuration
**Method A: Through VSCode**
1. Press **Ctrl+Shift+P** to open Command Palette
2. Type **"Remote-SSH: Open SSH Configuration File..."**
3. Select the SSH config file (usually the first option)
**Method B: Direct File Editing**
```bash
# Edit SSH config file directly
nano ~/.ssh/config
```
### 2. Add Server Configurations
Add servers to the SSH config file:
```
# Example Node
Host node1
HostName <tailscale-ip>
User <username>
IdentityFile ~/.ssh/id_rsa
ForwardAgent yes
ServerAliveInterval 60
ServerAliveCountMax 3
# Additional nodes (add as needed)
Host node2
HostName <tailscale-ip>
User <username>
IdentityFile ~/.ssh/id_rsa
ForwardAgent yes
ServerAliveInterval 60
ServerAliveCountMax 3
```
**Configuration Options Explained:**
- `Host`: Friendly name for the connection
- `HostName`: Tailscale IP address
- `User`: Username on the remote server
- `IdentityFile`: Path to the SSH private key
- `ForwardAgent`: Enables SSH agent forwarding for Git operations
- `ServerAliveInterval`: Keeps connection alive (prevents timeouts)
- `ServerAliveCountMax`: Number of keepalive attempts
### 3. Set Proper SSH Key Permissions
```bash
# Ensure SSH config has correct permissions
chmod 600 ~/.ssh/config
# Verify SSH key permissions
chmod 600 ~/.ssh/id_rsa
chmod 644 ~/.ssh/id_rsa.pub
```
## Part 3: Connect to Remote Servers
### 1. Connect via Command Palette
1. Press **Ctrl+Shift+P**
2. Type **"Remote-SSH: Connect to Host..."**
3. Select the server (e.g., `node1`)
4. VSCode will open a new window connected to the remote server
### 2. Connect via Remote Explorer
1. Click the **Remote Explorer** icon in Activity Bar
2. Expand **SSH Targets**
3. Click the **connect** icon next to the server name
### 3. Connect via Quick Menu
1. Click the **remote indicator** in bottom-left corner (looks like ><)
2. Select **"Connect to Host..."**
3. Choose the server from the list
### 4. First Connection Process
On first connection, VSCode will:
1. **Verify the host key** (click "Continue" if prompted)
2. **Install VSCode Server** on the remote machine (automatic)
3. **Open a remote window** with access to the remote file system
**Expected Timeline:**
- First connection: 1-3 minutes (installs VSCode Server)
- Subsequent connections: 10-30 seconds
## Part 4: Remote Development Environment Setup
### 1. Open Remote Workspace
Once connected:
```bash
# In the VSCode terminal (now running on remote server)
# Navigate to the project directory
cd /home/<username>/projects
# Open current directory in VSCode
code .
# Or open a specific project
code /opt/myproject
```
### 2. Install Extensions on Remote Server
Extensions must be installed separately on the remote server:
**Essential Development Extensions:**
1. **Python** (Microsoft) - Python development
2. **GitLens** (GitKraken) - Enhanced Git capabilities
3. **Docker** (Microsoft) - Container development
4. **Prettier** - Code formatting
5. **ESLint** - JavaScript linting
6. **Auto Rename Tag** - HTML/XML tag editing
**To Install:**
1. Go to Extensions (Ctrl+Shift+X)
2. Find the desired extension
3. Click **"Install in SSH: node1"** (not local install)
### 3. Configure Git on Remote Server
```bash
# In VSCode terminal (remote)
git config --global user.name "<Full Name>"
git config --global user.email "<email@example.com>"
# Test Git connectivity
git clone https://github.com/<username>/<repo>.git
```
## Part 5: Remote Development Workflows
### 1. File Management
**File Explorer:**
- Shows remote server's file system
- Create, edit, delete files directly
- Drag and drop between local and remote (limited)
**File Transfer:**
```bash
# Upload files to remote (from local terminal)
scp localfile.txt <username>@<tailscale-ip>:/home/<username>/
# Download files from remote
scp <username>@<tailscale-ip>:/remote/path/file.txt ./local/path/
```
### 2. Terminal Usage
**Integrated Terminal:**
- Press **Ctrl+`** to open terminal
- Runs directly on remote server
- Multiple terminals supported
- Full shell access (bash, zsh, etc.)
**Common Remote Terminal Commands:**
```bash
# Check system resources
htop
df -h
free -h
# Install packages
sudo apt update
sudo apt install nodejs npm
# Start services
sudo systemctl start nginx
sudo docker-compose up -d
```
### 3. Port Forwarding
**Automatic Port Forwarding:**
VSCode automatically detects and forwards common development ports.
**Manual Port Forwarding:**
1. Open **Ports** tab in terminal panel
2. Click **"Forward a Port"**
3. Enter port number (e.g., 3000, 8080, 5000)
4. Access via `http://localhost:port` on the local machine
**Example: Web Development**
```bash
# Start a web server on remote (port 3000)
npm start
# VSCode automatically suggests forwarding port 3000
# Access at http://localhost:3000 on the local machine
```
### 4. Debugging Remote Applications
**Python Debugging:**
```json
// .vscode/launch.json on remote server
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
```
**Node.js Debugging:**
```json
// .vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/app.js"
}
]
}
```
## Part 6: Advanced Configuration
### 1. Workspace Settings
Create remote-specific settings:
```json
// .vscode/settings.json (on remote server)
{
"python.defaultInterpreterPath": "/usr/bin/python3",
"terminal.integrated.shell.linux": "/bin/bash",
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"remote.SSH.remotePlatform": {
"node1": "linux"
}
}
```
### 2. Multi-Server Management
**Switch Between Servers:**
1. Click remote indicator (bottom-left)
2. Select **"Connect to Host..."**
3. Choose a different server
**Compare Files Across Servers:**
1. Open file from server A
2. Connect to server B in new window
3. Open corresponding file
4. Use **"Compare with..."** command
### 3. Sync Configuration
**Settings Sync:**
1. Enable Settings Sync in VSCode
2. Settings, extensions, and keybindings sync to remote
3. Consistent experience across all servers
## Part 7: Project-Specific Setups
### 1. Python Development
```bash
# On remote server
# Create virtual environment
python3 -m venv venv
source venv/bin/activate
# Install packages
pip install flask django requests
# VSCode automatically detects Python interpreter
```
**VSCode Python Configuration:**
```json
// .vscode/settings.json
{
"python.defaultInterpreterPath": "./venv/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true
}
```
### 2. Node.js Development
```bash
# On remote server
# Install Node.js
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs
# Create project
mkdir myapp && cd myapp
npm init -y
npm install express
```
### 3. Docker Development
```bash
# On remote server
# Install Docker (if not already done via Ansible)
sudo apt install docker.io docker-compose
sudo usermod -aG docker $USER
# Create Dockerfile
cat > Dockerfile << EOF
FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]
EOF
```
**VSCode Docker Integration:**
- Install Docker extension on remote
- Right-click Dockerfile → "Build Image"
- Manage containers from VSCode interface
## Part 8: Troubleshooting Guide
### Common Connection Issues
**Problem: "Could not establish connection to remote host"**
**Solutions:**
```bash
# Check Tailscale connectivity
tailscale status
ping <tailscale-ip>
# Test SSH manually
ssh <username>@<tailscale-ip>
# Check SSH config syntax
ssh -T node1
```
**Problem: "Permission denied (publickey)"**
**Solutions:**
```bash
# Check SSH key permissions
chmod 600 ~/.ssh/id_rsa
chmod 600 ~/.ssh/config
# Verify SSH agent
ssh-add ~/.ssh/id_rsa
ssh-add -l
# Test SSH connection verbosely
ssh -v <username>@<tailscale-ip>
```
**Problem: "Host key verification failed"**
**Solutions:**
```bash
# Remove old host key
ssh-keygen -R <tailscale-ip>
# Or disable host key checking (less secure)
# Add to SSH config:
# StrictHostKeyChecking no
```
### VSCode-Specific Issues
**Problem: Extensions not working on remote**
**Solutions:**
1. Install extensions specifically for the remote server
2. Check extension compatibility with remote development
3. Reload VSCode window: Ctrl+Shift+P → "Developer: Reload Window"
**Problem: Slow performance**
**Solutions:**
- Use `.vscode/settings.json` to exclude large directories:
```json
{
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.git/objects/**": true,
"**/dist/**": true
}
}
```
**Problem: Terminal not starting**
**Solutions:**
```bash
# Check shell path in remote settings
"terminal.integrated.shell.linux": "/bin/bash"
# Or let VSCode auto-detect
"terminal.integrated.defaultProfile.linux": "bash"
```
### Network and Performance Issues
**Problem: Connection timeouts**
**Solutions:**
Add to SSH config:
```
ServerAliveInterval 60
ServerAliveCountMax 3
TCPKeepAlive yes
```
**Problem: File transfer slow**
**Solutions:**
- Use `.vscodeignore` to exclude unnecessary files
- Compress large files before transfer
- Use `rsync` for large file operations:
```bash
rsync -avz --progress localdir/ <username>@<tailscale-ip>:remotedir/
```
## Part 9: Best Practices
### Security Best Practices
1. **Use SSH keys, never passwords**
2. **Keep SSH agent secure**
3. **Regular security updates on remote servers**
4. **Use VSCode's secure connection verification**
### Performance Optimization
1. **Exclude unnecessary files**:
```json
// .vscode/settings.json
{
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.git/**": true,
"**/dist/**": true,
"**/build/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true
}
}
```
2. **Use remote workspace for large projects**
3. **Close unnecessary windows and extensions**
4. **Use efficient development workflows**
### Development Workflow
1. **Use version control effectively**:
```bash
# Always work in Git repositories
git status
git add .
git commit -m "feature: add new functionality"
git push origin main
```
2. **Environment separation**:
```bash
# Development
ssh node1
cd /home/<username>/dev-projects
# Production
ssh node2
cd /opt/production-apps
```
3. **Backup important work**:
```bash
# Regular backups via Git
git push origin main
# Or manual backup
scp -r <username>@<tailscale-ip>:/important/project ./backup/
```
## Part 10: Team Collaboration
### Shared Development Servers
**SSH Config for Team:**
```
# Shared development server
Host team-dev
HostName <tailscale-ip>
User <team-user>
IdentityFile ~/.ssh/team_dev_key
ForwardAgent yes
# Personal development
Host my-dev
HostName <tailscale-ip>
User <username>
IdentityFile ~/.ssh/id_rsa
```
### Project Structure
```
/opt/projects/
├── project-a/
│ ├── dev/ # Development branch
│ ├── staging/ # Staging environment
│ └── docs/ # Documentation
├── project-b/
└── shared-tools/ # Common utilities
```
### Access Management
```bash
# Create shared project directory
sudo mkdir -p /opt/projects
sudo chown -R :developers /opt/projects
sudo chmod -R g+w /opt/projects
# Add users to developers group
sudo usermod -a -G developers <username>
```
## Quick Reference
### Essential VSCode Remote Commands
```bash
# Command Palette shortcuts
Ctrl+Shift+P → "Remote-SSH: Connect to Host..."
Ctrl+Shift+P → "Remote-SSH: Open SSH Configuration File..."
Ctrl+Shift+P → "Remote-SSH: Kill VS Code Server on Host..."
# Terminal
Ctrl+` → Open integrated terminal
Ctrl+Shift+` → Create new terminal
# File operations
Ctrl+O → Open file
Ctrl+S → Save file
Ctrl+Shift+E → Focus file explorer
```
### SSH Connection Quick Test
```bash
# Test connectivity
ssh -T node1
# Connect with verbose output
ssh -v <username>@<tailscale-ip>
# Check SSH config
ssh -F ~/.ssh/config node1
```
### Port Forwarding Commands
```bash
# Manual port forwarding
ssh -L 3000:localhost:3000 <username>@<tailscale-ip>
# Background tunnel
ssh -f -N -L 8080:localhost:80 <username>@<tailscale-ip>
```
## Conclusion
This remote development setup provides:
- **Full development environment** on remote servers
- **Seamless file access** and editing capabilities
- **Integrated debugging** and terminal access
- **Port forwarding** for web development
- **Extension ecosystem** available remotely
- **Secure connections** through Tailscale network
The combination of VSCode Remote Development with Tailscale networking creates a powerful, flexible development environment that works from anywhere while maintaining security and performance.
Whether developing Python applications, Node.js services, or managing Docker containers, this setup provides a professional remote development experience that rivals local development while leveraging the power and resources of remote servers.

View File

@ -0,0 +1,270 @@
From Wikipedia, the free encyclopedia
# Anarchy
## Society without rulers
This article is about the state of government without authority. For the philosophy against authority, see [Anarchism](https://en.wikipedia.org/wiki/Anarchism "Anarchism").
**Anarchy** is a form of [society](https://en.wikipedia.org/wiki/Society "Society") without [rulers](https://en.wikipedia.org/wiki/Ruling_class "Ruling class"). As a type of [stateless society](https://en.wikipedia.org/wiki/Stateless_society "Stateless society"), it is commonly contrasted with [states](https://en.wikipedia.org/wiki/State_\(polity\) "State (polity)"), which are centralized polities that claim a [monopoly on violence](https://en.wikipedia.org/wiki/Monopoly_on_violence "Monopoly on violence") over a permanent [territory](https://en.wikipedia.org/wiki/Territory "Territory"). Beyond a lack of [government](https://en.wikipedia.org/wiki/Government "Government"), it can more precisely refer to societies that lack any form of [authority](https://en.wikipedia.org/wiki/Authority "Authority") or [hierarchy](https://en.wikipedia.org/wiki/Hierarchy "Hierarchy"). While viewed positively by [anarchists](https://en.wikipedia.org/wiki/Anarchists "Anarchists"), the primary advocates of anarchy, it is viewed negatively by advocates of [statism](https://en.wikipedia.org/wiki/Statism "Statism"), who see it in terms of [social disorder](https://en.wikipedia.org/wiki/Civil_disorder "Civil disorder").
The word "anarchy" was first defined by [Ancient Greek philosophy](https://en.wikipedia.org/wiki/Ancient_Greek_philosophy "Ancient Greek philosophy"), which understood it to be a corrupted form of [direct democracy](https://en.wikipedia.org/wiki/Direct_democracy "Direct democracy"), where a majority of people exclusively pursue their own interests. This use of the word made its way into [Latin](https://en.wikipedia.org/wiki/Latin "Latin") during the [Middle Ages](https://en.wikipedia.org/wiki/Middle_Ages "Middle Ages"), before the concepts of anarchy and democracy were disconnected from each other in the wake of the [Atlantic Revolutions](https://en.wikipedia.org/wiki/Atlantic_Revolutions "Atlantic Revolutions"). During the [Age of Enlightenment](https://en.wikipedia.org/wiki/Age_of_Enlightenment "Age of Enlightenment"), philosophers began to look at anarchy in terms of the "[state of nature](https://en.wikipedia.org/wiki/State_of_nature "State of nature")", a thought experiment used to justify various forms of hierarchical government. By the late 18th century, some philosophers began to speak in defence of anarchy, seeing it as a preferable alternative to existing forms of [tyranny](https://en.wikipedia.org/wiki/Tyranny "Tyranny"). This lay the foundations for the development of anarchism, which advocates for the creation of anarchy through [decentralisation](https://en.wikipedia.org/wiki/Decentralisation "Decentralisation") and [federalism](https://en.wikipedia.org/wiki/Federalism "Federalism").
As a concept, [anarchy](https://en.wiktionary.org/wiki/anarchy "wikt:anarchy") is commonly defined by what it excludes.[^footnotebell2020310-1] Etymologically, anarchy is derived from the [Greek](https://en.wikipedia.org/wiki/Greek_language "Greek language"): αναρχία, [romanized](https://en.wikipedia.org/wiki/Romanization_of_Greek "Romanization of Greek"): *anarchia*; where "αν" ("an") means "without" and "αρχία" ("archia") means "ruler".[^footnotedupuis-d%c3%a9ri201013marshall20083-2] Therefore, anarchy is fundamentally defined by the absence of [rulers](https://en.wikipedia.org/wiki/Ruling_class "Ruling class").[^footnotechartiervan_schoelandt20201dupuis-d%c3%a9ri201013marshall200819%e2%80%9320mckay2018118%e2%80%93119-3]
While anarchy specifically represents a society without rulers, it can more generally refer to a [stateless society](https://en.wikipedia.org/wiki/Stateless_society "Stateless society"),[^footnotechartiervan_schoelandt20201dupuis-d%c3%a9ri201014%e2%80%9315-4] or a society without [government](https://en.wikipedia.org/wiki/Government "Government").[^footnotemarshall20083morris202040sensen202099-5] Anarchy is thus defined in direct contrast to the [State](https://en.wikipedia.org/wiki/State_\(polity\) "State (polity)"),[^footnoteamster201815bell2020310boettkecandela2020226morris202039%e2%80%9342sensen202099-6] an institution that claims a [monopoly on violence](https://en.wikipedia.org/wiki/Monopoly_on_violence "Monopoly on violence") over a given [territory](https://en.wikipedia.org/wiki/Territory "Territory").[^footnotebell2020310boettkecandela2020226morris202043%e2%80%9345-7] Anarchists such as [Errico Malatesta](https://en.wikipedia.org/wiki/Errico_Malatesta "Errico Malatesta") have also defined anarchy more precisely as a society without [authority](https://en.wikipedia.org/wiki/Authority "Authority"),[^footnotemarshall200842mclaughlin200712-8] or [hierarchy](https://en.wikipedia.org/wiki/Hierarchy "Hierarchy").[^footnoteamster201823-9]
Anarchy is often defined synonymously as chaos or [social disorder](https://en.wikipedia.org/wiki/Civil_disorder "Civil disorder"),[^footnotebell2020309boettkecandela2020226chartiervan_schoelandt20201-10] reflecting the [state of nature](https://en.wikipedia.org/wiki/State_of_nature#Thomas_Hobbes "State of nature") as depicted by [Thomas Hobbes](https://en.wikipedia.org/wiki/Thomas_Hobbes "Thomas Hobbes").[^footnoteboettkecandela2020226morris202039%e2%80%9340sensen202099-11] By this definition, anarchy represents not only an absence of government but also an absence of [governance](https://en.wikipedia.org/wiki/Governance "Governance"). This connection of anarchy with chaos usually assumes that, without government, no means of governance exist and thus that disorder is an unavoidable outcome of anarchy.[^footnoteboettkecandela2020226-12] Sociologist [Francis Dupuis-Déri](https://en.wikipedia.org/wiki/Francis_Dupuis-D%C3%A9ri "Francis Dupuis-Déri") has described chaos as a "degenerate form of anarchy", in which there is an absence, not just of rulers, but of any kind of political organization.[^footnotedupuis-d%c3%a9ri201016%e2%80%9317-13] He contrasts the "rule of all" under anarchy with the "rule of none" under chaos.[^footnotedupuis-d%c3%a9ri201017%e2%80%9318-14]
Since its conception, anarchy has been used in both a positive and negative sense, respectively describing a free society without coercion or a state of chaos.[^footnotemarshall20083-15]
## Conceptual development
### Classical philosophy
When the word "anarchy" ([Greek](https://en.wikipedia.org/wiki/Greek_language "Greek language"): αναρχία, [romanized](https://en.wikipedia.org/wiki/Romanization_of_Greek "Romanization of Greek"): *anarchia*) was first defined in ancient Greece, it initially had both a positive and negative connotation, respectively referring to [spontaneous order](https://en.wikipedia.org/wiki/Spontaneous_order "Spontaneous order") or chaos without rulers. The latter definition was taken by the philosopher [Plato](https://en.wikipedia.org/wiki/Plato "Plato"), who criticised [Athenian democracy](https://en.wikipedia.org/wiki/Athenian_democracy "Athenian democracy") as "anarchical", and his disciple [Aristotle](https://en.wikipedia.org/wiki/Aristotle "Aristotle"), who questioned how to prevent democracy from descending into anarchy.[^footnotemarshall200866-16] [Ancient Greek philosophy](https://en.wikipedia.org/wiki/Ancient_Greek_philosophy "Ancient Greek philosophy") initially understood anarchy to be a corrupted form of [direct democracy](https://en.wikipedia.org/wiki/Direct_democracy "Direct democracy"), although it later came to be conceived of as its own form of political regime, distinct from any kind of democracy.[^footnotedupuis-d%c3%a9ri20109-17] According to the traditional conception of political regimes, anarchy results when authority is derived from a majority of people who pursue their own interests.[^footnotedupuis-d%c3%a9ri201011-18]
### Post-classical development
During the [Middle Ages](https://en.wikipedia.org/wiki/Middle_Ages "Middle Ages"), the word "anarchia" came into use in Latin, in order to describe the [eternal existence](https://en.wikipedia.org/wiki/God_and_eternity "God and eternity") of the [Christian God](https://en.wikipedia.org/wiki/God_in_Christianity "God in Christianity"). It later came to reconstitute its original political definition, describing a society without government.[^footnotemarshall20083-15]
Christian theologists came to claim that [all humans were inherently sinful](https://en.wikipedia.org/wiki/Original_sin "Original sin") and ought to submit to the [omnipotence](https://en.wikipedia.org/wiki/Omnipotence "Omnipotence") of higher power, with the French Protestant reformer [John Calvin](https://en.wikipedia.org/wiki/John_Calvin "John Calvin") declaring that even the worst form of [tyranny](https://en.wikipedia.org/wiki/Tyranny "Tyranny") was preferable to anarchy.[^footnotemarshall200874-19] The Scottish Quaker [Robert Barclay](https://en.wikipedia.org/wiki/Robert_Barclay "Robert Barclay") also denounced the "anarchy" of [libertines](https://en.wikipedia.org/wiki/Libertine "Libertine") such as the [Ranters](https://en.wikipedia.org/wiki/Ranters "Ranters").[^footnotemarshall2008106%e2%80%93107-20] In contrast, [radical Protestants](https://en.wikipedia.org/wiki/Radical_Reformation "Radical Reformation") such as the [Diggers](https://en.wikipedia.org/wiki/Diggers "Diggers") advocated for anarchist societies based on [common ownership](https://en.wikipedia.org/wiki/Common_ownership "Common ownership").[^footnotemarshall200898%e2%80%93100-21] Although following attempts to establish such a society, the Digger [Gerard Winstanley](https://en.wikipedia.org/wiki/Gerard_Winstanley "Gerard Winstanley") came to advocate for an [authoritarian form](https://en.wikipedia.org/wiki/Authoritarian_socialism "Authoritarian socialism") of [communism](https://en.wikipedia.org/wiki/Communism "Communism").[^footnotemarshall2008100-22]
During the 16th century, the term "anarchy" first came into use in the [English language](https://en.wikipedia.org/wiki/English_language "English language").[^footnotedavis201959%e2%80%9360marshall2008487-23] It was used to describe the disorder that results from the absence of or opposition to authority, with [John Milton](https://en.wikipedia.org/wiki/John_Milton "John Milton") writing of "the waste/Wide anarchy of Chaos" in *[Paradise Lost](https://en.wikipedia.org/wiki/Paradise_Lost "Paradise Lost")*.[^footnotemarshall2008487-24] Initially used as a pejorative descriptor for [democracy](https://en.wikipedia.org/wiki/Democracy "Democracy"), the two terms began to diverge following the [Atlantic Revolutions](https://en.wikipedia.org/wiki/Atlantic_Revolutions "Atlantic Revolutions"), when democracy took on a positive connotation and was redefined as a form of [elected](https://en.wikipedia.org/wiki/Electoral_system "Electoral system"), [representational government](https://en.wikipedia.org/wiki/Representative_democracy "Representative democracy").[^footnotedavis201959%e2%80%9360-25]
### Enlightenment philosophy
Political philosophers of the [Age of Enlightenment](https://en.wikipedia.org/wiki/Age_of_Enlightenment "Age of Enlightenment") contrasted the [state](https://en.wikipedia.org/wiki/State_\(polity\) "State (polity)") with what they called the "[state of nature](https://en.wikipedia.org/wiki/State_of_nature "State of nature")", a hypothetical description of stateless society, although they disagreed on its definition.[^footnotemorris202039%e2%80%9340-26] [Thomas Hobbes](https://en.wikipedia.org/wiki/Thomas_Hobbes "Thomas Hobbes") considered the state of nature to be a "nightmare of permanent war of all against all".[^footnotemarshall2008xsensen202099%e2%80%93100-27] In contrast, [John Locke](https://en.wikipedia.org/wiki/John_Locke "John Locke") considered it to be a harmonious society in which people lived "according to reason, without a common superior". They would be subject only to [natural law](https://en.wikipedia.org/wiki/Natural_law "Natural law"), with otherwise "perfect freedom to order their actions".[^footnotemarshall2008x-28]
In depicting the "state of nature" to be a free and equal society governed by natural law, Locke distinguished between society and the state.[^footnotemarshall200813%e2%80%9314-29] He argued that, without established laws, such a society would be inherently unstable, which would make a [limited government](https://en.wikipedia.org/wiki/Limited_government "Limited government") necessary in order to protect people's [natural rights](https://en.wikipedia.org/wiki/Natural_rights_and_legal_rights "Natural rights and legal rights").[^footnotemarshall200813%e2%80%9314,_129-30] He likewise argued that limiting the reach of the state was reasonable when peaceful cooperation without a state was possible.[^footnotechartiervan_schoelandt20203-31] His thoughts on the state of nature and limited government ultimately provided the foundation for the [classical liberal](https://en.wikipedia.org/wiki/Classical_liberalism "Classical liberalism") argument for *[laissez-faire](https://en.wikipedia.org/wiki/Laissez-faire "Laissez-faire")*.[^footnotemarshall200814-32]
#### Kant's thought experiment
![](https://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Immanuel_Kant_%28painted_portrait%29.jpg/220px-Immanuel_Kant_%28painted_portrait%29.jpg)
[German idealist](https://en.wikipedia.org/wiki/German_idealism "German idealism") philosopher [Immanuel Kant](https://en.wikipedia.org/wiki/Immanuel_Kant "Immanuel Kant"), who looked at anarchy as a thought experiment to justify government
[Immanuel Kant](https://en.wikipedia.org/wiki/Immanuel_Kant "Immanuel Kant") defined "anarchy", in terms of the "state of nature", as a lack of government. He discussed the concept of anarchy in order to question why humanity ought to leave the state of nature behind and instead submit to a "[legitimate government](https://en.wikipedia.org/wiki/Legitimacy_\(political\) "Legitimacy (political)")".[^footnotesensen202099-33] In contrast to Thomas Hobbes, who conceived of the state of nature as a "war of all against all" which existed throughout the world, Kant considered it to be only a [thought experiment](https://en.wikipedia.org/wiki/Thought_experiment "Thought experiment"). Kant believed that [human nature](https://en.wikipedia.org/wiki/Human_nature "Human nature") drove people to not only seek out [society](https://en.wikipedia.org/wiki/Society "Society") but also to attempt to attain a [superior hierarchical status](https://en.wikipedia.org/wiki/Superior_\(hierarchy\) "Superior (hierarchy)").[^footnotesensen202099%e2%80%93100-34]
While Kant distinguished between different forms of the state of nature, contrasting the "solitary" form against the "social", he held that there was no means of [distributive justice](https://en.wikipedia.org/wiki/Distributive_justice "Distributive justice") in such a circumstance. He considered that, without [law](https://en.wikipedia.org/wiki/Law "Law"), a [judiciary](https://en.wikipedia.org/wiki/Judiciary "Judiciary") and means for [law enforcement](https://en.wikipedia.org/wiki/Law_enforcement "Law enforcement"), the danger of violence would be ever-present, as each person could only judge for themselves what is right without any form of arbitration. He thus concluded that human society ought to leave the state of nature behind and submit to the authority of a state.[^footnotesensen2020100-35] Kant argued that the threat of violence incentivises humans, by the need to preserve their own safety, to leave the state of nature and submit to the state.[^footnotesensen2020100%e2%80%93101-36] Based on his "[hypothetical imperative](https://en.wikipedia.org/wiki/Hypothetical_imperative "Hypothetical imperative")", he argued that if humans desire to secure their own safety, then they ought to avoid anarchy.[^footnotesensen2020101-37] But he also argued, according to his "[categorical imperative](https://en.wikipedia.org/wiki/Categorical_imperative "Categorical imperative")", that it is not only [prudent](https://en.wikipedia.org/wiki/Prudence "Prudence") but also a [moral](https://en.wikipedia.org/wiki/Deontology "Deontology") and [political obligation](https://en.wikipedia.org/wiki/Political_obligation "Political obligation") to avoid anarchy and submit to a state.[^footnotesensen2020101%e2%80%93102-38] Kant thus concluded that even if people did not desire to leave anarchy, they ought to as a matter of duty to abide by universal laws.[^footnotesensen2020107%e2%80%93109-39]
#### Defense of the state of nature
In contrast, [Edmund Burke](https://en.wikipedia.org/wiki/Edmund_Burke "Edmund Burke")'s 1756 work *[A Vindication of Natural Society](https://en.wikipedia.org/wiki/A_Vindication_of_Natural_Society "A Vindication of Natural Society")*, argued in favour of anarchist society in a defense of the state of nature.[^footnotemarshall2008133-40] Burke insisted that reason was all that was needed to govern society and that "artificial laws" had been responsible for all social conflict and inequality, which led him to denounce the church and the state.[^footnotemarshall2008133%e2%80%93134-41] Burke's anti-statist arguments preceded the work of classical anarchists and directly inspired the political philosophy of [William Godwin](https://en.wikipedia.org/wiki/William_Godwin "William Godwin").[^footnotemarshall2008134-42]
![Portrait painting of William Godwin](https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/WilliamGodwin.jpg/220px-WilliamGodwin.jpg)
English political philosopher [William Godwin](https://en.wikipedia.org/wiki/William_Godwin "William Godwin"), an early proponent of anarchy as a political regime
In his 1793 book *[Political Justice](https://en.wikipedia.org/wiki/Enquiry_Concerning_Political_Justice "Enquiry Concerning Political Justice")*, Godwin proposed the creation of a more just and free society by abolishing government, concluding that order could be achieved through anarchy.[^footnotemarshall2008206mclaughlin2007117%e2%80%93118-43] Although he came to be known as a founding father of anarchism,[^footnotemarshall2008488-44] Godwin himself mostly used the word "anarchy" in its negative definition,[^footnotemarshall2008214,_488-45] fearing that an immediate dissolution of government without any prior political development would lead to disorder.[^footnotemarshall2008214-46] Godwin held that the anarchy could be best realised through gradual evolution, by cultivating reason through education, rather than through a sudden and violent revolution.[^footnotemclaughlin2007132-47] But he also considered transitory anarchy to be preferable to lasting [despotism](https://en.wikipedia.org/wiki/Despotism "Despotism"), stating that anarchy bore a distorted resemblance to "true liberty"[^footnotemarshall2008214,_488-45] and could eventually give way to "the best form of human society".[^footnotemarshall2008214-46]
This positive conception of anarchy was soon taken up by other political philosophers. In his 1792 work *[The Limits of State Action](https://en.wikipedia.org/wiki/The_Limits_of_State_Action "The Limits of State Action")*, [Wilhelm von Humboldt](https://en.wikipedia.org/wiki/Wilhelm_von_Humboldt "Wilhelm von Humboldt") came to consider an anarchist society, which he conceived of as a community built on voluntary contracts between educated individuals, to be "infinitely preferred to any State arrangements".[^footnotemarshall2008154%e2%80%93155-48] The French political philosopher [Donatien Alphonse François](https://en.wikipedia.org/wiki/Marquis_de_Sade "Marquis de Sade"), in his 1797 novel *[Juliette](https://en.wikipedia.org/wiki/Juliette_\(novel\) "Juliette (novel)")*, questioned what form of government was best.[^footnotemarshall2008146-49] He argued that it was passion, not law, that had driven human society forward, concluding by calling for the abolition of law and a return to a state of nature by accepting anarchy.[^footnotemarshall2008146%e2%80%93147-50] He concluded by declaring anarchy to be the best form of political regime, as it was law that gave rise to [tyranny](https://en.wikipedia.org/wiki/Tyranny "Tyranny") and anarchic revolution that was capable of bringing down bad governments.[^footnotemarshall2008147-51] After the [American Revolution](https://en.wikipedia.org/wiki/American_Revolution "American Revolution"), [Thomas Jefferson](https://en.wikipedia.org/wiki/Thomas_Jefferson "Thomas Jefferson") suggested that a stateless society might lead to greater happiness for humankind and has been attributed the maxim "that government is best which governs least". Jefferson's political philosophy later inspired the development of [individualist anarchism in the United States](https://en.wikipedia.org/wiki/Individualist_anarchism_in_the_United_States "Individualist anarchism in the United States"), with contemporary [right-libertarians](https://en.wikipedia.org/wiki/Right-libertarianism "Right-libertarianism") proposing that private property could be used to guarantee anarchy.[^footnotemarshall2008497-52]
![Portrait painting of Pierre-Joseph Proudhon](https://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Portrait_of_Pierre_Joseph_Proudhon_1865.jpg/220px-Portrait_of_Pierre_Joseph_Proudhon_1865.jpg)
[Pierre-Joseph Proudhon](https://en.wikipedia.org/wiki/Pierre-Joseph_Proudhon "Pierre-Joseph Proudhon"), the first person to self-identify with the term "anarchist" and one of the first to redefine "anarchy" in a positive sense
[Pierre-Joseph Proudhon](https://en.wikipedia.org/wiki/Pierre-Joseph_Proudhon "Pierre-Joseph Proudhon") was the first person known to self-identify as an anarchist, adopting the label in order to provoke those that took anarchy to mean disorder.[^footnotemarshall2008234-53] Proudhon was one of the first people to use the word "anarchy" ([French](https://en.wikipedia.org/wiki/French_language "French language"): *anarchie*) in a positive sense, to mean a free society without government.[^footnoteprichard201971-54] To Proudhon, as anarchy did not allow coercion, it could be defined synoymously with [liberty](https://en.wikipedia.org/wiki/Liberty "Liberty").[^footnoteprichard201984-55] In arguing against [monarchy](https://en.wikipedia.org/wiki/Monarchy "Monarchy"), he claimed that "the [Republic](https://en.wikipedia.org/wiki/Republic "Republic") is a positive anarchy ... it is the liberty that is the MOTHER, not the daughter, of order."[^footnoteprichard201971-54] While acknowledging this common definition of anarchy as disorder, Proudhon claimed that it was actually authoritarian government and wealth inequality that were the true causes of social disorder.[^footnotemarshall2008239-56] By counterposing this against anarchy, which he defined as an absence of rulers,[^footnotemarshall20085,_239mckay2018118%e2%80%93119mclaughlin2007137-57] Proudhon declared that "just as man seeks justice in equality, society seeks order in anarchy".[^footnotemarshall20085,_239mclaughlin2007137-58] Proudhon based his case for anarchy on his conception of a just and moral state of nature.[^footnotemarshall200839-59]
Proudhon posited [federalism](https://en.wikipedia.org/wiki/Federalism "Federalism") as an organizational form and [mutualism](https://en.wikipedia.org/wiki/Mutualism_\(economic_theory\) "Mutualism (economic theory)") as an economic form, which he believed would lead towards the end goal of anarchy.[^footnotemarshall20087-60] In his 1863 work *The Federal Principle*, Proudhon elaborated his view of anarchy as "the government of each man by himself," using the English term of "self-government" as a synonym for it.[^footnotemarshall2008252,_254-61] According to Proudhon, under anarchy, "all citizens reign and govern" through [direct participation](https://en.wikipedia.org/wiki/Public_participation_\(decision_making\) "Public participation (decision making)") in decision-making.[^footnotemckay2018120-62] He proposed that this could be achieved through a system of [federalism](https://en.wikipedia.org/wiki/Federalism "Federalism") and [decentralisation](https://en.wikipedia.org/wiki/Decentralisation "Decentralisation"),[^footnotemarshall2008252mckay2018120-63] in which every community is self-governing and any delegation of decision-making is subject to [immediate recall](https://en.wikipedia.org/wiki/Recall_election "Recall election").[^footnotemckay2018120-62] He likewise called for the economy to be brought under [industrial democracy](https://en.wikipedia.org/wiki/Industrial_democracy "Industrial democracy"), which would abolish [private property](https://en.wikipedia.org/wiki/Private_property "Private property").[^footnotemckay2018120%e2%80%93121-64] Proudhon believed that all this would eventually lead to anarchy, as individual and collective interests aligned and [spontaneous order](https://en.wikipedia.org/wiki/Spontaneous_order "Spontaneous order") is achieved.[^footnotemarshall2008254%e2%80%93255-65]
Proudhon thus came to be known as the "father of anarchy" by the anarchist movement, which emerged from the [libertarian socialist](https://en.wikipedia.org/wiki/Libertarian_socialism "Libertarian socialism") faction of the [International Workingmen's Association](https://en.wikipedia.org/wiki/International_Workingmen%27s_Association "International Workingmen's Association") (IWA).[^footnotemarshall2008235%e2%80%93236-66] Until the establishment of IWA in 1864, there had been no anarchist movement, only individuals and groups that saw anarchy as their end goal.[^footnotegraham2019326-67]
![Portrait photograph of Mikhail Bakunin](https://upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Bakunin_Nadar.jpg/220px-Bakunin_Nadar.jpg)
[Mikhail Bakunin](https://en.wikipedia.org/wiki/Mikhail_Bakunin "Mikhail Bakunin"), who infused the term "anarchy" with simultaneous positive and negative definitions
One of Proudhon's keenest students was the Russian revolutionary [Mikhail Bakunin](https://en.wikipedia.org/wiki/Mikhail_Bakunin "Mikhail Bakunin"), who adopted his critiques of private property and government, as well as his views on the desirability of anarchy.[^footnotemarshall2008269%e2%80%93270-68] During the [Revolutions of 1848](https://en.wikipedia.org/wiki/Revolutions_of_1848 "Revolutions of 1848"), Bakunin wrote of his hopes of igniting a revolutionary upheaval in the [Russian Empire](https://en.wikipedia.org/wiki/Russian_Empire "Russian Empire"), writing to the German poet [Georg Herwegh](https://en.wikipedia.org/wiki/Georg_Herwegh "Georg Herwegh") that "I do not fear anarchy, but desire it with all my heart". Although he still used the negative definition of anarchy as disorder, he nevertheless saw the need for "something different: passion and life and a new world, lawless and thereby free."[^footnotemarshall2008271-69]
Bakunin popularised "anarchy" as a term,[^footnotemarshall20085-70] using both its negative and positive definitions,[^footnotemarshall2008265-71] in order to respectively describe the disorderly destruction of revolution and the construction of a new social order in the post-revolutionary society.[^footnotegraham2019330marshall20085,_285,_306-72] Bakunin envisioned the creation of an "International Brotherhood", which could lead people through "the thick of popular anarchy" in a [social revolution](https://en.wikipedia.org/wiki/Social_revolution "Social revolution").[^footnotegraham2019330-73] Upon joining the IWA, in 1869, Bakunin drew up a programme for such a Brotherhood, in which he infused the word "anarchy" with a more positive connotation:[^footnotemarshall2008281%e2%80%93282-74]
> We do not fear anarchy, we invoke it. For we are convinced that anarchy, meaning the unrestricted manifestation of the liberated life of the people, must spring from liberty, equality, the new social order, and the force of the revolution itself against the reaction. There is no doubt that this new life the popular revolution will in good time organize itself, but it will create its revolutionary organization from the bottom up, from the circumference to the center, in accordance with the principle of liberty, and not from the top down or from the center to the circumference in the manner of all authority. It matters little to us if that authority is called [Church](https://en.wikipedia.org/wiki/Christian_Church "Christian Church"), [Monarchy](https://en.wikipedia.org/wiki/Monarchy "Monarchy"), [constitutional State](https://en.wikipedia.org/wiki/Constitutionalism "Constitutionalism"), [bourgeois Republic](https://en.wikipedia.org/wiki/Democratic_republic "Democratic republic"), or even [revolutionary Dictatorship](https://en.wikipedia.org/wiki/Dictatorship_of_the_proletariat "Dictatorship of the proletariat"). We detest and reject all of them equally as the unfailing sources of exploitation and despotism.
- [Anti-authoritarianism](https://en.wikipedia.org/wiki/Anti-authoritarianism "Anti-authoritarianism")
- [Criticisms of electoral politics](https://en.wikipedia.org/wiki/Criticisms_of_electoral_politics "Criticisms of electoral politics")
- [Libertarian socialism](https://en.wikipedia.org/wiki/Libertarian_socialism "Libertarian socialism")
- [List of anarchist organizations](https://en.wikipedia.org/wiki/List_of_anarchist_organizations "List of anarchist organizations")
- [Outline of anarchism](https://en.wikipedia.org/wiki/Outline_of_anarchism "Outline of anarchism")
- [Power vacuum](https://en.wikipedia.org/wiki/Power_vacuum "Power vacuum")
- [Rebellion](https://en.wikipedia.org/wiki/Rebellion "Rebellion")
- [Relationship anarchy](https://en.wikipedia.org/wiki/Relationship_anarchy "Relationship anarchy")
- [State of nature](https://en.wikipedia.org/wiki/State_of_nature "State of nature")
[^footnotebell2020310-1]: [Bell 2020](https://en.wikipedia.org/wiki/#CITEREFBell2020), p. 310.
[^footnotedupuis-déri201013marshall20083-2]: [Dupuis-Déri 2010](https://en.wikipedia.org/wiki/#CITEREFDupuis-D%C3%A9ri2010), p. 13; [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 3.
[^footnotechartiervan_schoelandt20201dupuis-déri201013marshall20081920mckay2018118119-3]: [Chartier & Van Schoelandt 2020](https://en.wikipedia.org/wiki/#CITEREFChartierVan_Schoelandt2020), p. 1; [Dupuis-Déri 2010](https://en.wikipedia.org/wiki/#CITEREFDupuis-D%C3%A9ri2010), p. 13; [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 1920; [McKay 2018](https://en.wikipedia.org/wiki/#CITEREFMcKay2018), pp. 118119.
[^footnotechartiervan_schoelandt20201dupuis-déri20101415-4]: [Chartier & Van Schoelandt 2020](https://en.wikipedia.org/wiki/#CITEREFChartierVan_Schoelandt2020), p. 1; [Dupuis-Déri 2010](https://en.wikipedia.org/wiki/#CITEREFDupuis-D%C3%A9ri2010), pp. 1415.
[^footnotemarshall20083morris202040sensen202099-5]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 3; [Morris 2020](https://en.wikipedia.org/wiki/#CITEREFMorris2020), p. 40; [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), p. 99.
[^footnoteamster201815bell2020310boettkecandela2020226morris20203942sensen202099-6]: [Amster 2018](https://en.wikipedia.org/wiki/#CITEREFAmster2018), p. 15; [Bell 2020](https://en.wikipedia.org/wiki/#CITEREFBell2020), p. 310; [Boettke & Candela 2020](https://en.wikipedia.org/wiki/#CITEREFBoettkeCandela2020), p. 226; [Morris 2020](https://en.wikipedia.org/wiki/#CITEREFMorris2020), pp. 3942; [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), p. 99.
[^footnotebell2020310boettkecandela2020226morris20204345-7]: [Bell 2020](https://en.wikipedia.org/wiki/#CITEREFBell2020), p. 310; [Boettke & Candela 2020](https://en.wikipedia.org/wiki/#CITEREFBoettkeCandela2020), p. 226; [Morris 2020](https://en.wikipedia.org/wiki/#CITEREFMorris2020), pp. 4345.
[^footnotemarshall200842mclaughlin200712-8]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 42; [McLaughlin 2007](https://en.wikipedia.org/wiki/#CITEREFMcLaughlin2007), p. 12.
[^footnoteamster201823-9]: [Amster 2018](https://en.wikipedia.org/wiki/#CITEREFAmster2018), p. 23.
[^footnotebell2020309boettkecandela2020226chartiervan_schoelandt20201-10]: [Bell 2020](https://en.wikipedia.org/wiki/#CITEREFBell2020), p. 309; [Boettke & Candela 2020](https://en.wikipedia.org/wiki/#CITEREFBoettkeCandela2020), p. 226; [Chartier & Van Schoelandt 2020](https://en.wikipedia.org/wiki/#CITEREFChartierVan_Schoelandt2020), p. 1.
[^footnoteboettkecandela2020226morris20203940sensen202099-11]: [Boettke & Candela 2020](https://en.wikipedia.org/wiki/#CITEREFBoettkeCandela2020), p. 226; [Morris 2020](https://en.wikipedia.org/wiki/#CITEREFMorris2020), pp. 3940; [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), p. 99.
[^footnoteboettkecandela2020226-12]: [Boettke & Candela 2020](https://en.wikipedia.org/wiki/#CITEREFBoettkeCandela2020), p. 226.
[^footnotedupuis-déri20101617-13]: [Dupuis-Déri 2010](https://en.wikipedia.org/wiki/#CITEREFDupuis-D%C3%A9ri2010), pp. 1617.
[^footnotedupuis-déri20101718-14]: [Dupuis-Déri 2010](https://en.wikipedia.org/wiki/#CITEREFDupuis-D%C3%A9ri2010), pp. 1718.
[^footnotemarshall20083-15]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 3.
[^footnotemarshall200866-16]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 66.
[^footnotedupuis-déri20109-17]: [Dupuis-Déri 2010](https://en.wikipedia.org/wiki/#CITEREFDupuis-D%C3%A9ri2010), p. 9.
[^footnotedupuis-déri201011-18]: [Dupuis-Déri 2010](https://en.wikipedia.org/wiki/#CITEREFDupuis-D%C3%A9ri2010), p. 11.
[^footnotemarshall200874-19]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 74.
[^footnotemarshall2008106107-20]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 106107.
[^footnotemarshall200898100-21]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 98100.
[^footnotemarshall2008100-22]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 100.
[^footnotedavis20195960marshall2008487-23]: [Davis 2019](https://en.wikipedia.org/wiki/#CITEREFDavis2019), pp. 5960; [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 487.
[^footnotemarshall2008487-24]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 487.
[^footnotedavis20195960-25]: [Davis 2019](https://en.wikipedia.org/wiki/#CITEREFDavis2019), pp. 5960.
[^footnotemorris20203940-26]: [Morris 2020](https://en.wikipedia.org/wiki/#CITEREFMorris2020), pp. 3940.
[^footnotemarshall2008xsensen202099100-27]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. x; [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), pp. 99100.
[^footnotemarshall2008x-28]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. x.
[^footnotemarshall20081314-29]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 1314.
[^footnotemarshall20081314,_129-30]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 1314, 129.
[^footnotechartiervan_schoelandt20203-31]: [Chartier & Van Schoelandt 2020](https://en.wikipedia.org/wiki/#CITEREFChartierVan_Schoelandt2020), p. 3.
[^footnotemarshall200814-32]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 14.
[^footnotesensen202099-33]: [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), p. 99.
[^footnotesensen202099100-34]: [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), pp. 99100.
[^footnotesensen2020100-35]: [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), p. 100.
[^footnotesensen2020100101-36]: [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), pp. 100101.
[^footnotesensen2020101-37]: [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), p. 101.
[^footnotesensen2020101102-38]: [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), pp. 101102.
[^footnotesensen2020107109-39]: [Sensen 2020](https://en.wikipedia.org/wiki/#CITEREFSensen2020), pp. 107109.
[^footnotemarshall2008133-40]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 133.
[^footnotemarshall2008133134-41]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 133134.
[^footnotemarshall2008134-42]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 134.
[^footnotemarshall2008206mclaughlin2007117118-43]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 206; [McLaughlin 2007](https://en.wikipedia.org/wiki/#CITEREFMcLaughlin2007), pp. 117118.
[^footnotemarshall2008488-44]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 488.
[^footnotemarshall2008214,_488-45]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 214, 488.
[^footnotemarshall2008214-46]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 214.
[^footnotemclaughlin2007132-47]: [McLaughlin 2007](https://en.wikipedia.org/wiki/#CITEREFMcLaughlin2007), p. 132.
[^footnotemarshall2008154155-48]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 154155.
[^footnotemarshall2008146-49]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 146.
[^footnotemarshall2008146147-50]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 146147.
[^footnotemarshall2008147-51]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 147.
[^footnotemarshall2008497-52]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 497.
[^footnotemarshall2008234-53]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 234.
[^footnoteprichard201971-54]: [Prichard 2019](https://en.wikipedia.org/wiki/#CITEREFPrichard2019), p. 71.
[^footnoteprichard201984-55]: [Prichard 2019](https://en.wikipedia.org/wiki/#CITEREFPrichard2019), p. 84.
[^footnotemarshall2008239-56]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 239.
[^footnotemarshall20085,_239mckay2018118119mclaughlin2007137-57]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 5, 239; [McKay 2018](https://en.wikipedia.org/wiki/#CITEREFMcKay2018), pp. 118119; [McLaughlin 2007](https://en.wikipedia.org/wiki/#CITEREFMcLaughlin2007), p. 137.
[^footnotemarshall20085,_239mclaughlin2007137-58]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 5, 239; [McLaughlin 2007](https://en.wikipedia.org/wiki/#CITEREFMcLaughlin2007), p. 137.
[^footnotemarshall200839-59]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 39.
[^footnotemarshall20087-60]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 7.
[^footnotemarshall2008252,_254-61]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 252, 254.
[^footnotemckay2018120-62]: [McKay 2018](https://en.wikipedia.org/wiki/#CITEREFMcKay2018), p. 120.
[^footnotemarshall2008252mckay2018120-63]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 252; [McKay 2018](https://en.wikipedia.org/wiki/#CITEREFMcKay2018), p. 120.
[^footnotemckay2018120121-64]: [McKay 2018](https://en.wikipedia.org/wiki/#CITEREFMcKay2018), pp. 120121.
[^footnotemarshall2008254255-65]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 254255.
[^footnotemarshall2008235236-66]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 235236.
[^footnotegraham2019326-67]: [Graham 2019](https://en.wikipedia.org/wiki/#CITEREFGraham2019), p. 326.
[^footnotemarshall2008269270-68]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 269270.
[^footnotemarshall2008271-69]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 271.
[^footnotemarshall20085-70]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 5.
[^footnotemarshall2008265-71]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), p. 265.
[^footnotegraham2019330marshall20085,_285,_306-72]: [Graham 2019](https://en.wikipedia.org/wiki/#CITEREFGraham2019), p. 330; [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 5, 285, 306.
[^footnotegraham2019330-73]: [Graham 2019](https://en.wikipedia.org/wiki/#CITEREFGraham2019), p. 330.
[^footnotemarshall2008281282-74]: [Marshall 2008](https://en.wikipedia.org/wiki/#CITEREFMarshall2008), pp. 281282.
- [Amster, Randall](https://en.wikipedia.org/wiki/Randall_Amster "Randall Amster") (2018). "Anti-Hierarchy". In Franks, Benjamin; Jun, Nathan; Williams, Leonard (eds.). *Anarchism: A Conceptual Approach*. [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 1527\. [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-1-138-92565-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-138-92565-6 "Special:BookSources/978-1-138-92565-6"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2017044519](https://lccn.loc.gov/2017044519).
- Bell, Tom W. (2020). "The Forecast for Anarchy". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 309324\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255-22](https://doi.org/10.4324%2F9781315185255-22). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- [Boettke, Peter J.](https://en.wikipedia.org/wiki/Peter_Boettke "Peter Boettke"); Candela, Rosolino A. (2020). "The Positive Political Economy of Analytical Anarchism". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 222234\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255-15](https://doi.org/10.4324%2F9781315185255-15). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- [Chartier, Gary](https://en.wikipedia.org/wiki/Gary_Chartier "Gary Chartier"); Van Schoelandt, Chad (2020). "Introduction". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 112\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255](https://doi.org/10.4324%2F9781315185255). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- Davis, Lawrence (2019). "Individual and Community". In Adams, Matthew S.; Levy, Carl (eds.). *The Palgrave Handbook of Anarchism*. London: Palgrave Macmillan. pp. 4770\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1007/978-3-319-75620-2\_3](https://doi.org/10.1007%2F978-3-319-75620-2_3). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-3319756196](https://en.wikipedia.org/wiki/Special:BookSources/978-3319756196 "Special:BookSources/978-3319756196"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [158605651](https://api.semanticscholar.org/CorpusID:158605651).
- [Dupuis-Déri, Francis](https://en.wikipedia.org/wiki/Francis_Dupuis-D%C3%A9ri "Francis Dupuis-Déri") (2010). "Anarchy in Political Philosophy". In Jun, Nathan J.; Wahl, Shane (eds.). *New Perspectives on Anarchism*. [Rowman & Littlefield](https://en.wikipedia.org/wiki/Rowman_%26_Littlefield "Rowman & Littlefield"). pp. 924\. [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-0-7391-3240-1](https://en.wikipedia.org/wiki/Special:BookSources/978-0-7391-3240-1 "Special:BookSources/978-0-7391-3240-1"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2009015304](https://lccn.loc.gov/2009015304).
- [Graham, Robert](https://en.wikipedia.org/wiki/Robert_Graham_\(historian\) "Robert Graham (historian)") (2019). "Anarchism and the First International". In Adams, Matthew S.; Levy, Carl (eds.). *The Palgrave Handbook of Anarchism*. London: Palgrave Macmillan. pp. 325342\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1007/978-3-319-75620-2\_19](https://doi.org/10.1007%2F978-3-319-75620-2_19). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-3319756196](https://en.wikipedia.org/wiki/Special:BookSources/978-3319756196 "Special:BookSources/978-3319756196"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [158605651](https://api.semanticscholar.org/CorpusID:158605651).
- [Marshall, Peter H.](https://en.wikipedia.org/wiki/Peter_Marshall_\(author,_born_1946\) "Peter Marshall (author, born 1946)") (2008) \[1992\]. *[Demanding the Impossible: A History of Anarchism](https://en.wikipedia.org/wiki/Demanding_the_Impossible "Demanding the Impossible")*. [London](https://en.wikipedia.org/wiki/London "London"): [Harper Perennial](https://en.wikipedia.org/wiki/Harper_Perennial "Harper Perennial"). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-0-00-686245-1](https://en.wikipedia.org/wiki/Special:BookSources/978-0-00-686245-1 "Special:BookSources/978-0-00-686245-1"). [OCLC](https://en.wikipedia.org/wiki/OCLC_\(identifier\) "OCLC (identifier)") [218212571](https://search.worldcat.org/oclc/218212571).
- McKay, Iain (2018). "Organisation". In Franks, Benjamin; Jun, Nathan; Williams, Leonard (eds.). *Anarchism: A Conceptual Approach*. [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 115128\. [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-1-138-92565-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-138-92565-6 "Special:BookSources/978-1-138-92565-6"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2017044519](https://lccn.loc.gov/2017044519).
- McLaughlin, Paul (2007). [*Anarchism and Authority: A Philosophical Introduction to Classical Anarchism*](https://books.google.com/books?id=kkj5i3CeGbQC). Aldershot: [Ashgate Publishing](https://en.wikipedia.org/wiki/Ashgate_Publishing "Ashgate Publishing"). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-0-7546-6196-2](https://en.wikipedia.org/wiki/Special:BookSources/978-0-7546-6196-2 "Special:BookSources/978-0-7546-6196-2"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2007007973](https://lccn.loc.gov/2007007973).
- [Morris, Christopher W.](https://en.wikipedia.org/wiki/Christopher_W._Morris "Christopher W. Morris") (2020). "On the Distinction Between State and Anarchy". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 3952\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255-3](https://doi.org/10.4324%2F9781315185255-3). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- Prichard, Alex (2019). "Freedom". In Adams, Matthew S.; Levy, Carl (eds.). *The Palgrave Handbook of Anarchism*. London: Palgrave Macmillan. pp. 7189\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1007/978-3-319-75620-2\_4](https://doi.org/10.1007%2F978-3-319-75620-2_4). [hdl](https://en.wikipedia.org/wiki/Hdl_\(identifier\) "Hdl (identifier)"):[10871/32538](https://hdl.handle.net/10871%2F32538). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-3319756196](https://en.wikipedia.org/wiki/Special:BookSources/978-3319756196 "Special:BookSources/978-3319756196"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [158605651](https://api.semanticscholar.org/CorpusID:158605651).
- [Sensen, Oliver](https://en.wikipedia.org/wiki/Oliver_Sensen "Oliver Sensen") (2020). "Kant on Anarchy". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 99111\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255-7](https://doi.org/10.4324%2F9781315185255-7). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- [Crowe, Jonathan](https://en.wikipedia.org/wiki/Jonathan_Crowe "Jonathan Crowe") (2020). "Anarchy and Law". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 281294\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255-20](https://doi.org/10.4324%2F9781315185255-20). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- Gabay, Clive (2010). "What Did the Anarchists Ever Do for Us? Anarchy, Decentralization, and Autonomy at the Seattle Anti-WTO Protests". In Jun, Nathan J.; Wahl, Shane (eds.). *New Perspectives on Anarchism*. [Rowman & Littlefield](https://en.wikipedia.org/wiki/Rowman_%26_Littlefield "Rowman & Littlefield"). pp. 121132\. [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-0-7391-3240-1](https://en.wikipedia.org/wiki/Special:BookSources/978-0-7391-3240-1 "Special:BookSources/978-0-7391-3240-1"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2009015304](https://lccn.loc.gov/2009015304).
- [Gordon, Uri](https://en.wikipedia.org/wiki/Uri_Gordon_\(anarchist\) "Uri Gordon (anarchist)") (2010). "Power and Anarchy: In/equality + In/visibility in Autonomous Politics". In Jun, Nathan J.; Wahl, Shane (eds.). *New Perspectives on Anarchism*. [Rowman & Littlefield](https://en.wikipedia.org/wiki/Rowman_%26_Littlefield "Rowman & Littlefield"). pp. 3966\. [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-0-7391-3240-1](https://en.wikipedia.org/wiki/Special:BookSources/978-0-7391-3240-1 "Special:BookSources/978-0-7391-3240-1"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2009015304](https://lccn.loc.gov/2009015304).
- [Hirshleifer, Jack](https://en.wikipedia.org/wiki/Jack_Hirshleifer "Jack Hirshleifer") (1995). ["Anarchy and its Breakdown"](http://www.econ.ucla.edu/workingpapers/wp674.pdf) (PDF). *[Journal of Political Economy](https://en.wikipedia.org/wiki/Journal_of_Political_Economy "Journal of Political Economy")*. **103** (1): 2652\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1086/261974](https://doi.org/10.1086%2F261974). [ISSN](https://en.wikipedia.org/wiki/ISSN_\(identifier\) "ISSN (identifier)") [1537-534X](https://search.worldcat.org/issn/1537-534X). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [154997658](https://api.semanticscholar.org/CorpusID:154997658).
- [Huemer, Michael](https://en.wikipedia.org/wiki/Michael_Huemer "Michael Huemer") (2020). "The Right Anarchy: Capitalist or Socialist?". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 342359\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255-24](https://doi.org/10.4324%2F9781315185255-24). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- [Leeson, Peter T.](https://en.wikipedia.org/wiki/Peter_Leeson "Peter Leeson") (2007). ["Better off stateless: Somalia before and after government collapse"](https://www.peterleeson.com/Better_Off_Stateless.pdf) (PDF). *[Journal of Comparative Economics](https://en.wikipedia.org/wiki/Journal_of_Comparative_Economics "Journal of Comparative Economics")*. **35** (4): 689710\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1016/j.jce.2007.10.001](https://doi.org/10.1016%2Fj.jce.2007.10.001). [ISSN](https://en.wikipedia.org/wiki/ISSN_\(identifier\) "ISSN (identifier)") [0147-5967](https://search.worldcat.org/issn/0147-5967).
- [Levy, Carl](https://en.wikipedia.org/wiki/Carl_Levy_\(political_scientist\) "Carl Levy (political scientist)") (2019). ["Anarchism and Cosmopolitanism"](https://research.gold.ac.uk/id/eprint/23630/1/LevyPalgraveLevyFinal%20%281%29.pdf) (PDF). In Adams, Matthew S.; Levy, Carl (eds.). *The Palgrave Handbook of Anarchism*. London: Palgrave Macmillan. pp. 125148\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1007/978-3-319-75620-2\_7](https://doi.org/10.1007%2F978-3-319-75620-2_7). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-3319756196](https://en.wikipedia.org/wiki/Special:BookSources/978-3319756196 "Special:BookSources/978-3319756196"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [158605651](https://api.semanticscholar.org/CorpusID:158605651).
- McLaughlin, Paul (2020). "Anarchism, Anarchists and Anarchy". In Chartier, Gary; Van Schoelandt, Chad (eds.). *The Routledge Handbook of Anarchy and Anarchist Thought*. [New York](https://en.wikipedia.org/wiki/New_York_City "New York City"): [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 1527\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.4324/9781315185255-1](https://doi.org/10.4324%2F9781315185255-1). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [9781315185255](https://en.wikipedia.org/wiki/Special:BookSources/9781315185255 "Special:BookSources/9781315185255"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [228898569](https://api.semanticscholar.org/CorpusID:228898569).
- [Powell, Benjamin](https://en.wikipedia.org/wiki/Benjamin_Powell "Benjamin Powell"); [Stringham, Edward P.](https://en.wikipedia.org/wiki/Edward_Stringham "Edward Stringham") (2009). ["Public choice and the economic analysis of anarchy: a survey"](https://mpra.ub.uni-muenchen.de/26097/1/MPRA_paper_26097.pdf) (PDF). *[Public Choice](https://en.wikipedia.org/wiki/Public_Choice_\(journal\) "Public Choice (journal)")*. **140** (34): 503538\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1007/s11127-009-9407-1](https://doi.org/10.1007%2Fs11127-009-9407-1). [ISSN](https://en.wikipedia.org/wiki/ISSN_\(identifier\) "ISSN (identifier)") [1573-7101](https://search.worldcat.org/issn/1573-7101). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [189842170](https://api.semanticscholar.org/CorpusID:189842170).
- [Newman, Saul](https://en.wikipedia.org/wiki/Saul_Newman "Saul Newman") (2019). "Postanarchism". In Adams, Matthew S.; Levy, Carl (eds.). *The Palgrave Handbook of Anarchism*. London: Palgrave Macmillan. pp. 293304\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1007/978-3-319-75620-2\_17](https://doi.org/10.1007%2F978-3-319-75620-2_17). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-3319756196](https://en.wikipedia.org/wiki/Special:BookSources/978-3319756196 "Special:BookSources/978-3319756196"). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [158605651](https://api.semanticscholar.org/CorpusID:158605651).
- Shannon, Deric (2018). "Economy". In Franks, Benjamin; Jun, Nathan; Williams, Leonard (eds.). *Anarchism: A Conceptual Approach*. [Routledge](https://en.wikipedia.org/wiki/Routledge "Routledge"). pp. 142154\. [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-1-138-92565-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-138-92565-6 "Special:BookSources/978-1-138-92565-6"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2017044519](https://lccn.loc.gov/2017044519).
- Shantz, Jeff; Williams, Dana M. (2013). *Anarchy and Society: Reflections on Anarchist Sociology*. [Brill](https://en.wikipedia.org/wiki/Brill_Publishers "Brill Publishers"). [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1163/9789004252998](https://doi.org/10.1163%2F9789004252998). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-90-04-21496-5](https://en.wikipedia.org/wiki/Special:BookSources/978-90-04-21496-5 "Special:BookSources/978-90-04-21496-5"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2013033844](https://lccn.loc.gov/2013033844).
- Tamblyn, Nathan (30 April 2019). ["The Common Ground of Law and Anarchism"](https://doi.org/10.1007%2Fs10991-019-09223-1). *Liverpool Law Review*. **40** (1): 6578\. [doi](https://en.wikipedia.org/wiki/Doi_\(identifier\) "Doi (identifier)"):[10.1007/s10991-019-09223-1](https://doi.org/10.1007%2Fs10991-019-09223-1). [hdl](https://en.wikipedia.org/wiki/Hdl_\(identifier\) "Hdl (identifier)"):[10871/36939](https://hdl.handle.net/10871%2F36939). [S2CID](https://en.wikipedia.org/wiki/S2CID_\(identifier\) "S2CID (identifier)") [155131683](https://api.semanticscholar.org/CorpusID:155131683).
- [Taylor, Michael](https://en.wikipedia.org/wiki/Michael_Taylor_\(political_scientist\) "Michael Taylor (political scientist)") (1982). *Community, Anarchy and Liberty*. [Cambridge University Press](https://en.wikipedia.org/wiki/Cambridge_University_Press "Cambridge University Press"). [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [0-521-24621-0](https://en.wikipedia.org/wiki/Special:BookSources/0-521-24621-0 "Special:BookSources/0-521-24621-0"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [82-1173](https://lccn.loc.gov/82-1173).
- Verter, Mitchell (2010). "The Anarchism of the Other Person". In Jun, Nathan J.; Wahl, Shane (eds.). *New Perspectives on Anarchism*. [Rowman & Littlefield](https://en.wikipedia.org/wiki/Rowman_%26_Littlefield "Rowman & Littlefield"). pp. 6784\. [ISBN](https://en.wikipedia.org/wiki/ISBN_\(identifier\) "ISBN (identifier)") [978-0-7391-3240-1](https://en.wikipedia.org/wiki/Special:BookSources/978-0-7391-3240-1 "Special:BookSources/978-0-7391-3240-1"). [LCCN](https://en.wikipedia.org/wiki/LCCN_\(identifier\) "LCCN (identifier)") [2009015304](https://lccn.loc.gov/2009015304).

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,269 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Airdrie - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389611|rpid=70599386|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Airdrie - Free Food
</span>
<div id="viewCartDescription">Free food services in the Airdrie area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024417" href="" onclick="setMailListLink('Airdrie - Free Food', '1024417', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024417')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074775">Food Hamper Programs</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007251">Airdrie Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Airdrie Food Bank</b>&nbsp;&nbsp;&nbsp;20 East Lake Way , Airdrie, Alberta T4A 2J3
<br/>403-948-0063
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074776">Infant and Parent Support Programs</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007251">Airdrie Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Airdrie Food Bank</b>&nbsp;&nbsp;&nbsp;20 East Lake Way , Airdrie, Alberta T4A 2J3
<br/>403-912-8400 (Alberta Health Services Health Unit)
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Aldersyde - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389612|rpid=241598619|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Aldersyde - Free Food
</span>
<div id="viewCartDescription">Free food services in the Aldersyde area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024418" href="" onclick="setMailListLink('Aldersyde - Free Food', '1024418', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024418')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1076056">Food Hampers and Help Yourself Shelf</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048727">Okotoks Food Bank Association</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Okotoks 220 Stockton Avenue</b>&nbsp;&nbsp;&nbsp;220 Stockton Avenue , Okotoks, Alberta T1S 1B2
<br/>403-651-6629
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Balzac - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389613|rpid=1081450368|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Balzac - Free Food
</span>
<div id="viewCartDescription">Free food services in the Balzac area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024419" href="" onclick="setMailListLink('Balzac - Free Food', '1024419', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024419')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074775">Food Hamper Programs</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007251">Airdrie Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Airdrie Food Bank</b>&nbsp;&nbsp;&nbsp;20 East Lake Way , Airdrie, Alberta T4A 2J3
<br/>403-948-0063
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,269 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Banff - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389672|rpid=709142968|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Banff - Free Food
</span>
<div id="viewCartDescription">Free food services in the Banff area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024436" href="" onclick="setMailListLink('Banff - Free Food', '1024436', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024436')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1068052">Affordability Supports</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1008526">Family and Community Support Services of Banff</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Banff Town Hall</b>&nbsp;&nbsp;&nbsp;110 Bear Street , Banff, Alberta T1L 1A1
<br/>403-762-1251
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1009454">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007252">Banff Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Banff Park Church</b>&nbsp;&nbsp;&nbsp;455 Cougar Street , Banff, Alberta T1L 1A3
<br/>
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Beiseker - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389635|rpid=539849333|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Beiseker - Free Food
</span>
<div id="viewCartDescription">Free food services in the Beiseker area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024420" href="" onclick="setMailListLink('Beiseker - Free Food', '1024420', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024420')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074775">Food Hamper Programs</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007251">Airdrie Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Airdrie Food Bank</b>&nbsp;&nbsp;&nbsp;20 East Lake Way , Airdrie, Alberta T4A 2J3
<br/>403-948-0063
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,269 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Canmore - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389637|rpid=79271706|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Canmore - Free Food
</span>
<div id="viewCartDescription">Free food services in the Canmore area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024422" href="" onclick="setMailListLink('Canmore - Free Food', '1024422', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024422')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1068064">Affordability Programs</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1008360">Family and Community Support Services of Canmore</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Canmore Civic Centre</b>&nbsp;&nbsp;&nbsp;902 7 Avenue , Canmore, Alberta T1W 3K1
<br/>403-609-7125
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1010234">Food Hampers and Donations</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007918">Bow Valley Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Bow Valley Food Bank</b>&nbsp;&nbsp;&nbsp;20 Sandstone Terrace , Canmore, Alberta T1W 1K8
<br/>403-678-9488
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Chestermere - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389638|rpid=-905964365|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Chestermere - Free Food
</span>
<div id="viewCartDescription">Free food services in the Chestermere area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024423" href="" onclick="setMailListLink('Chestermere - Free Food', '1024423', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024423')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1071915">Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1041829">Chestermere Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Chestermere 100 Rainbow Road</b>&nbsp;&nbsp;&nbsp;100 Rainbow Road , Chestermere, Alberta T1X 0V2
<br/>403-207-7079
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Crossfield - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389639|rpid=1939852822|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Crossfield - Free Food
</span>
<div id="viewCartDescription">Free food services in the Crossfield area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024424" href="" onclick="setMailListLink('Crossfield - Free Food', '1024424', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024424')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074775">Food Hamper Programs</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007251">Airdrie Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Airdrie Food Bank</b>&nbsp;&nbsp;&nbsp;20 East Lake Way , Airdrie, Alberta T4A 2J3
<br/>403-948-0063
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Davisburg - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389640|rpid=1463743969|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Davisburg - Free Food
</span>
<div id="viewCartDescription">Free food services in the Davisburg area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024425" href="" onclick="setMailListLink('Davisburg - Free Food', '1024425', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024425')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1076056">Food Hampers and Help Yourself Shelf</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048727">Okotoks Food Bank Association</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Okotoks 220 Stockton Avenue</b>&nbsp;&nbsp;&nbsp;220 Stockton Avenue , Okotoks, Alberta T1S 1B2
<br/>403-651-6629
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: DeWinton - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389642|rpid=-1413897939|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
DeWinton - Free Food
</span>
<div id="viewCartDescription">Free food services in the DeWinton area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024427" href="" onclick="setMailListLink('DeWinton - Free Food', '1024427', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024427')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1076056">Food Hampers and Help Yourself Shelf</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048727">Okotoks Food Bank Association</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Okotoks 220 Stockton Avenue</b>&nbsp;&nbsp;&nbsp;220 Stockton Avenue , Okotoks, Alberta T1S 1B2
<br/>403-651-6629
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Dead Man&#39;s Flats - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389641|rpid=1788525763|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Dead Man&#39;s Flats - Free Food
</span>
<div id="viewCartDescription">Free food services in the Dead Man's Flats area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024426" href="" onclick="setMailListLink('Dead Man%27s Flats - Free Food', '1024426', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024426')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1010234">Food Hampers and Donations</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007918">Bow Valley Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Bow Valley Food Bank</b>&nbsp;&nbsp;&nbsp;20 Sandstone Terrace , Canmore, Alberta T1W 1K8
<br/>403-678-9488
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Exshaw - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389643|rpid=-836688283|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Exshaw - Free Food
</span>
<div id="viewCartDescription">Free food services in the Exshaw area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024428" href="" onclick="setMailListLink('Exshaw - Free Food', '1024428', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024428')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1010234">Food Hampers and Donations</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007918">Bow Valley Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Bow Valley Food Bank</b>&nbsp;&nbsp;&nbsp;20 Sandstone Terrace , Canmore, Alberta T1W 1K8
<br/>403-678-9488
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Harvie Heights - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389644|rpid=-398399164|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Harvie Heights - Free Food
</span>
<div id="viewCartDescription">Free food services in the Harvie Heights area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024429" href="" onclick="setMailListLink('Harvie Heights - Free Food', '1024429', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024429')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1010234">Food Hampers and Donations</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007918">Bow Valley Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Bow Valley Food Bank</b>&nbsp;&nbsp;&nbsp;20 Sandstone Terrace , Canmore, Alberta T1W 1K8
<br/>403-678-9488
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: High River - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655390536|rpid=1614380386|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
High River - Free Food
</span>
<div id="viewCartDescription">Free food services in the High River area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024502" href="" onclick="setMailListLink('High River - Free Food', '1024502', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024502')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1082912">High River Food Bank</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1051714">Salvation Army Foothills Church & Community Ministries, The</a>
</span>
</td>
</tr>
<tr>
<td>
<b>High River 119 Street SE</b>&nbsp;&nbsp;&nbsp;119 Centre Street SE, High River, Alberta T1V 1R7
<br/>403-652-2195 Ext 2
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,225 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Kananaskis - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389666|rpid=-1076064908|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Kananaskis - Free Food
</span>
<div id="viewCartDescription">Free food services in the Kananaskis area.
</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024430" href="" onclick="setMailListLink('Kananaskis - Free Food', '1024430', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024430')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1010234">Food Hampers and Donations</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007918">Bow Valley Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Bow Valley Food Bank</b>&nbsp;&nbsp;&nbsp;20 Sandstone Terrace , Canmore, Alberta T1W 1K8
<br/>403-678-9488
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Lac Des Arcs - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389667|rpid=1267565020|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Lac Des Arcs - Free Food
</span>
<div id="viewCartDescription">Free food services in the Lac Des Arcs area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024431" href="" onclick="setMailListLink('Lac Des Arcs - Free Food', '1024431', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024431')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1010234">Food Hampers and Donations</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007918">Bow Valley Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Bow Valley Food Bank</b>&nbsp;&nbsp;&nbsp;20 Sandstone Terrace , Canmore, Alberta T1W 1K8
<br/>403-678-9488
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Lake Louise - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389668|rpid=-446862615|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Lake Louise - Free Food
</span>
<div id="viewCartDescription">Free food services in the Lake Louise area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024432" href="" onclick="setMailListLink('Lake Louise - Free Food', '1024432', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024432')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1009454">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007252">Banff Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Banff Park Church</b>&nbsp;&nbsp;&nbsp;455 Cougar Street , Banff, Alberta T1L 1A3
<br/>
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,234 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Langdon - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655361707|rpid=1529303521|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Langdon - Free Food
</span>
<div id="viewCartDescription">Free food services in the Langdon area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1023603" href="" onclick="setMailListLink('Langdon - Free Food', '1023603', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1023603')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1080556">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1050832">South East Rocky View Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>South East Rocky View Food Bank Society</b>&nbsp;&nbsp;&nbsp;23 Centre Street N, Langdon, Alberta T0J 1X2
<br/>587-585-7378
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Madden - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389669|rpid=963816827|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Madden - Free Food
</span>
<div id="viewCartDescription">Free food services in the Madden area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024433" href="" onclick="setMailListLink('Madden - Free Food', '1024433', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024433')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074775">Food Hamper Programs</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1007251">Airdrie Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Airdrie Food Bank</b>&nbsp;&nbsp;&nbsp;20 East Lake Way , Airdrie, Alberta T4A 2J3
<br/>403-948-0063
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Okotoks - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389670|rpid=358318267|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Okotoks - Free Food
</span>
<div id="viewCartDescription">Free food services in the Okotoks area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024434" href="" onclick="setMailListLink('Okotoks - Free Food', '1024434', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024434')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1076056">Food Hampers and Help Yourself Shelf</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048727">Okotoks Food Bank Association</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Okotoks 220 Stockton Avenue</b>&nbsp;&nbsp;&nbsp;220 Stockton Avenue , Okotoks, Alberta T1S 1B2
<br/>403-651-6629
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Vulcan - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655389671|rpid=-1788374904|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Vulcan - Free Food
</span>
<div id="viewCartDescription">Free food services in the Vulcan area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024435" href="" onclick="setMailListLink('Vulcan - Free Food', '1024435', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024435')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075704">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048527">Vulcan Regional Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vulcan 105B 3 Avenue</b>&nbsp;&nbsp;&nbsp;105B 3 Avenue S, Vulcan, Alberta T0L 2B0
<br/>403-485-2106 Ext. 102
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,277 @@
#!/usr/bin/env python3
import os
import sys
import json
from datetime import datetime
from bs4 import BeautifulSoup
def extract_data(html_content):
"""Extract service information from the HTML content."""
soup = BeautifulSoup(html_content, 'html.parser')
# Get the list title - more robust handling
list_title_element = soup.find('span', class_='listTitleGreen')
list_title = list_title_element.text.strip() if list_title_element else "Unknown List"
# Get description - more robust handling
description_element = soup.find('div', id='viewCartDescription')
list_description = description_element.text.strip() if description_element else ""
# Find all service entries
services = []
service_tables = soup.find_all('table', class_='bottomBorderSearchResult')
if not service_tables:
# Try alternative approach - look for other patterns in the HTML
service_divs = soup.find_all('div', class_='searchResult')
if service_divs:
for div in service_divs:
service = parse_service_div(div)
if service:
services.append(service)
else:
for table in service_tables:
service = parse_service_table(table)
if service:
services.append(service)
return {
'title': list_title,
'description': list_description,
'services': services
}
def parse_service_table(table):
"""Parse a service from a table element - with error handling."""
service = {}
try:
# Get service name
service_link_span = table.find('span', class_='solLink')
if service_link_span:
service_link = service_link_span.find('a')
if service_link:
service['name'] = service_link.text.strip()
elif service_link_span.text:
service['name'] = service_link_span.text.strip()
# Get provider organization
org_span = table.find('span', class_='orgTitle')
if org_span:
org_link = org_span.find('a')
if org_link:
service['provider'] = org_link.text.strip()
elif org_span.text:
service['provider'] = org_span.text.strip()
# Get address and contact info
rows = table.find_all('tr')
if len(rows) > 1:
contact_cell = rows[1].find('td')
if contact_cell:
contact_text = contact_cell.get_text(strip=True, separator="\n")
lines = [line.strip() for line in contact_text.split('\n') if line.strip()]
# Extract address and phone
if lines:
address_parts = []
phone = ""
for line in lines:
if any(marker in line for marker in ['Alberta', 'T7N', 'Street', 'Avenue', 'Road']):
address_parts.append(line)
elif any(c.isdigit() for c in line) and ('-' in line or line.startswith('780')):
phone = line
if address_parts:
service['address'] = ' '.join(address_parts)
elif lines:
service['address'] = lines[0]
if phone:
service['phone'] = phone
except Exception as e:
print(f"Warning: Error parsing service table: {e}")
# Only return the service if we at least have a name
return service if service.get('name') else None
def parse_service_div(div):
"""Alternative parser for different HTML structure."""
service = {}
try:
# Look for service name
name_element = div.find(['h3', 'h4', 'strong', 'b']) or div.find('a')
if name_element:
service['name'] = name_element.text.strip()
# Look for provider info
provider_element = div.find('div', class_='provider') or div.find('p', class_='provider')
if provider_element:
service['provider'] = provider_element.text.strip()
# Look for address/contact
contact_div = div.find('div', class_='contact') or div.find('p')
if contact_div:
contact_text = contact_div.get_text(strip=True, separator="\n")
lines = [line.strip() for line in contact_text.split('\n') if line.strip()]
if lines:
for line in lines:
if any(marker in line for marker in ['Alberta', 'T7N', 'Street', 'Avenue', 'Road']):
service['address'] = line
elif any(c.isdigit() for c in line) and ('-' in line or any(prefix in line for prefix in ['780', '403', '587', '825'])):
service['phone'] = line
except Exception as e:
print(f"Warning: Error parsing service div: {e}")
# Return service if we have at least a name
return service if service.get('name') else None
def generate_markdown(data, current_date):
"""Generate markdown from the extracted data."""
markdown = f"# {data['title']}\n\n"
if data['description']:
markdown += f"_{data['description']}_\n\n"
if not data['services']:
markdown += "## No services found\n\n"
markdown += "_No service information could be extracted from this file._\n\n"
else:
markdown += f"## Available Services ({len(data['services'])})\n\n"
for i, service in enumerate(data['services'], 1):
markdown += f"### {i}. {service.get('name', 'Unknown Service')}\n\n"
if service.get('provider'):
markdown += f"**Provider:** {service['provider']}\n\n"
if service.get('address'):
markdown += f"**Address:** {service['address']}\n\n"
if service.get('phone'):
markdown += f"**Phone:** {service['phone']}\n\n"
markdown += "---\n\n"
markdown += f"_Generated on: {current_date}_"
return markdown
def create_output_directory(base_dir, output_dir_name):
"""Create output directory if it doesn't exist."""
output_path = os.path.join(base_dir, output_dir_name)
if not os.path.exists(output_path):
try:
os.makedirs(output_path)
print(f"Created output directory: {output_path}")
except Exception as e:
print(f"Error creating output directory: {e}")
return None
else:
print(f"Using existing output directory: {output_path}")
return output_path
def process_directory(current_date, output_dir_name="markdown_output"):
"""Process all HTML files in the current directory."""
base_dir = os.getcwd()
print(f"Processing HTML files in: {base_dir}")
# Create output directory
output_dir = create_output_directory(base_dir, output_dir_name)
if not output_dir:
return False
# Find all HTML files
html_files = [f for f in os.listdir(base_dir) if f.lower().endswith('.html')]
if not html_files:
print("No HTML files found in the current directory")
return False
successful_conversions = 0
all_data = [] # To collect data for JSON export
for html_file in html_files:
input_path = os.path.join(base_dir, html_file)
output_filename = html_file.rsplit('.', 1)[0] + '.md'
output_path = os.path.join(output_dir, output_filename)
try:
with open(input_path, 'r', encoding='utf-8') as f:
html_content = f.read()
data = extract_data(html_content)
# Add source filename to data for JSON export
data['source_file'] = html_file
all_data.append(data)
# Generate and save markdown
markdown = generate_markdown(data, current_date)
with open(output_path, 'w', encoding='utf-8') as f:
f.write(markdown)
print(f"Converted {html_file} to {output_filename}")
successful_conversions += 1
except Exception as e:
print(f"Error processing {html_file}: {str(e)}")
# Try to create a basic markdown file with error information
try:
error_md = f"# Error Processing: {html_file}\n\n"
error_md += f"An error occurred while processing this file: {str(e)}\n\n"
error_md += f"_Generated on: {current_date}_"
with open(output_path, 'w', encoding='utf-8') as f:
f.write(error_md)
print(f"Created error report markdown for {html_file}")
except:
print(f"Could not create error report for {html_file}")
# Generate consolidated JSON file
if successful_conversions > 0:
json_data = {
"generated_on": current_date,
"file_count": successful_conversions,
"listings": all_data
}
json_path = os.path.join(output_dir, "all_services.json")
try:
with open(json_path, 'w', encoding='utf-8') as f:
json.dump(json_data, f, indent=2)
print(f"Generated consolidated JSON file: {json_path}")
except Exception as e:
print(f"Error creating JSON file: {e}")
print(f"\nSummary: Successfully converted {successful_conversions} out of {len(html_files)} HTML files")
print(f"Files saved to: {output_dir}")
return True
def main():
# Parse command line arguments
output_dir_name = "markdown_output" # Default output directory name
current_date = datetime.now().strftime("%B %d, %Y")
# Check for custom arguments
if len(sys.argv) > 1:
for arg in sys.argv[1:]:
if arg.startswith("--output="):
output_dir_name = arg.split("=")[1]
elif not arg.startswith("--"):
current_date = arg
if process_directory(current_date, output_dir_name):
print("\nBatch conversion completed!")
else:
sys.exit(1)
if __name__ == "__main__":
main()

View File

@ -0,0 +1,25 @@
# Airdrie - Free Food
_Free food services in the Airdrie area._
## Available Services (2)
### 1. Food Hamper Programs
**Provider:** Airdrie Food Bank
**Address:** 20 East Lake Way , Airdrie, Alberta T4A 2J3
**Phone:** 403-948-0063
---
### 2. Infant and Parent Support Programs
**Provider:** Airdrie Food Bank
**Address:** 20 East Lake Way , Airdrie, Alberta T4A 2J3 403-912-8400 (Alberta Health Services Health Unit)
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Aldersyde - Free Food
_Free food services in the Aldersyde area._
## Available Services (1)
### 1. Food Hampers and Help Yourself Shelf
**Provider:** Okotoks Food Bank Association
**Address:** Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2
**Phone:** 403-651-6629
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Balzac - Free Food
_Free food services in the Balzac area._
## Available Services (1)
### 1. Food Hamper Programs
**Provider:** Airdrie Food Bank
**Address:** 20 East Lake Way , Airdrie, Alberta T4A 2J3
**Phone:** 403-948-0063
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,25 @@
# Banff - Free Food
_Free food services in the Banff area._
## Available Services (2)
### 1. Affordability Supports
**Provider:** Family and Community Support Services of Banff
**Address:** 110 Bear Street , Banff, Alberta T1L 1A1
**Phone:** 403-762-1251
---
### 2. Food Hampers
**Provider:** Banff Food Bank
**Address:** 455 Cougar Street , Banff, Alberta T1L 1A3
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Beiseker - Free Food
_Free food services in the Beiseker area._
## Available Services (1)
### 1. Food Hamper Programs
**Provider:** Airdrie Food Bank
**Address:** 20 East Lake Way , Airdrie, Alberta T4A 2J3
**Phone:** 403-948-0063
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,245 @@
# Calgary - Free Food
_Free food services in the Calgary area._
## Available Services (24)
### 1. Abundant Life Church's Bread Basket
**Provider:** Abundant Life Church Society
**Address:** 3343 49 Street SW, Calgary, Alberta T3E 6M6
**Phone:** 403-246-1804
---
### 2. Barbara Mitchell Family Resource Centre
**Provider:** Salvation Army, The - Calgary
**Address:** Calgary 1731 29 Street SW 1731 29 Street SW, Calgary, Alberta T3C 1M6
**Phone:** 403-930-2700
---
### 3. Basic Needs Program
**Provider:** Women's Centre of Calgary
**Address:** Calgary 39 4 Street NE 39 4 Street NE, Calgary, Alberta T2E 3R6
**Phone:** 403-264-1155
---
### 4. Basic Needs Referrals
**Provider:** Rise Calgary
**Address:** 1840 Ranchlands Way NW, Calgary, Alberta T3G 1R4 Calgary 3303 17 Avenue SE 3303 17 Avenue SE, Calgary, Alberta T2A 0R2 7904 43 Avenue NW, Calgary, Alberta T3B 4P9
**Phone:** 403-204-8280
---
### 5. Basic Needs Support
**Provider:** Society of Saint Vincent de Paul - Calgary
**Address:** Calgary, Alberta T2P 2M5
**Phone:** 403-250-0319
---
### 6. Community Crisis Stabilization Program
**Provider:** Wood's Homes
**Address:** Calgary 112 16 Avenue NE 112 16 Avenue NE, Calgary, Alberta T2E 1J5
**Phone:** 1-800-563-6106
---
### 7. Community Food Centre
**Provider:** Alex, The (The Alex Community Health Centre)
**Address:** Calgary 4920 17 Avenue SE 4920 17 Avenue SE, Calgary, Alberta T2A 0V4
**Phone:** 403-455-5792
---
### 8. Community Meals
**Provider:** Hope Mission Calgary
**Address:** Calgary 4869 Hubalta Road SE 4869 Hubalta Road SE, Calgary, Alberta T2B 1T5
**Phone:** 403-474-3237
---
### 9. Emergency Food Hampers
**Provider:** Calgary Food Bank
**Address:** 5000 11 Street SE, Calgary, Alberta T2H 2Y5
**Phone:** 403-253-2055 (Hamper Request Line)
---
### 10. Emergency Food Programs
**Provider:** Victory Foundation
**Address:** 1840 38 Street SE, Calgary, Alberta T2B 0Z3
**Phone:** 403-273-1050 (Call or Text)
---
### 11. Emergency Shelter
**Provider:** Calgary Drop-In Centre
**Address:** 1 Dermot Baldwin Way SE, Calgary, Alberta T2G 0P8
**Phone:** 403-266-3600
---
### 12. Emergency Shelter
**Provider:** Inn from the Cold
**Address:** Calgary 706 7 Avenue S.W. 706 7 Avenue SW, Calgary, Alberta T2P 0Z1
**Phone:** 403-263-8384 (24/7 Helpline)
---
### 13. Feed the Hungry Program
**Provider:** Roman Catholic Diocese of Calgary
**Address:** Calgary 221 18 Avenue SW 221 18 Avenue SW, Calgary, Alberta T2S 0C2
**Phone:** 403-218-5500
---
### 14. Free Meals
**Provider:** Calgary Drop-In Centre
**Address:** 1 Dermot Baldwin Way SE, Calgary, Alberta T2G 0P8
**Phone:** 403-266-3600
---
### 15. Peer Support Centre
**Provider:** Students' Association of Mount Royal University
**Address:** 4825 Mount Royal Gate SW, Calgary, Alberta T3E 6K6
**Phone:** 403-440-6269
---
### 16. Programs and Services at SORCe
**Provider:** SORCe - A Collaboration
**Address:** Calgary 316 7 Avenue SE 316 7 Avenue SE, Calgary, Alberta T2G 0J2
---
### 17. Providing the Essentials
**Provider:** Muslim Families Network Society
**Address:** Calgary 3961 52 Avenue 3961 52 Avenue NE, Calgary, Alberta T3J 0J7
**Phone:** 403-466-6367
---
### 18. Robert McClure United Church Food Pantry
**Provider:** Robert McClure United Church
**Address:** Calgary, 5510 26 Avenue NE 5510 26 Avenue NE, Calgary, Alberta T1Y 6S1
**Phone:** 403-280-9500
---
### 19. Serving Families - East Campus
**Provider:** Salvation Army, The - Calgary
**Address:** 100 - 5115 17 Avenue SE, Calgary, Alberta T2A 0V8
**Phone:** 403-410-1160
---
### 20. Social Services
**Provider:** Fish Creek United Church
**Address:** 77 Deerpoint Road SE, Calgary, Alberta T2J 6W5
**Phone:** 403-278-8263
---
### 21. Specialty Hampers
**Provider:** Calgary Food Bank
**Address:** 5000 11 Street SE, Calgary, Alberta T2H 2Y5
**Phone:** 403-253-2055 (Hamper Requests)
---
### 22. StreetLight
**Provider:** Youth Unlimited
**Address:** Calgary 1725 30 Avenue NE 1725 30 Avenue NE, Calgary, Alberta T2E 7P6
**Phone:** 403-291-3179 (Office)
---
### 23. SU Campus Food Bank
**Provider:** Students' Union, University of Calgary
**Address:** 2500 University Drive NW, Calgary, Alberta T2N 1N4
**Phone:** 403-220-8599
---
### 24. Tummy Tamers - Summer Food Program
**Provider:** Community Kitchen Program of Calgary
**Address:** Calgary, Alberta T2P 2M5
**Phone:** 403-538-7383
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,27 @@
# Canmore - Free Food
_Free food services in the Canmore area._
## Available Services (2)
### 1. Affordability Programs
**Provider:** Family and Community Support Services of Canmore
**Address:** 902 7 Avenue , Canmore, Alberta T1W 3K1
**Phone:** 403-609-7125
---
### 2. Food Hampers and Donations
**Provider:** Bow Valley Food Bank Society
**Address:** 20 Sandstone Terrace , Canmore, Alberta T1W 1K8
**Phone:** 403-678-9488
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Chestermere - Free Food
_Free food services in the Chestermere area._
## Available Services (1)
### 1. Hampers
**Provider:** Chestermere Food Bank
**Address:** Chestermere 100 Rainbow Road 100 Rainbow Road , Chestermere, Alberta T1X 0V2
**Phone:** 403-207-7079
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Crossfield - Free Food
_Free food services in the Crossfield area._
## Available Services (1)
### 1. Food Hamper Programs
**Provider:** Airdrie Food Bank
**Address:** 20 East Lake Way , Airdrie, Alberta T4A 2J3
**Phone:** 403-948-0063
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Davisburg - Free Food
_Free food services in the Davisburg area._
## Available Services (1)
### 1. Food Hampers and Help Yourself Shelf
**Provider:** Okotoks Food Bank Association
**Address:** Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2
**Phone:** 403-651-6629
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# DeWinton - Free Food
_Free food services in the DeWinton area._
## Available Services (1)
### 1. Food Hampers and Help Yourself Shelf
**Provider:** Okotoks Food Bank Association
**Address:** Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2
**Phone:** 403-651-6629
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Dead Man's Flats - Free Food
_Free food services in the Dead Man's Flats area._
## Available Services (1)
### 1. Food Hampers and Donations
**Provider:** Bow Valley Food Bank Society
**Address:** 20 Sandstone Terrace , Canmore, Alberta T1W 1K8
**Phone:** 403-678-9488
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Exshaw - Free Food
_Free food services in the Exshaw area._
## Available Services (1)
### 1. Food Hampers and Donations
**Provider:** Bow Valley Food Bank Society
**Address:** 20 Sandstone Terrace , Canmore, Alberta T1W 1K8
**Phone:** 403-678-9488
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Harvie Heights - Free Food
_Free food services in the Harvie Heights area._
## Available Services (1)
### 1. Food Hampers and Donations
**Provider:** Bow Valley Food Bank Society
**Address:** 20 Sandstone Terrace , Canmore, Alberta T1W 1K8
**Phone:** 403-678-9488
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# High River - Free Food
_Free food services in the High River area._
## Available Services (1)
### 1. High River Food Bank
**Provider:** Salvation Army Foothills Church & Community Ministries, The
**Address:** High River 119 Street SE 119 Centre Street SE, High River, Alberta T1V 1R7
**Phone:** 403-652-2195 Ext 2
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Kananaskis - Free Food
_Free food services in the Kananaskis area._
## Available Services (1)
### 1. Food Hampers and Donations
**Provider:** Bow Valley Food Bank Society
**Address:** 20 Sandstone Terrace , Canmore, Alberta T1W 1K8
**Phone:** 403-678-9488
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Lac Des Arcs - Free Food
_Free food services in the Lac Des Arcs area._
## Available Services (1)
### 1. Food Hampers and Donations
**Provider:** Bow Valley Food Bank Society
**Address:** 20 Sandstone Terrace , Canmore, Alberta T1W 1K8
**Phone:** 403-678-9488
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,15 @@
# Lake Louise - Free Food
_Free food services in the Lake Louise area._
## Available Services (1)
### 1. Food Hampers
**Provider:** Banff Food Bank
**Address:** 455 Cougar Street , Banff, Alberta T1L 1A3
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Langdon - Free Food
_Free food services in the Langdon area._
## Available Services (1)
### 1. Food Hampers
**Provider:** South East Rocky View Food Bank Society
**Address:** 23 Centre Street N, Langdon, Alberta T0J 1X2
**Phone:** 587-585-7378
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Madden - Free Food
_Free food services in the Madden area._
## Available Services (1)
### 1. Food Hamper Programs
**Provider:** Airdrie Food Bank
**Address:** 20 East Lake Way , Airdrie, Alberta T4A 2J3
**Phone:** 403-948-0063
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Okotoks - Free Food
_Free food services in the Okotoks area._
## Available Services (1)
### 1. Food Hampers and Help Yourself Shelf
**Provider:** Okotoks Food Bank Association
**Address:** Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2
**Phone:** 403-651-6629
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Vulcan - Free Food
_Free food services in the Vulcan area._
## Available Services (1)
### 1. Food Hampers
**Provider:** Vulcan Regional Food Bank Society
**Address:** Vulcan 105B 3 Avenue 105B 3 Avenue S, Vulcan, Alberta T0L 2B0
**Phone:** 403-485-2106 Ext. 102
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,444 @@
{
"generated_on": "February 24, 2025",
"file_count": 22,
"listings": [
{
"title": "Beiseker - Free Food",
"description": "Free food services in the Beiseker area.",
"services": [
{
"name": "Food Hamper Programs",
"provider": "Airdrie Food Bank",
"address": "20 East Lake Way , Airdrie, Alberta T4A 2J3",
"phone": "403-948-0063"
}
],
"source_file": "InformAlberta.ca - View List_ Beiseker - Free Food.html"
},
{
"title": "Banff - Free Food",
"description": "Free food services in the Banff area.",
"services": [
{
"name": "Affordability Supports",
"provider": "Family and Community Support Services of Banff",
"address": "110 Bear Street , Banff, Alberta T1L 1A1",
"phone": "403-762-1251"
},
{
"name": "Food Hampers",
"provider": "Banff Food Bank",
"address": "455 Cougar Street , Banff, Alberta T1L 1A3"
}
],
"source_file": "InformAlberta.ca - View List_ Banff - Free Food.html"
},
{
"title": "Crossfield - Free Food",
"description": "Free food services in the Crossfield area.",
"services": [
{
"name": "Food Hamper Programs",
"provider": "Airdrie Food Bank",
"address": "20 East Lake Way , Airdrie, Alberta T4A 2J3",
"phone": "403-948-0063"
}
],
"source_file": "InformAlberta.ca - View List_ Crossfield - Free Food.html"
},
{
"title": "Vulcan - Free Food",
"description": "Free food services in the Vulcan area.",
"services": [
{
"name": "Food Hampers",
"provider": "Vulcan Regional Food Bank Society",
"address": "Vulcan 105B 3 Avenue 105B 3 Avenue S, Vulcan, Alberta T0L 2B0",
"phone": "403-485-2106 Ext. 102"
}
],
"source_file": "InformAlberta.ca - View List_ Vulcan - Free Food.html"
},
{
"title": "Calgary - Free Food",
"description": "Free food services in the Calgary area.",
"services": [
{
"name": "Abundant Life Church's Bread Basket",
"provider": "Abundant Life Church Society",
"address": "3343 49 Street SW, Calgary, Alberta T3E 6M6",
"phone": "403-246-1804"
},
{
"name": "Barbara Mitchell Family Resource Centre",
"provider": "Salvation Army, The - Calgary",
"address": "Calgary 1731 29 Street SW 1731 29 Street SW, Calgary, Alberta T3C 1M6",
"phone": "403-930-2700"
},
{
"name": "Basic Needs Program",
"provider": "Women's Centre of Calgary",
"address": "Calgary 39 4 Street NE 39 4 Street NE, Calgary, Alberta T2E 3R6",
"phone": "403-264-1155"
},
{
"name": "Basic Needs Referrals",
"provider": "Rise Calgary",
"address": "1840 Ranchlands Way NW, Calgary, Alberta T3G 1R4 Calgary 3303 17 Avenue SE 3303 17 Avenue SE, Calgary, Alberta T2A 0R2 7904 43 Avenue NW, Calgary, Alberta T3B 4P9",
"phone": "403-204-8280"
},
{
"name": "Basic Needs Support",
"provider": "Society of Saint Vincent de Paul - Calgary",
"address": "Calgary, Alberta T2P 2M5",
"phone": "403-250-0319"
},
{
"name": "Community Crisis Stabilization Program",
"provider": "Wood's Homes",
"address": "Calgary 112 16 Avenue NE 112 16 Avenue NE, Calgary, Alberta T2E 1J5",
"phone": "1-800-563-6106"
},
{
"name": "Community Food Centre",
"provider": "Alex, The (The Alex Community Health Centre)",
"address": "Calgary 4920 17 Avenue SE 4920 17 Avenue SE, Calgary, Alberta T2A 0V4",
"phone": "403-455-5792"
},
{
"name": "Community Meals",
"provider": "Hope Mission Calgary",
"address": "Calgary 4869 Hubalta Road SE 4869 Hubalta Road SE, Calgary, Alberta T2B 1T5",
"phone": "403-474-3237"
},
{
"name": "Emergency Food Hampers",
"provider": "Calgary Food Bank",
"address": "5000 11 Street SE, Calgary, Alberta T2H 2Y5",
"phone": "403-253-2055 (Hamper Request Line)"
},
{
"name": "Emergency Food Programs",
"provider": "Victory Foundation",
"address": "1840 38 Street SE, Calgary, Alberta T2B 0Z3",
"phone": "403-273-1050 (Call or Text)"
},
{
"name": "Emergency Shelter",
"provider": "Calgary Drop-In Centre",
"address": "1 Dermot Baldwin Way SE, Calgary, Alberta T2G 0P8",
"phone": "403-266-3600"
},
{
"name": "Emergency Shelter",
"provider": "Inn from the Cold",
"address": "Calgary 706 7 Avenue S.W. 706 7 Avenue SW, Calgary, Alberta T2P 0Z1",
"phone": "403-263-8384 (24/7 Helpline)"
},
{
"name": "Feed the Hungry Program",
"provider": "Roman Catholic Diocese of Calgary",
"address": "Calgary 221 18 Avenue SW 221 18 Avenue SW, Calgary, Alberta T2S 0C2",
"phone": "403-218-5500"
},
{
"name": "Free Meals",
"provider": "Calgary Drop-In Centre",
"address": "1 Dermot Baldwin Way SE, Calgary, Alberta T2G 0P8",
"phone": "403-266-3600"
},
{
"name": "Peer Support Centre",
"provider": "Students' Association of Mount Royal University",
"address": "4825 Mount Royal Gate SW, Calgary, Alberta T3E 6K6",
"phone": "403-440-6269"
},
{
"name": "Programs and Services at SORCe",
"provider": "SORCe - A Collaboration",
"address": "Calgary 316 7 Avenue SE 316 7 Avenue SE, Calgary, Alberta T2G 0J2"
},
{
"name": "Providing the Essentials",
"provider": "Muslim Families Network Society",
"address": "Calgary 3961 52 Avenue 3961 52 Avenue NE, Calgary, Alberta T3J 0J7",
"phone": "403-466-6367"
},
{
"name": "Robert McClure United Church Food Pantry",
"provider": "Robert McClure United Church",
"address": "Calgary, 5510 26 Avenue NE 5510 26 Avenue NE, Calgary, Alberta T1Y 6S1",
"phone": "403-280-9500"
},
{
"name": "Serving Families - East Campus",
"provider": "Salvation Army, The - Calgary",
"address": "100 - 5115 17 Avenue SE, Calgary, Alberta T2A 0V8",
"phone": "403-410-1160"
},
{
"name": "Social Services",
"provider": "Fish Creek United Church",
"address": "77 Deerpoint Road SE, Calgary, Alberta T2J 6W5",
"phone": "403-278-8263"
},
{
"name": "Specialty Hampers",
"provider": "Calgary Food Bank",
"address": "5000 11 Street SE, Calgary, Alberta T2H 2Y5",
"phone": "403-253-2055 (Hamper Requests)"
},
{
"name": "StreetLight",
"provider": "Youth Unlimited",
"address": "Calgary 1725 30 Avenue NE 1725 30 Avenue NE, Calgary, Alberta T2E 7P6",
"phone": "403-291-3179 (Office)"
},
{
"name": "SU Campus Food Bank",
"provider": "Students' Union, University of Calgary",
"address": "2500 University Drive NW, Calgary, Alberta T2N 1N4",
"phone": "403-220-8599"
},
{
"name": "Tummy Tamers - Summer Food Program",
"provider": "Community Kitchen Program of Calgary",
"address": "Calgary, Alberta T2P 2M5",
"phone": "403-538-7383"
}
],
"source_file": "InformAlberta.ca - View List_ Calgary - Free Food.html"
},
{
"title": "Exshaw - Free Food",
"description": "Free food services in the Exshaw area.",
"services": [
{
"name": "Food Hampers and Donations",
"provider": "Bow Valley Food Bank Society",
"address": "20 Sandstone Terrace , Canmore, Alberta T1W 1K8",
"phone": "403-678-9488"
}
],
"source_file": "InformAlberta.ca - View List_ Exshaw - Free Food.html"
},
{
"title": "Airdrie - Free Food",
"description": "Free food services in the Airdrie area.",
"services": [
{
"name": "Food Hamper Programs",
"provider": "Airdrie Food Bank",
"address": "20 East Lake Way , Airdrie, Alberta T4A 2J3",
"phone": "403-948-0063"
},
{
"name": "Infant and Parent Support Programs",
"provider": "Airdrie Food Bank",
"address": "20 East Lake Way , Airdrie, Alberta T4A 2J3 403-912-8400 (Alberta Health Services Health Unit)"
}
],
"source_file": "InformAlberta.ca - View List_ Airdrie - Free Food.html"
},
{
"title": "Kananaskis - Free Food",
"description": "Free food services in the Kananaskis area.",
"services": [
{
"name": "Food Hampers and Donations",
"provider": "Bow Valley Food Bank Society",
"address": "20 Sandstone Terrace , Canmore, Alberta T1W 1K8",
"phone": "403-678-9488"
}
],
"source_file": "InformAlberta.ca - View List_ Kananaskis - Free Food.html"
},
{
"title": "Lake Louise - Free Food",
"description": "Free food services in the Lake Louise area.",
"services": [
{
"name": "Food Hampers",
"provider": "Banff Food Bank",
"address": "455 Cougar Street , Banff, Alberta T1L 1A3"
}
],
"source_file": "InformAlberta.ca - View List_ Lake Louise - Free Food.html"
},
{
"title": "High River - Free Food",
"description": "Free food services in the High River area.",
"services": [
{
"name": "High River Food Bank",
"provider": "Salvation Army Foothills Church & Community Ministries, The",
"address": "High River 119 Street SE 119 Centre Street SE, High River, Alberta T1V 1R7",
"phone": "403-652-2195 Ext 2"
}
],
"source_file": "InformAlberta.ca - View List_ High River - Free Food.html"
},
{
"title": "Lac Des Arcs - Free Food",
"description": "Free food services in the Lac Des Arcs area.",
"services": [
{
"name": "Food Hampers and Donations",
"provider": "Bow Valley Food Bank Society",
"address": "20 Sandstone Terrace , Canmore, Alberta T1W 1K8",
"phone": "403-678-9488"
}
],
"source_file": "InformAlberta.ca - View List_ Lac Des Arcs - Free Food.html"
},
{
"title": "Madden - Free Food",
"description": "Free food services in the Madden area.",
"services": [
{
"name": "Food Hamper Programs",
"provider": "Airdrie Food Bank",
"address": "20 East Lake Way , Airdrie, Alberta T4A 2J3",
"phone": "403-948-0063"
}
],
"source_file": "InformAlberta.ca - View List_ Madden - Free Food.html"
},
{
"title": "Canmore - Free Food",
"description": "Free food services in the Canmore area.",
"services": [
{
"name": "Affordability Programs",
"provider": "Family and Community Support Services of Canmore",
"address": "902 7 Avenue , Canmore, Alberta T1W 3K1",
"phone": "403-609-7125"
},
{
"name": "Food Hampers and Donations",
"provider": "Bow Valley Food Bank Society",
"address": "20 Sandstone Terrace , Canmore, Alberta T1W 1K8",
"phone": "403-678-9488"
}
],
"source_file": "InformAlberta.ca - View List_ Canmore - Free Food.html"
},
{
"title": "Langdon - Free Food",
"description": "Free food services in the Langdon area.",
"services": [
{
"name": "Food Hampers",
"provider": "South East Rocky View Food Bank Society",
"address": "23 Centre Street N, Langdon, Alberta T0J 1X2",
"phone": "587-585-7378"
}
],
"source_file": "InformAlberta.ca - View List_ Langdon - Free Food.html"
},
{
"title": "Harvie Heights - Free Food",
"description": "Free food services in the Harvie Heights area.",
"services": [
{
"name": "Food Hampers and Donations",
"provider": "Bow Valley Food Bank Society",
"address": "20 Sandstone Terrace , Canmore, Alberta T1W 1K8",
"phone": "403-678-9488"
}
],
"source_file": "InformAlberta.ca - View List_ Harvie Heights - Free Food.html"
},
{
"title": "Aldersyde - Free Food",
"description": "Free food services in the Aldersyde area.",
"services": [
{
"name": "Food Hampers and Help Yourself Shelf",
"provider": "Okotoks Food Bank Association",
"address": "Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2",
"phone": "403-651-6629"
}
],
"source_file": "InformAlberta.ca - View List_ Aldersyde - Free Food.html"
},
{
"title": "Dead Man's Flats - Free Food",
"description": "Free food services in the Dead Man's Flats area.",
"services": [
{
"name": "Food Hampers and Donations",
"provider": "Bow Valley Food Bank Society",
"address": "20 Sandstone Terrace , Canmore, Alberta T1W 1K8",
"phone": "403-678-9488"
}
],
"source_file": "InformAlberta.ca - View List_ Dead Man's Flats - Free Food.html"
},
{
"title": "Balzac - Free Food",
"description": "Free food services in the Balzac area.",
"services": [
{
"name": "Food Hamper Programs",
"provider": "Airdrie Food Bank",
"address": "20 East Lake Way , Airdrie, Alberta T4A 2J3",
"phone": "403-948-0063"
}
],
"source_file": "InformAlberta.ca - View List_ Balzac - Free Food.html"
},
{
"title": "Okotoks - Free Food",
"description": "Free food services in the Okotoks area.",
"services": [
{
"name": "Food Hampers and Help Yourself Shelf",
"provider": "Okotoks Food Bank Association",
"address": "Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2",
"phone": "403-651-6629"
}
],
"source_file": "InformAlberta.ca - View List_ Okotoks - Free Food.html"
},
{
"title": "Chestermere - Free Food",
"description": "Free food services in the Chestermere area.",
"services": [
{
"name": "Hampers",
"provider": "Chestermere Food Bank",
"address": "Chestermere 100 Rainbow Road 100 Rainbow Road , Chestermere, Alberta T1X 0V2",
"phone": "403-207-7079"
}
],
"source_file": "InformAlberta.ca - View List_ Chestermere - Free Food.html"
},
{
"title": "DeWinton - Free Food",
"description": "Free food services in the DeWinton area.",
"services": [
{
"name": "Food Hampers and Help Yourself Shelf",
"provider": "Okotoks Food Bank Association",
"address": "Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2",
"phone": "403-651-6629"
}
],
"source_file": "InformAlberta.ca - View List_ DeWinton - Free Food.html"
},
{
"title": "Davisburg - Free Food",
"description": "Free food services in the Davisburg area.",
"services": [
{
"name": "Food Hampers and Help Yourself Shelf",
"provider": "Okotoks Food Bank Association",
"address": "Okotoks 220 Stockton Avenue 220 Stockton Avenue , Okotoks, Alberta T1S 1B2",
"phone": "403-651-6629"
}
],
"source_file": "InformAlberta.ca - View List_ Davisburg - Free Food.html"
}
]
}

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Bashaw - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301257|rpid=-1166155791|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Bashaw - Free Food
</span>
<div id="viewCartDescription">Free food services in the Bashaw area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021533" href="" onclick="setMailListLink('Bashaw - Free Food', '1021533', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021533')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1016811">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012157">Bashaw and District Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Bashaw 4909 50 Street</b>&nbsp;&nbsp;&nbsp;4909 50 Street , Bashaw, Alberta T0B 0H0
<br/>780-372-4074
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Bowden - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301258|rpid=1900736447|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Bowden - Free Food
</span>
<div id="viewCartDescription">Free food services in the Bowden area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021534" href="" onclick="setMailListLink('Bowden - Free Food', '1021534', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021534')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1039101">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1026701">Innisfail and Area Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Innisfail 4303 50 Street</b>&nbsp;&nbsp;&nbsp;4303 50 Street , Innisfail, Alberta T4G 1B6
<br/>403-505-8890
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,284 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Camrose - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301259|rpid=1265108124|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Camrose - Free Food
</span>
<div id="viewCartDescription">Free food services in the Camrose area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021535" href="" onclick="setMailListLink('Camrose - Free Food', '1021535', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021535')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1016701">Food Bank</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012051">Camrose Neighbour Aid Centre</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Camrose Neighbour Aid Centre</b>&nbsp;&nbsp;&nbsp;4524 54 Street , Camrose, Alberta T4V 1X8
<br/>780-679-3220
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1066747">Martha's Table</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012051">Camrose Neighbour Aid Centre</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Camrose United Church</b>&nbsp;&nbsp;&nbsp;4829 50 Street , Camrose, Alberta T4V 1P6
<br/>780-679-3220
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Castor - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655305164|rpid=575819192|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Castor - Free Food
</span>
<div id="viewCartDescription">Free food services in the Castor area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021954" href="" onclick="setMailListLink('Castor - Free Food', '1021954', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021954')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1077807">Food Bank and Silent Santa</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1037035">Family and Community Support Services of Castor and District</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Castor 4903 51 Street</b>&nbsp;&nbsp;&nbsp;4903 51 Street , Castor, Alberta T0C 0X0
<br/>403-882-2115
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Clandonald - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301260|rpid=954283848|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Clandonald - Free Food
</span>
<div id="viewCartDescription">Free food services in the Clandonald area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021536" href="" onclick="setMailListLink('Clandonald - Free Food', '1021536', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021536')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Coronation - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655304201|rpid=-1786014014|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Coronation - Free Food
</span>
<div id="viewCartDescription">Free food services in the Coronation area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021852" href="" onclick="setMailListLink('Coronation - Free Food', '1021852', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021852')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1077402">Emergency Food Hampers and Christmas Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1049327">Coronation and District Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Coronation 5002 Municipal Road</b>&nbsp;&nbsp;&nbsp;5002 Municipal Road , Coronation, Alberta T0C 1C0
<br/>403-578-3020
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Derwent - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301261|rpid=1948965243|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Derwent - Free Food
</span>
<div id="viewCartDescription">Free food services in the Derwent area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021537" href="" onclick="setMailListLink('Derwent - Free Food', '1021537', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021537')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Dewberry - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301262|rpid=-465159326|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Dewberry - Free Food
</span>
<div id="viewCartDescription">Free food services in the Dewberry area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021538" href="" onclick="setMailListLink('Dewberry - Free Food', '1021538', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021538')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Eckville - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301263|rpid=-266684340|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Eckville - Free Food
</span>
<div id="viewCartDescription">Free food services in the Eckville area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021539" href="" onclick="setMailListLink('Eckville - Free Food', '1021539', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021539')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1076901">Eckville Food Bank</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012502">Family and Community Support Services of Eckville</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Eckville Town Office</b>&nbsp;&nbsp;&nbsp;5023 51 Avenue , Eckville, Alberta T0M 0X0
<br/>403-746-3177
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Elnora - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301285|rpid=96747578|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Elnora - Free Food
</span>
<div id="viewCartDescription">Free food services in the Elnora area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021540" href="" onclick="setMailListLink('Elnora - Free Food', '1021540', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021540')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1016653">Community Programming and Supports</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012002">Family and Community Support Services of Elnora</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Elnora Village Office</b>&nbsp;&nbsp;&nbsp;219 Main Street , Elnora, Alberta T0M 0Y0
<br/>403-773-3920
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Flagstaff - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655386691|rpid=-1113303652|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Flagstaff - Free Food
</span>
<div id="viewCartDescription">Offers food hampers for those in need.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1024101" href="" onclick="setMailListLink('Flagstaff - Free Food', '1024101', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1024101')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1083643">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048578">Flagstaff Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Killam 5014 46 Street</b>&nbsp;&nbsp;&nbsp;5014 46 Street , Killam, Alberta T0B 2L0
<br/>780-385-0810
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Hairy Hill - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301286|rpid=-1687114099|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Hairy Hill - Free Food
</span>
<div id="viewCartDescription">Free food services in the Hairy Hill area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021541" href="" onclick="setMailListLink('Hairy Hill - Free Food', '1021541', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021541')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075706">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048529">Vegreville Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vegreville 5129 52 Avenue</b>&nbsp;&nbsp;&nbsp;5129 52 Avenue , Vegreville, Alberta T9C 1M2
<br/>780-208-6002
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Hanna - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301287|rpid=-679022530|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Hanna - Free Food
</span>
<div id="viewCartDescription">Free food services in the Hanna area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021542" href="" onclick="setMailListLink('Hanna - Free Food', '1021542', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021542')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074501">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047537">Hanna Food Bank Association</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Hanna Provincial Building</b>&nbsp;&nbsp;&nbsp;401 Centre Street , Hanna, Alberta T0J 1P0
<br/>403-854-8501
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Innisfail - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301288|rpid=-1281241187|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Innisfail - Free Food
</span>
<div id="viewCartDescription">Free food services in the Innisfail area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021543" href="" onclick="setMailListLink('Innisfail - Free Food', '1021543', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021543')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1039101">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1026701">Innisfail and Area Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Innisfail 4303 50 Street</b>&nbsp;&nbsp;&nbsp;4303 50 Street , Innisfail, Alberta T4G 1B6
<br/>403-505-8890
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,274 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Innisfree - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301289|rpid=1661364080|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Innisfree - Free Food
</span>
<div id="viewCartDescription">Free food services in the Innisfree area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021544" href="" onclick="setMailListLink('Innisfree - Free Food', '1021544', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021544')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075706">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048529">Vegreville Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vegreville 5129 52 Avenue</b>&nbsp;&nbsp;&nbsp;5129 52 Avenue , Vegreville, Alberta T9C 1M2
<br/>780-208-6002
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Kitscoty - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301290|rpid=-1507501372|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Kitscoty - Free Food
</span>
<div id="viewCartDescription">Free food services in the Kitscoty area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021545" href="" onclick="setMailListLink('Kitscoty - Free Food', '1021545', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021545')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,314 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Lacombe - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301291|rpid=-237722166|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Lacombe - Free Food
</span>
<div id="viewCartDescription">Free food services in the Lacombe area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021546" href="" onclick="setMailListLink('Lacombe - Free Food', '1021546', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021546')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1073402">Circle of Friends Community Supper</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1046877">Bethel Christian Reformed Church</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Lacombe 5704 51 Avenue</b>&nbsp;&nbsp;&nbsp;5704 51 Avenue , Lacombe, Alberta T4L 1K8
<br/>403-782-6400
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1017051">Community Information and Referral</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012351">Family and Community Support Services of Lacombe and District</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Lacombe Memorial Centre</b>&nbsp;&nbsp;&nbsp;5214 50 Avenue , Lacombe, Alberta T4L 0B6
<br/>403-782-6637
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1017052">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012401">Lacombe Community Food Bank and Thrift Store</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Adventist Community Services Centre</b>&nbsp;&nbsp;&nbsp;5225 53 Street , Lacombe, Alberta T4L 1H8
<br/>403-782-6777
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,269 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Lamont - Free food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655304045|rpid=1276709668|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Lamont - Free food
</span>
<div id="viewCartDescription">Free food services in the Lamont area. </div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021801" href="" onclick="setMailListLink('Lamont - Free food', '1021801', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021801')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1077351">Christmas Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1049082">County of Lamont Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Lamont Hall</b>&nbsp;&nbsp;&nbsp;4844 49 Street , Lamont, Alberta T0B 2R0
<br/>780-619-6955
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1077200">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1049082">County of Lamont Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Lamont Alliance Church</b>&nbsp;&nbsp;&nbsp;5007 44 Street , Lamont, Alberta T0B 2R0
<br/>780-619-6955
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Lavoy - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301292|rpid=-1011569902|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Lavoy - Free Food
</span>
<div id="viewCartDescription">Free food services in the Lavoy area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021547" href="" onclick="setMailListLink('Lavoy - Free Food', '1021547', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021547')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075706">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048529">Vegreville Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vegreville 5129 52 Avenue</b>&nbsp;&nbsp;&nbsp;5129 52 Avenue , Vegreville, Alberta T9C 1M2
<br/>780-208-6002
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Mannville - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301316|rpid=-1727078313|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Mannville - Free Food
</span>
<div id="viewCartDescription">Free food services in the Mannville area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021550" href="" onclick="setMailListLink('Mannville - Free Food', '1021550', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021550')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Minburn - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301317|rpid=-1833607610|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Minburn - Free Food
</span>
<div id="viewCartDescription">Free food services in the Minburn area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021551" href="" onclick="setMailListLink('Minburn - Free Food', '1021551', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021551')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Myrnam - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301318|rpid=-1918380705|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Myrnam - Free Food
</span>
<div id="viewCartDescription">Free food services in the Myrnam area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021552" href="" onclick="setMailListLink('Myrnam - Free Food', '1021552', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021552')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Paradise Valley - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301319|rpid=668722257|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Paradise Valley - Free Food
</span>
<div id="viewCartDescription">Free food services in the Paradise Valley area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021553" href="" onclick="setMailListLink('Paradise Valley - Free Food', '1021553', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021553')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Ranfurly - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301294|rpid=-1032203098|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Ranfurly - Free Food
</span>
<div id="viewCartDescription">Free food services in the Ranfurly area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021549" href="" onclick="setMailListLink('Ranfurly - Free Food', '1021549', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021549')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075706">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048529">Vegreville Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vegreville 5129 52 Avenue</b>&nbsp;&nbsp;&nbsp;5129 52 Avenue , Vegreville, Alberta T9C 1M2
<br/>780-208-6002
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,589 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Red Deer - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655301320|rpid=1744503691|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Red Deer - Free Food
</span>
<div id="viewCartDescription">Free food services in the Red Deer area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021554" href="" onclick="setMailListLink('Red Deer - Free Food', '1021554', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021554')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075705">Community Impact Centre</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048528">Mustard Seed - Red Deer</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Red Deer 6002 54 Avenue</b>&nbsp;&nbsp;&nbsp;6002 54 Avenue , Red Deer, Alberta T4N 4M8
<br/>1-888-448-4673
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1066107">Food Bank</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1023507">Salvation Army Church and Community Ministries - Red Deer</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Salvation Army Church, Red Deer</b>&nbsp;&nbsp;&nbsp;4837 54 Street , Red Deer, Alberta T4N 2G5
<br/>403-346-2251
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1035252">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1023602">Red Deer Christmas Bureau Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Red Deer 4630 61 Street</b>&nbsp;&nbsp;&nbsp;4630 61 Street , Red Deer, Alberta T4N 2R2
<br/>403-347-2210
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1066108">Free Baked Goods</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1023507">Salvation Army Church and Community Ministries - Red Deer</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Salvation Army Church, Red Deer</b>&nbsp;&nbsp;&nbsp;4837 54 Street , Red Deer, Alberta T4N 2G5
<br/>403-346-2251
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1035802">Hamper Program</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1024153">Red Deer Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Red Deer 7429 49 Avenue</b>&nbsp;&nbsp;&nbsp;7429 49 Avenue , Red Deer, Alberta T4P 1N2
<br/>403-346-1505 (Hamper Request)
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1066105">Seniors Lunch</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1023507">Salvation Army Church and Community Ministries - Red Deer</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Salvation Army Church, Red Deer</b>&nbsp;&nbsp;&nbsp;4837 54 Street , Red Deer, Alberta T4N 2G5
<br/>403-346-2251
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1035809">Soup Kitchen</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1024159">Red Deer Soup Kitchen</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Red Deer 5014 49 Street</b>&nbsp;&nbsp;&nbsp;5014 49 Street , Red Deer, Alberta T4N 1V5
<br/>403-341-4470
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1035402">Students' Association</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1023751">Red Deer Polytechnic</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Red Deer Polytechnic</b>&nbsp;&nbsp;&nbsp;100 College Boulevard , Red Deer, Alberta T4N 5H5
<br/>403-342-3200
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074203">The Kitchen</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047477">Potter's Hands Ministries</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Red Deer 4935 51 Street</b>&nbsp;&nbsp;&nbsp;4935 51 Street , Red Deer, Alberta T4N 2A8
<br/>403-309-4246
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Rimbey - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300360|rpid=-936798774|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Rimbey - Free Food
</span>
<div id="viewCartDescription">Free food services in the Rimbey area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021455" href="" onclick="setMailListLink('Rimbey - Free Food', '1021455', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021455')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1068102">Rimbey Food Bank</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012652">Family and Community Support Services of Rimbey</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Rimbey Provincial Building and Courthouse</b>&nbsp;&nbsp;&nbsp;5025 55 Street , Rimbey, Alberta T0C 2J0
<br/>403-843-2030
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Rocky Mountain House - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300361|rpid=1318058095|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Rocky Mountain House - Free Food
</span>
<div id="viewCartDescription">Free food services in the Rocky Mountain House area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021456" href="" onclick="setMailListLink('Rocky Mountain House - Free Food', '1021456', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021456')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1073764">Activities and Events</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1037553">Asokewin Friendship Centre</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Asokewin Friendship Centre</b>&nbsp;&nbsp;&nbsp;4917 52 Street , Rocky Mountain House, Alberta T4T 1B4
<br/>403-845-2788
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Ryley - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300362|rpid=27642179|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Ryley - Free Food
</span>
<div id="viewCartDescription">Free food services in the Ryley area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021457" href="" onclick="setMailListLink('Ryley - Free Food', '1021457', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021457')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074058">Food Distribution</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047277">Tofield Ryley and Area Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Tofield 5204 50 Street</b>&nbsp;&nbsp;&nbsp;5204 50 Street , Tofield, Alberta T0B 4J0
<br/>780-662-3511
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,270 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Sundre - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300363|rpid=213163667|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Sundre - Free Food
</span>
<div id="viewCartDescription">Free food services in the Sundre area.
</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021458" href="" onclick="setMailListLink('Sundre - Free Food', '1021458', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021458')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1073202">Food Access and Meals</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1046727">Sundre Church of the Nazarene</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Main Avenue Fellowship</b>&nbsp;&nbsp;&nbsp;402 Main Avenue W, Sundre, Alberta T0M 1X0
<br/>403-636-0554
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1066319">Sundre Santas</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1012654">Greenwood Neighbourhood Place Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Sundre Community Centre</b>&nbsp;&nbsp;&nbsp;96 2 Avenue NW, Sundre, Alberta T0M 1X0
<br/>403-638-1011
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Tofield - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300386|rpid=1814697056|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Tofield - Free Food
</span>
<div id="viewCartDescription">Free food services in the Tofield area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021460" href="" onclick="setMailListLink('Tofield - Free Food', '1021460', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021460')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074058">Food Distribution</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047277">Tofield Ryley and Area Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Tofield 5204 50 Street</b>&nbsp;&nbsp;&nbsp;5204 50 Street , Tofield, Alberta T0B 4J0
<br/>780-662-3511
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Two Hills - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300387|rpid=-1920182251|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Two Hills - Free Food
</span>
<div id="viewCartDescription">Free food services in the Two Hills area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021461" href="" onclick="setMailListLink('Two Hills - Free Food', '1021461', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021461')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075706">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048529">Vegreville Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vegreville 5129 52 Avenue</b>&nbsp;&nbsp;&nbsp;5129 52 Avenue , Vegreville, Alberta T9C 1M2
<br/>780-208-6002
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Vegreville - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300388|rpid=-489283101|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Vegreville - Free Food
</span>
<div id="viewCartDescription">Free food services in the Vegreville area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021462" href="" onclick="setMailListLink('Vegreville - Free Food', '1021462', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021462')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075706">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048529">Vegreville Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vegreville 5129 52 Avenue</b>&nbsp;&nbsp;&nbsp;5129 52 Avenue , Vegreville, Alberta T9C 1M2
<br/>780-208-6002
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,224 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Vermilion - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300390|rpid=440091763|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Vermilion - Free Food
</span>
<div id="viewCartDescription">Free food services in the Vermilion area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021464" href="" onclick="setMailListLink('Vermilion - Free Food', '1021464', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021464')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1074759">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1047929">Vermilion Food Bank</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Holy Name Parish</b>&nbsp;&nbsp;&nbsp;4620 53 Avenue , Vermilion, Alberta T9X 1S2
<br/>780-853-5161
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,229 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN">
<html>
<head>
<title>InformAlberta.ca - View List: Willingdon - Free Food</title>
<!--Stylesheets-->
<script type="text/javascript" src="/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js" data-dtconfig="app=462c49bd12680deb|cuc=gbtj2s4a|agentId=e64fd5a24df782c|mel=100000|featureHash=ICA7NVfqrux|dpvc=1|lastModification=1738962421628|tp=500,50,0|rdnt=1|uxrgce=1|agentUri=/public/dynatrace/ruxitagentjs_ICA7NVfqrux_10305250107141607.js|reportUrl=/rb_d0aa993c-a520-4059-88fe-ca5a4b30cda6|rid=RID_1655300389|rpid=128360739|domain=informalberta.ca"></script><link href="../../iaStyleCHRColors.css" title="teds" rel="stylesheet" type="text/css">
<link href="../../iaSearchStyle.css" rel="stylesheet" type="text/css">
<link href="../../iaSublistStyle.css" rel="stylesheet" type="text/css">
<!--END Stylesheets-->
<!--Prototype and Scriptaculous for Effects-->
<script type="text/javascript" src="../../js/prototype.js"></script>
<script type="text/javascript" src="../../js/scriptaculous.js"></script>
<!--END Prototype and Scriptaculous-->
<!--All Javascript used in this page goes within script tag below-->
<script type="text/javascript" src="../../js/ia.js"></script>
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
</head>
<body>
<form name="ia_public" method="post" action="/public/common/index_Search.do">
<div id="container">
<div id="mainLogo">
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
<link rel="manifest" href="../../site.webmanifest">
<!-- Google Analytics tracking -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M471F5PELL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M471F5PELL');
</script>
<!-- END Google Analytics tracking -->
<div id="homePage">
<a href="../../public/common/index_ClearSearch.do" id="homeLink"/><i>InformAlberta Home</i></a>
</div>
<span id="isAuthenticatedOrHigher" style="display:none;">false</span>
<span class="topLogIn"><a href="../common/logIn.do">Log In</a></span>
<span class="topLogIn linkPurple">|</span>
<span class="topLogIn"><a href="../common/disclaimerRegistration.jsp">Register</a></span>
<a href="../../public/common/viewCart.do">
<span class="viewListGreen">view list</span>
<span id="topCartIcon"><img src="../../images_public/ia_style/viewlist.gif" alt="view list" border="0"/></span>
</a>
<span id="topCartCount">(0)</span>
<div id="navMenu">
<a href="../../" id="backToResultsLink"><i>Back To Results</i></a>
<a href="../../public/common/index_ClearSearch.do" id="startNewSearchLink"><i>Start New Search</i></a>
<a href="../../public/common/initializeDirectoryList.do" id="directoriesLink"><i>Directories</i></a>
</div>
</div>
<div class="clear">&nbsp;</div>
<div id="topLeftLists">
<span class="listTitleGreen">
Willingdon - Free Food
</span>
<div id="viewCartDescription">Free food services in the Willingdon area.</div>
</div>
<div >
<!--spacer to take up room equal to "make a copy"-->
<img src="../../images_public/ia_style/placeholderIcon_85.gif" alt=""/>
</div>
<div id="legend">
<img src="../../images_public/ia_style/Legend.gif" alt="legend:" style="vertical-align:bottom;"/>
<input type="image" name="service" src="../../images_public/ia_style/Service.gif"
onclick="return popUpSOLDefinition('servicePopUpPage.jsp')"
alt="service" style="vertical-align:bottom;"></input>
<input type="image" name="organization" src="../../images_public/ia_style/Organization.gif"
onclick="return popUpSOLDefinition('organizationPopUp.jsp')"
alt="organization" style="vertical-align:bottom;"></input>
<input type="image" name="location" src="../../images_public/ia_style/Location.gif"
onclick="return popUpSOLDefinition('locationPopUp.jsp')"
alt="location" style="vertical-align:bottom;"></input>
<span class="addToCartLink"><a id="mailListLink1021463" href="" onclick="setMailListLink('Willingdon - Free Food', '1021463', '' +'/public/common/viewSublist.do?cartId=');">
<img class="printIcon" src="../../images_public/ia_style/email2.gif" alt="Email list" title="email list" border="0"/>e-mail</a></span>
<span class="purpleSep">|</span>
<a href="#" onclick="return popUpPrintPage('../../public/common/printList.do?cartId=1021463')">
<img class="printIcon" src="../../images_public/ia_style/printer_friendly2.gif" alt="print List" title="print list" border="0"/>print version
</a>
</div>
<div class="clear">&nbsp;</div>
<div id="mainSearch">
<div id="sublistMain">
<table width="100%" align="left">
<!--Build Service links when SERVICE Type encountered-->
<tr>
<td width="50%">
<table class="bottomBorderSearchResult">
<tr>
<td colspan="2">
<img src="../../images_public/SOL/org_1_small.gif" alt="service" align="bottom" title="Service"/>
<span class="solLink">
<a href="../service/serviceProfileStyled.do?serviceQueryId=1075706">Food Hampers</a>
</span>
<span style="padding-left:10px;" class="label">Provided by:</span>
<span class="orgTitle">
<a href="../organization/orgProfileStyled.do?organizationQueryId=1048529">Vegreville Food Bank Society</a>
</span>
</td>
</tr>
<tr>
<td>
<b>Vegreville 5129 52 Avenue</b>&nbsp;&nbsp;&nbsp;5129 52 Avenue , Vegreville, Alberta T9C 1M2
<br/>780-208-6002
<br/>
<br/>
</td>
</tr>
</table>
<br/>
</td>
</tr>
<!--Build Location links when LOCATION Type encountered-->
<!--Build Organization links when ORGANIZATION Type encountered-->
</table>
</div>
<div class="clear">&nbsp;</div>
</div>
<div id="footer">
<div class="footerLinks">
<a href="../../public/common/aboutUs.do">About Us</a>&nbsp;|&nbsp;
<a href="../../public/common/disclaimer.do">Disclaimer</a>&nbsp;|&nbsp;
<a href="../../public/common/partnersRegions.do">Partners</a>&nbsp;|&nbsp;
<a href="../../public/common/taxonomyDefinitionTop.do" onclick="return popUpTaxonomyDefinition(this)">Browse Subject</a>&nbsp;|&nbsp;
<a href="../../public/common/gettingListed.do">Getting Listed</a>&nbsp;|&nbsp;
<a href="../../public/common/updating.do">Updating</a>&nbsp;|&nbsp;
<a href="../../public/common/iaHelp.do">Help</a>&nbsp;|&nbsp;
<!-- a href="http://guest.cvent.com/v.aspx?1A,Q3,8ba841f1-125c-47c9-852a-04303f456dde">Feedback</a-->
<a href="../../public/common/contactUs.do">Contact Us</a>
</div>
</div>
</div>
</form>
</body>
</html>

View File

@ -0,0 +1,277 @@
#!/usr/bin/env python3
import os
import sys
import json
from datetime import datetime
from bs4 import BeautifulSoup
def extract_data(html_content):
"""Extract service information from the HTML content."""
soup = BeautifulSoup(html_content, 'html.parser')
# Get the list title - more robust handling
list_title_element = soup.find('span', class_='listTitleGreen')
list_title = list_title_element.text.strip() if list_title_element else "Unknown List"
# Get description - more robust handling
description_element = soup.find('div', id='viewCartDescription')
list_description = description_element.text.strip() if description_element else ""
# Find all service entries
services = []
service_tables = soup.find_all('table', class_='bottomBorderSearchResult')
if not service_tables:
# Try alternative approach - look for other patterns in the HTML
service_divs = soup.find_all('div', class_='searchResult')
if service_divs:
for div in service_divs:
service = parse_service_div(div)
if service:
services.append(service)
else:
for table in service_tables:
service = parse_service_table(table)
if service:
services.append(service)
return {
'title': list_title,
'description': list_description,
'services': services
}
def parse_service_table(table):
"""Parse a service from a table element - with error handling."""
service = {}
try:
# Get service name
service_link_span = table.find('span', class_='solLink')
if service_link_span:
service_link = service_link_span.find('a')
if service_link:
service['name'] = service_link.text.strip()
elif service_link_span.text:
service['name'] = service_link_span.text.strip()
# Get provider organization
org_span = table.find('span', class_='orgTitle')
if org_span:
org_link = org_span.find('a')
if org_link:
service['provider'] = org_link.text.strip()
elif org_span.text:
service['provider'] = org_span.text.strip()
# Get address and contact info
rows = table.find_all('tr')
if len(rows) > 1:
contact_cell = rows[1].find('td')
if contact_cell:
contact_text = contact_cell.get_text(strip=True, separator="\n")
lines = [line.strip() for line in contact_text.split('\n') if line.strip()]
# Extract address and phone
if lines:
address_parts = []
phone = ""
for line in lines:
if any(marker in line for marker in ['Alberta', 'T7N', 'Street', 'Avenue', 'Road']):
address_parts.append(line)
elif any(c.isdigit() for c in line) and ('-' in line or line.startswith('780')):
phone = line
if address_parts:
service['address'] = ' '.join(address_parts)
elif lines:
service['address'] = lines[0]
if phone:
service['phone'] = phone
except Exception as e:
print(f"Warning: Error parsing service table: {e}")
# Only return the service if we at least have a name
return service if service.get('name') else None
def parse_service_div(div):
"""Alternative parser for different HTML structure."""
service = {}
try:
# Look for service name
name_element = div.find(['h3', 'h4', 'strong', 'b']) or div.find('a')
if name_element:
service['name'] = name_element.text.strip()
# Look for provider info
provider_element = div.find('div', class_='provider') or div.find('p', class_='provider')
if provider_element:
service['provider'] = provider_element.text.strip()
# Look for address/contact
contact_div = div.find('div', class_='contact') or div.find('p')
if contact_div:
contact_text = contact_div.get_text(strip=True, separator="\n")
lines = [line.strip() for line in contact_text.split('\n') if line.strip()]
if lines:
for line in lines:
if any(marker in line for marker in ['Alberta', 'T7N', 'Street', 'Avenue', 'Road']):
service['address'] = line
elif any(c.isdigit() for c in line) and ('-' in line or any(prefix in line for prefix in ['780', '403', '587', '825'])):
service['phone'] = line
except Exception as e:
print(f"Warning: Error parsing service div: {e}")
# Return service if we have at least a name
return service if service.get('name') else None
def generate_markdown(data, current_date):
"""Generate markdown from the extracted data."""
markdown = f"# {data['title']}\n\n"
if data['description']:
markdown += f"_{data['description']}_\n\n"
if not data['services']:
markdown += "## No services found\n\n"
markdown += "_No service information could be extracted from this file._\n\n"
else:
markdown += f"## Available Services ({len(data['services'])})\n\n"
for i, service in enumerate(data['services'], 1):
markdown += f"### {i}. {service.get('name', 'Unknown Service')}\n\n"
if service.get('provider'):
markdown += f"**Provider:** {service['provider']}\n\n"
if service.get('address'):
markdown += f"**Address:** {service['address']}\n\n"
if service.get('phone'):
markdown += f"**Phone:** {service['phone']}\n\n"
markdown += "---\n\n"
markdown += f"_Generated on: {current_date}_"
return markdown
def create_output_directory(base_dir, output_dir_name):
"""Create output directory if it doesn't exist."""
output_path = os.path.join(base_dir, output_dir_name)
if not os.path.exists(output_path):
try:
os.makedirs(output_path)
print(f"Created output directory: {output_path}")
except Exception as e:
print(f"Error creating output directory: {e}")
return None
else:
print(f"Using existing output directory: {output_path}")
return output_path
def process_directory(current_date, output_dir_name="markdown_output"):
"""Process all HTML files in the current directory."""
base_dir = os.getcwd()
print(f"Processing HTML files in: {base_dir}")
# Create output directory
output_dir = create_output_directory(base_dir, output_dir_name)
if not output_dir:
return False
# Find all HTML files
html_files = [f for f in os.listdir(base_dir) if f.lower().endswith('.html')]
if not html_files:
print("No HTML files found in the current directory")
return False
successful_conversions = 0
all_data = [] # To collect data for JSON export
for html_file in html_files:
input_path = os.path.join(base_dir, html_file)
output_filename = html_file.rsplit('.', 1)[0] + '.md'
output_path = os.path.join(output_dir, output_filename)
try:
with open(input_path, 'r', encoding='utf-8') as f:
html_content = f.read()
data = extract_data(html_content)
# Add source filename to data for JSON export
data['source_file'] = html_file
all_data.append(data)
# Generate and save markdown
markdown = generate_markdown(data, current_date)
with open(output_path, 'w', encoding='utf-8') as f:
f.write(markdown)
print(f"Converted {html_file} to {output_filename}")
successful_conversions += 1
except Exception as e:
print(f"Error processing {html_file}: {str(e)}")
# Try to create a basic markdown file with error information
try:
error_md = f"# Error Processing: {html_file}\n\n"
error_md += f"An error occurred while processing this file: {str(e)}\n\n"
error_md += f"_Generated on: {current_date}_"
with open(output_path, 'w', encoding='utf-8') as f:
f.write(error_md)
print(f"Created error report markdown for {html_file}")
except:
print(f"Could not create error report for {html_file}")
# Generate consolidated JSON file
if successful_conversions > 0:
json_data = {
"generated_on": current_date,
"file_count": successful_conversions,
"listings": all_data
}
json_path = os.path.join(output_dir, "all_services.json")
try:
with open(json_path, 'w', encoding='utf-8') as f:
json.dump(json_data, f, indent=2)
print(f"Generated consolidated JSON file: {json_path}")
except Exception as e:
print(f"Error creating JSON file: {e}")
print(f"\nSummary: Successfully converted {successful_conversions} out of {len(html_files)} HTML files")
print(f"Files saved to: {output_dir}")
return True
def main():
# Parse command line arguments
output_dir_name = "markdown_output" # Default output directory name
current_date = datetime.now().strftime("%B %d, %Y")
# Check for custom arguments
if len(sys.argv) > 1:
for arg in sys.argv[1:]:
if arg.startswith("--output="):
output_dir_name = arg.split("=")[1]
elif not arg.startswith("--"):
current_date = arg
if process_directory(current_date, output_dir_name):
print("\nBatch conversion completed!")
else:
sys.exit(1)
if __name__ == "__main__":
main()

View File

@ -0,0 +1,17 @@
# Bashaw - Free Food
_Free food services in the Bashaw area._
## Available Services (1)
### 1. Food Hampers
**Provider:** Bashaw and District Food Bank
**Address:** Bashaw 4909 50 Street 4909 50 Street , Bashaw, Alberta T0B 0H0
**Phone:** 780-372-4074
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Bowden - Free Food
_Free food services in the Bowden area._
## Available Services (1)
### 1. Food Hampers
**Provider:** Innisfail and Area Food Bank
**Address:** Innisfail 4303 50 Street 4303 50 Street , Innisfail, Alberta T4G 1B6
**Phone:** 403-505-8890
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,27 @@
# Camrose - Free Food
_Free food services in the Camrose area._
## Available Services (2)
### 1. Food Bank
**Provider:** Camrose Neighbour Aid Centre
**Address:** 4524 54 Street , Camrose, Alberta T4V 1X8
**Phone:** 780-679-3220
---
### 2. Martha's Table
**Provider:** Camrose Neighbour Aid Centre
**Address:** 4829 50 Street , Camrose, Alberta T4V 1P6
**Phone:** 780-679-3220
---
_Generated on: February 24, 2025_

View File

@ -0,0 +1,17 @@
# Castor - Free Food
_Free food services in the Castor area._
## Available Services (1)
### 1. Food Bank and Silent Santa
**Provider:** Family and Community Support Services of Castor and District
**Address:** Castor 4903 51 Street 4903 51 Street , Castor, Alberta T0C 0X0
**Phone:** 403-882-2115
---
_Generated on: February 24, 2025_

Some files were not shown because too many files have changed in this diff Show More