bible_gateway 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +0 -2
- data/.gitignore +15 -3
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/{LICENSE → LICENSE.txt} +3 -1
- data/README.md +42 -0
- data/Rakefile +4 -44
- data/bible_gateway.gemspec +22 -48
- data/lib/bible_gateway.rb +21 -13
- data/lib/bible_gateway/version.rb +3 -0
- data/spec/bible_gateway_spec.rb +41 -21
- data/spec/fixtures/john_1_1.html +899 -409
- data/spec/fixtures/john_3.html +1148 -0
- data/spec/spec_helper.rb +12 -15
- metadata +123 -48
- data/README.rdoc +0 -42
data/.document
CHANGED
data/.gitignore
CHANGED
data/.rspec
ADDED
data/Gemfile
ADDED
data/{LICENSE → LICENSE.txt}
RENAMED
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# BibleGateway
|
2
|
+
|
3
|
+
An unofficial 'API' for BibleGateway.com.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'bible_gateway'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install bible_gateway
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
BibleGateway.versions # available versions
|
22
|
+
|
23
|
+
b = BibleGateway.new # defaults to :king_james_version, but can be initialized to different version
|
24
|
+
b.version = :english_standard_version
|
25
|
+
b.lookup('John 1:1') # => "<h4>John 1</h4>\n<h5>The Word Became Flesh</h5> <sup>1</sup> In the beginning was the Word, and the Word was with God, and the Word was God."
|
26
|
+
|
27
|
+
## Todo
|
28
|
+
|
29
|
+
* Add other versions that are available
|
30
|
+
|
31
|
+
## Contributing
|
32
|
+
|
33
|
+
1. Fork it
|
34
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
35
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
36
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
37
|
+
5. Create new Pull Request
|
38
|
+
|
39
|
+
## Copyright
|
40
|
+
|
41
|
+
See [LICENSE](License.txt) for details.
|
42
|
+
Most Bible translations are copyrighted. Please see [BibleGateway.com](http://biblegateway.com) for more information.
|
data/Rakefile
CHANGED
@@ -1,47 +1,7 @@
|
|
1
|
-
require
|
2
|
-
require '
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require 'rspec/core/rake_task'
|
3
3
|
|
4
|
-
|
5
|
-
require 'jeweler'
|
6
|
-
Jeweler::Tasks.new do |gem|
|
7
|
-
gem.name = "bible_gateway"
|
8
|
-
gem.summary = %Q{An unofficial 'API' for BibleGateway.com.}
|
9
|
-
gem.email = "gdagley@gmail.com"
|
10
|
-
gem.homepage = "http://github.com/gdagley/bible_gateway"
|
11
|
-
gem.authors = ["Geoffrey Dagley"]
|
12
|
-
gem.add_development_dependency "rspec"
|
13
|
-
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
14
|
-
end
|
15
|
-
rescue LoadError
|
16
|
-
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
17
|
-
end
|
18
|
-
|
19
|
-
require 'spec/rake/spectask'
|
20
|
-
Spec::Rake::SpecTask.new(:spec) do |spec|
|
21
|
-
spec.libs << 'lib' << 'spec'
|
22
|
-
spec.spec_files = FileList['spec/**/*_spec.rb']
|
23
|
-
end
|
24
|
-
|
25
|
-
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
26
|
-
spec.libs << 'lib' << 'spec'
|
27
|
-
spec.pattern = 'spec/**/*_spec.rb'
|
28
|
-
spec.rcov = true
|
29
|
-
end
|
30
|
-
|
31
|
-
task :spec => :check_dependencies
|
4
|
+
RSpec::Core::RakeTask.new('spec')
|
32
5
|
|
6
|
+
# If you want to make this the default task
|
33
7
|
task :default => :spec
|
34
|
-
|
35
|
-
require 'rake/rdoctask'
|
36
|
-
Rake::RDocTask.new do |rdoc|
|
37
|
-
if File.exist?('VERSION')
|
38
|
-
version = File.read('VERSION')
|
39
|
-
else
|
40
|
-
version = ""
|
41
|
-
end
|
42
|
-
|
43
|
-
rdoc.rdoc_dir = 'rdoc'
|
44
|
-
rdoc.title = "bible_gateway #{version}"
|
45
|
-
rdoc.rdoc_files.include('README*')
|
46
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
47
|
-
end
|
data/bible_gateway.gemspec
CHANGED
@@ -1,53 +1,27 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'bible_gateway/version'
|
5
5
|
|
6
|
-
Gem::Specification.new do |
|
7
|
-
|
8
|
-
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "bible_gateway"
|
8
|
+
spec.version = BibleGateway::VERSION
|
9
|
+
spec.authors = ["Geoffrey Dagley"]
|
10
|
+
spec.email = ["gdagley@gmail.com"]
|
11
|
+
spec.description = %q{An unofficial 'API' for BibleGateway.com.}
|
12
|
+
spec.summary = %q{An unofficial 'API' for BibleGateway.com.}
|
13
|
+
spec.homepage = "https://github.com/gdagley/bible_gateway"
|
14
|
+
spec.license = "MIT"
|
9
15
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
s.extra_rdoc_files = [
|
15
|
-
"LICENSE",
|
16
|
-
"README.rdoc"
|
17
|
-
]
|
18
|
-
s.files = [
|
19
|
-
".document",
|
20
|
-
".gitignore",
|
21
|
-
"LICENSE",
|
22
|
-
"README.rdoc",
|
23
|
-
"Rakefile",
|
24
|
-
"VERSION",
|
25
|
-
"bible_gateway.gemspec",
|
26
|
-
"lib/bible_gateway.rb",
|
27
|
-
"spec/bible_gateway_spec.rb",
|
28
|
-
"spec/fixtures/john_1_1.html",
|
29
|
-
"spec/spec_helper.rb"
|
30
|
-
]
|
31
|
-
s.homepage = %q{http://github.com/gdagley/bible_gateway}
|
32
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
33
|
-
s.require_paths = ["lib"]
|
34
|
-
s.rubygems_version = %q{1.3.5}
|
35
|
-
s.summary = %q{An unofficial 'API' for BibleGateway.com.}
|
36
|
-
s.test_files = [
|
37
|
-
"spec/bible_gateway_spec.rb",
|
38
|
-
"spec/spec_helper.rb"
|
39
|
-
]
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
40
20
|
|
41
|
-
|
42
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
43
|
-
s.specification_version = 3
|
21
|
+
spec.add_dependency "nokogiri"
|
44
22
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
end
|
50
|
-
else
|
51
|
-
s.add_dependency(%q<rspec>, [">= 0"])
|
52
|
-
end
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
spec.add_development_dependency "webmock"
|
53
27
|
end
|
data/lib/bible_gateway.rb
CHANGED
@@ -1,12 +1,14 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
require 'bible_gateway/version'
|
1
3
|
require 'open-uri'
|
2
4
|
require 'nokogiri'
|
3
5
|
|
4
6
|
class BibleGatewayError < StandardError; end
|
5
|
-
|
7
|
+
|
6
8
|
class BibleGateway
|
7
9
|
GATEWAY_URL = "http://www.biblegateway.com"
|
8
|
-
|
9
|
-
VERSIONS = {
|
10
|
+
|
11
|
+
VERSIONS = {
|
10
12
|
:new_international_version => "NIV",
|
11
13
|
:new_american_standard_bible => "NASB",
|
12
14
|
:the_message => "MSG",
|
@@ -28,17 +30,17 @@ class BibleGateway
|
|
28
30
|
:new_international_version_uk => "NIVUK",
|
29
31
|
:todays_new_international_version => "TNIV",
|
30
32
|
}
|
31
|
-
|
33
|
+
|
32
34
|
def self.versions
|
33
35
|
VERSIONS.keys
|
34
36
|
end
|
35
|
-
|
37
|
+
|
36
38
|
attr_accessor :version
|
37
|
-
|
39
|
+
|
38
40
|
def initialize(version = :king_james_version)
|
39
41
|
self.version = version
|
40
42
|
end
|
41
|
-
|
43
|
+
|
42
44
|
def version=(version)
|
43
45
|
raise BibleGatewayError, 'Unsupported version' unless VERSIONS.keys.include? version
|
44
46
|
@version = version
|
@@ -47,7 +49,7 @@ class BibleGateway
|
|
47
49
|
def lookup(passage)
|
48
50
|
doc = Nokogiri::HTML(open(passage_url(passage)))
|
49
51
|
scrape_passage(doc)
|
50
|
-
end
|
52
|
+
end
|
51
53
|
|
52
54
|
private
|
53
55
|
def passage_url(passage)
|
@@ -55,17 +57,23 @@ class BibleGateway
|
|
55
57
|
end
|
56
58
|
|
57
59
|
def scrape_passage(doc)
|
58
|
-
|
60
|
+
container = doc.css('div#content')
|
61
|
+
title = container.css('h1')[0].content
|
59
62
|
segment = doc.at('div.result-text-style-normal')
|
60
|
-
segment.search('sup.
|
63
|
+
segment.search('sup.crossreference').remove # remove cross reference links
|
61
64
|
segment.search('sup.footnote').remove # remove footnote links
|
62
65
|
segment.search("div.crossrefs").remove # remove cross references
|
63
66
|
segment.search("div.footnotes").remove # remove footnotes
|
64
|
-
segment.search(
|
67
|
+
segment.search("span.text").each do |span|
|
65
68
|
text = span.content
|
66
|
-
span.swap
|
69
|
+
span.swap text
|
70
|
+
end
|
71
|
+
|
72
|
+
segment.search('sup.versenum').each do |sup|
|
73
|
+
text = sup.content
|
74
|
+
sup.swap "<sup>#{text}</sup>"
|
67
75
|
end
|
68
76
|
content = segment.inner_html.gsub('<p></p>', '').gsub(/<!--.*?-->/, '').strip
|
69
77
|
{:title => title, :content => content }
|
70
78
|
end
|
71
|
-
end
|
79
|
+
end
|
data/spec/bible_gateway_spec.rb
CHANGED
@@ -1,21 +1,22 @@
|
|
1
|
-
|
1
|
+
# coding: utf-8
|
2
|
+
require "spec_helper"
|
2
3
|
|
3
4
|
describe BibleGateway do
|
4
|
-
it
|
5
|
+
it "should have a list of versions" do
|
5
6
|
BibleGateway.versions.should_not be_empty
|
6
7
|
end
|
7
|
-
|
8
|
-
describe
|
8
|
+
|
9
|
+
describe "setting the version" do
|
9
10
|
it "should have a default version" do
|
10
11
|
gateway = BibleGateway.new
|
11
12
|
gateway.version.should == :king_james_version
|
12
13
|
end
|
13
|
-
|
14
|
+
|
14
15
|
it "should be able to set the version to use" do
|
15
16
|
gateway = BibleGateway.new :english_standard_version
|
16
17
|
gateway.version.should == :english_standard_version
|
17
18
|
end
|
18
|
-
|
19
|
+
|
19
20
|
it "should raise an exception for unknown version" do
|
20
21
|
lambda { BibleGateway.new :unknown_version }.should raise_error(BibleGatewayError)
|
21
22
|
end
|
@@ -31,23 +32,42 @@ describe BibleGateway do
|
|
31
32
|
lambda { gateway.version = :unknown_version }.should raise_error(BibleGatewayError)
|
32
33
|
end
|
33
34
|
end
|
34
|
-
|
35
|
+
|
35
36
|
describe "lookup" do
|
36
|
-
|
37
|
-
|
38
|
-
|
37
|
+
context "verse" do
|
38
|
+
before do
|
39
|
+
stub_get "http://www.biblegateway.com/passage/?search=John%201:1&version=ESV", "john_1_1.html"
|
40
|
+
end
|
41
|
+
|
42
|
+
it "should find the passage title" do
|
43
|
+
title = BibleGateway.new(:english_standard_version).lookup("John 1:1")[:title]
|
44
|
+
title.should == "John 1:1 (English Standard Version)"
|
45
|
+
end
|
46
|
+
|
47
|
+
it "should find and clean the passage content" do
|
48
|
+
content = BibleGateway.new(:english_standard_version).lookup("John 1:1")[:content]
|
49
|
+
content.should include("<h3>The Word Became Flesh</h3>")
|
50
|
+
content.should include("In the beginning was the Word, and the Word was with God, and the Word was God.")
|
51
|
+
end
|
39
52
|
end
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
53
|
+
|
54
|
+
context "chapter" do
|
55
|
+
before do
|
56
|
+
stub_get "http://www.biblegateway.com/passage/?search=John%203&version=ESV", "john_3.html"
|
57
|
+
end
|
58
|
+
|
59
|
+
it "should find the passage title" do
|
60
|
+
title = BibleGateway.new(:english_standard_version).lookup("John 3")[:title]
|
61
|
+
title.should == "John 3 (English Standard Version)"
|
62
|
+
end
|
63
|
+
|
64
|
+
it "should find and clean the passage content" do
|
65
|
+
content = BibleGateway.new(:english_standard_version).lookup("John 3")[:content]
|
66
|
+
content.should include("<h3>You Must Be Born Again</h3>")
|
67
|
+
content.should include("<h3>For God So Loved the World</h3>")
|
68
|
+
content.should include("For God so loved the world,that he gave his only Son, that whoever believes in him should not perish but have eternal life.")
|
69
|
+
end
|
50
70
|
end
|
51
71
|
end
|
52
|
-
|
72
|
+
|
53
73
|
end
|
data/spec/fixtures/john_1_1.html
CHANGED
@@ -1,34 +1,41 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Date: Tue, 08 Sep 2009 20:20:53 GMT
|
3
|
-
Server: Apache/2.0
|
4
|
-
X-Powered-By: PHP/4.4.7
|
5
|
-
Set-Cookie: bg_id=986c85fbc4411d7452042f9587c06a4f; path=/; domain=.biblegateway.com
|
6
|
-
Vary: Accept-Encoding
|
7
|
-
Transfer-Encoding: chunked
|
8
|
-
Content-Type: text/html; charset=UTF-8
|
9
|
-
|
10
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
11
2
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
12
3
|
<head>
|
13
|
-
<title>John 1:1 - Passage Lookup - English Standard Version - BibleGateway.com</title>
|
14
|
-
<link rel="canonical" href="http://www.biblegateway.com/passage/?search=John+1%3A1&version=ESV" />
|
15
4
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
16
|
-
<
|
17
|
-
<link rel="
|
18
|
-
<
|
5
|
+
<title>John 1:1 ESV - The Word Became Flesh - In the - Bible Gateway</title>
|
6
|
+
<link rel="canonical" href="http://www.biblegateway.com/passage/?search=John+1%3A1&version=ESV" />
|
7
|
+
<meta property="og:title" content="Bible Gateway passage: John 1:1 - English Standard Version"/>
|
8
|
+
<meta property="og:type" content="bible_passage"/>
|
9
|
+
<meta property="og:url" content="http://www.biblegateway.com/passage/?search=John+1%3A1&version=ESV"/>
|
10
|
+
<meta property="og:image" content="http://static5.bgcdn.com/images/logos/logo_transbg-50.png"/>
|
11
|
+
<meta property="og:site_name" content="Bible Gateway"/>
|
12
|
+
<meta property="og:description" content="The Word Became Flesh - In the beginning was the Word, and the Word was with God, and the Word was God."/>
|
13
|
+
<meta name="twitter:card" content="summary" />
|
14
|
+
<meta name="twitter:site" content="@biblegateway" />
|
15
|
+
<meta name="twitter:url" content="http://www.biblegateway.com/passage/?search=John+1%3A1&version=ESV" />
|
16
|
+
<meta name="twitter:title" content="John 1:1 (ESV)" />
|
17
|
+
<meta name="twitter:description" content="The Word Became Flesh - In the beginning was the Word, and the Word was with God, and the Word was God." />
|
18
|
+
<meta name="description" content="The Word Became Flesh - In the beginning was the Word, and the Word was with God, and the Word was God." />
|
19
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="application-name" content="BibleGateway" /><meta name="msapplication-tooltip" content="A searchable online Bible in over 100 versions and 50 languages" /><meta name="msapplication-starturl" content="/" /><meta name="msapplication-task" content="name=Passage Lookup;action-uri=http://www.biblegateway.com/passage/;icon-uri=/favicon.ico" /><meta name="msapplication-task" content="name=Keyword Search;action-uri=http://www.biblegateway.com/keyword/;icon-uri=/favicon.ico" /><meta name="msapplication-task" content="name=Topical Index;action-uri=http://www.biblegateway.com/topical/;icon-uri=/favicon.ico" /><meta name="msapplication-task" content="name=Reading Plans;action-uri=http://www.biblegateway.com/reading-plans/;icon-uri=/favicon.ico" />
|
20
|
+
|
21
|
+
<link rel="favorite icon" href="http://static5.bgcdn.com/favicon.ico" type="image/x-icon" />
|
22
|
+
<link rel="search" type="application/opensearchdescription+xml" title="Bible Gateway" href="http://static5.bgcdn.com/resources/opensearch/bgsearch.xml?4d1ef6e8">
|
19
23
|
<!-- STYLESHEETS -->
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
<link rel="
|
24
|
-
<
|
25
|
-
<link rel="
|
26
|
-
<
|
27
|
-
|
28
|
-
|
29
|
-
<link rel="
|
30
|
-
|
31
|
-
|
24
|
+
<link rel="stylesheet" type="text/css" media="screen" href="http://static5.bgcdn.com/includes/css/bg.min.css?4d1ef6e8" />
|
25
|
+
<link rel="stylesheet" type="text/css" media="print" href="http://static5.bgcdn.com/includes/css/print.min.css?4d1ef6e8" />
|
26
|
+
|
27
|
+
<link rel="stylesheet" type="text/css" media="handheld" href="http://static5.bgcdn.com/includes/css/handheld.css" />
|
28
|
+
<meta name="viewport" content="width=980"/>
|
29
|
+
<link rel="alternate" type="application/atom+xml" title="Verse of the day feed" href="http://www.biblegateway.com/votd/get/?format=atom&version=ESV" />
|
30
|
+
<style type="text/css">
|
31
|
+
</style>
|
32
|
+
|
33
|
+
<link rel="apple-touch-icon" href="http://static5.bgcdn.com/images/apple-touch-icon.png?4d1ef6e8"/>
|
34
|
+
|
35
|
+
<!-- JAVASCRIPT -->
|
36
|
+
<script type="text/javascript" src='//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
|
37
|
+
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js"></script>
|
38
|
+
<script type="text/javascript">
|
32
39
|
// <![CDATA[
|
33
40
|
var prefs = new Array;
|
34
41
|
|
@@ -36,43 +43,32 @@ prefs['searches_includeapocrypha'] = 'no';
|
|
36
43
|
prefs['fontsize'] = 'medium';
|
37
44
|
prefs['language'] = 'en';
|
38
45
|
prefs['default_version_display'] = 'all';
|
39
|
-
prefs['default_version'] = '
|
46
|
+
prefs['default_version'] = 'ESV';
|
40
47
|
prefs['default_version_overrides'] = 'no';
|
41
48
|
prefs['quicksearch_search'] = '';
|
42
|
-
prefs['pslookup_search1'] = '';
|
43
|
-
prefs['pslookup_search2'] = '';
|
44
|
-
prefs['pslookup_search3'] = '';
|
45
|
-
prefs['pslookup_search4'] = '';
|
46
|
-
prefs['pslookup_search5'] = '';
|
47
|
-
prefs['pslookup_version1'] = '31';
|
48
|
-
prefs['pslookup_version2'] = '';
|
49
|
-
prefs['pslookup_version3'] = '';
|
50
|
-
prefs['pslookup_version4'] = '';
|
51
|
-
prefs['pslookup_version5'] = '';
|
52
49
|
prefs['pslookup_language1'] = 'en';
|
53
50
|
prefs['pslookup_language2'] = '';
|
54
51
|
prefs['pslookup_language3'] = '';
|
55
52
|
prefs['pslookup_language4'] = '';
|
56
53
|
prefs['pslookup_language5'] = '';
|
54
|
+
prefs['pslookup_count'] = '1';
|
57
55
|
prefs['pslookup_showmoresearches'] = 'closed';
|
58
56
|
prefs['pslookup_showversions'] = 'open';
|
59
57
|
prefs['pslookup_showmoreversions'] = 'closed';
|
60
58
|
prefs['pslookup_showoptions'] = 'open';
|
61
59
|
prefs['pslookup_showfootnotes'] = 'yes';
|
62
|
-
prefs['pslookup_showxrefs'] = '
|
60
|
+
prefs['pslookup_showxrefs'] = 'no';
|
63
61
|
prefs['pslookup_showwoj'] = 'no';
|
64
|
-
prefs['
|
65
|
-
prefs['
|
62
|
+
prefs['pslookup_showversenums'] = 'yes';
|
63
|
+
prefs['pslookup_showheadings'] = 'yes';
|
64
|
+
prefs['pslookup_showindent'] = 'no';
|
65
|
+
prefs['pslookup_multilayout'] = 'columns';
|
66
|
+
prefs['pslookup_multisort'] = 'passage';
|
66
67
|
prefs['pslookup_embed-versenum'] = 'true';
|
67
68
|
prefs['pslookup_embed-xref'] = 'false';
|
68
69
|
prefs['pslookup_embed-footnote'] = 'false';
|
69
70
|
prefs['pslookup_embed-heading'] = 'false';
|
70
71
|
prefs['keysearch_search'] = '';
|
71
|
-
prefs['keysearch_version1'] = '31';
|
72
|
-
prefs['keysearch_version2'] = '';
|
73
|
-
prefs['keysearch_version3'] = '';
|
74
|
-
prefs['keysearch_version4'] = '';
|
75
|
-
prefs['keysearch_version5'] = '';
|
76
72
|
prefs['keysearch_language1'] = 'en';
|
77
73
|
prefs['keysearch_language'] = 'en';
|
78
74
|
prefs['keysearch_bookset'] = '';
|
@@ -99,400 +95,894 @@ prefs['audio_chapter'] = '';
|
|
99
95
|
prefs['dict_source'] = '1';
|
100
96
|
prefs['dict_search'] = '';
|
101
97
|
prefs['dict_search_type'] = 'any';
|
98
|
+
prefs['pslookup_search1'] = '';
|
99
|
+
prefs['pslookup_search2'] = '';
|
100
|
+
prefs['pslookup_search3'] = '';
|
101
|
+
prefs['pslookup_search4'] = '';
|
102
|
+
prefs['pslookup_search5'] = '';
|
103
|
+
prefs['pslookup_version1'] = 'NIV';
|
104
|
+
prefs['pslookup_version2'] = '';
|
105
|
+
prefs['pslookup_version3'] = '';
|
106
|
+
prefs['pslookup_version4'] = '';
|
107
|
+
prefs['pslookup_version5'] = '';
|
108
|
+
prefs['keysearch_version1'] = '31';
|
109
|
+
prefs['keysearch_version2'] = '';
|
110
|
+
prefs['keysearch_version3'] = '';
|
111
|
+
prefs['keysearch_version4'] = '';
|
112
|
+
prefs['keysearch_version5'] = '';
|
113
|
+
mobile = false;
|
102
114
|
if (document.images) { self.name = 'bgmain'; }
|
103
115
|
// ]]>
|
104
116
|
|
105
|
-
function slideleft() {
|
106
|
-
elements = document.getElementsByTagName('body');
|
107
|
-
body = elements[0];
|
108
|
-
body.style.left = '100px';
|
109
|
-
console.log('moved?');
|
110
|
-
}
|
111
117
|
</script>
|
112
|
-
</head>
|
113
118
|
|
114
|
-
|
115
|
-
<
|
116
|
-
<a name='intersite'></a>
|
119
|
+
<!-- Google Analytics -->
|
120
|
+
<script type="text/javascript">
|
117
121
|
|
122
|
+
var _gaq = _gaq || [];
|
123
|
+
_gaq.push(['_setAccount', 'UA-3008784-8']);
|
124
|
+
_gaq.push(['_trackPageview']);
|
125
|
+
_gaq.push(['_trackPageLoadTime']);
|
126
|
+
_gaq.push(['_setDomainName', '.biblegateway.com']);
|
118
127
|
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
</div>
|
128
|
+
(function() {
|
129
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
130
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
131
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
132
|
+
})();
|
125
133
|
|
134
|
+
</script>
|
135
|
+
<script type="text/javascript">
|
136
|
+
var addthis_share = {'templates' : {'twitter' : 'The Word Became Flesh - In the beginning was the Word, and the Word was with...John 1:1 {{url}} from #BibleGateway'}}
|
137
|
+
var addthis_config = {'data_ga_property' : 'UA-3008784-8', 'data_ga_social' : true}
|
138
|
+
</script>
|
139
|
+
<script type="text/javascript" src="//s7.addthis.com/js/250/addthis_widget.js#pubid=xa-4e31fda0070abf8c"></script>
|
140
|
+
<script type="text/javascript" src="http://static5.bgcdn.com/includes/javascript/scripts.min.js?4d1ef6e8"></script><script type='text/javascript'>
|
141
|
+
var googletag = googletag || {};
|
142
|
+
googletag.cmd = googletag.cmd || [];
|
143
|
+
(function() {
|
144
|
+
var gads = document.createElement('script');
|
145
|
+
gads.async = true;
|
146
|
+
gads.type = 'text/javascript';
|
147
|
+
var useSSL = 'https:' == document.location.protocol;
|
148
|
+
gads.src = (useSSL ? 'https:' : 'http:') +
|
149
|
+
'//www.googletagservices.com/tag/js/gpt.js';
|
150
|
+
var node = document.getElementsByTagName('script')[0];
|
151
|
+
node.parentNode.insertBefore(gads, node);
|
152
|
+
})();
|
153
|
+
</script>
|
126
154
|
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
<
|
144
|
-
|
145
|
-
<a href="/passage/index.php?search=John%201:1&version=ESV" style="font-size:16px;" title="large"
|
146
|
-
class="unselected" onclick="setUpdatePrefs('fontsize','large');">A</a>
|
147
|
-
<a href="/passage/index.php?search=John%201:1&version=ESV" style="font-size:18px;" title="extra large"
|
148
|
-
class="unselected" onclick="setUpdatePrefs('fontsize','xlarge');">A</a>
|
149
|
-
</td>
|
150
|
-
|
151
|
-
<!-- LANGUAGE OPTIONS -->
|
152
|
-
<td>
|
153
|
-
<form method="post" action="/languages/update.php">
|
154
|
-
<input type="hidden" name="url" value="/passage/index.php?search=John%201:1&version=ESV" />
|
155
|
-
<img src="http://static.bgcdn.com/languages/en/images/flag.gif" alt="en" />
|
156
|
-
<select name="language" class="txt-sm" onchange="setUpdatePrefs('language',this.value); this.form.submit();">
|
157
|
-
<option value='en' selected="selected">English (EN) </option><option value='es' >Español (ES) </option></select>
|
158
|
-
<noscript>
|
159
|
-
<input type="image" src="/images/search_button.gif" />
|
160
|
-
</noscript>
|
161
|
-
</form>
|
162
|
-
</td>
|
163
|
-
</tr></table>
|
164
|
-
|
165
|
-
<!-- PAGE OPTIONS -->
|
166
|
-
<div id="page-options">
|
167
|
-
|
168
|
-
<!--
|
169
|
-
<a href="/share/index.php?url=%2Fpassage%2Findex.php%3Fsearch%3DJohn%25201%3A1%26version%3DESV">
|
170
|
-
<img src="/images/buttons/email_sm.gif" width="12" height="10" alt="" />
|
171
|
-
Email this page</a>
|
172
|
-
-->
|
173
|
-
<a href="/passage/index.php?search=John%201:1&version=ESV&interface=print" rel="nofollow">
|
174
|
-
» Printer-friendly page</a>
|
175
|
-
<a href="http://mobile.biblegateway.com/passage/index.php?search=John%201:1&version=ESV" rel="nofollow">
|
176
|
-
» Mobile-friendly page</a>
|
155
|
+
<script type='text/javascript'>
|
156
|
+
googletag.cmd.push(function() {
|
157
|
+
googletag.pubads().enableSingleRequest();
|
158
|
+
googletag.enableServices();
|
159
|
+
});
|
160
|
+
var BGOasPositions = [];
|
161
|
+
BGOasPositions.push('Top');
|
162
|
+
BGOasPositions.push('Left1');
|
163
|
+
var BGOasPage = 'bible-esv-http';
|
164
|
+
var oasUrl = 'http://oascentral.salemweb.net/RealMedia/ads/';
|
165
|
+
var oasSite = 'www.biblegateway.com';
|
166
|
+
var oasSitePage = oasSite + '/' + BGOasPage;
|
167
|
+
var oasPositionList = BGOasPositions.join(',');
|
168
|
+
var oasQuery = window.location.search.length > 1 ? window.location.search.substr(1) : '';
|
169
|
+
var oasRandom = Math.floor(Math.random() * 1E9);
|
170
|
+
var oasAd = function (position) { if (typeof (OAS_RICH) != 'undefined') OAS_RICH(position); };
|
171
|
+
document.write('<scr' + 'ipt type="text/javascript" src="' + oasUrl + 'adstream_mjx.ads/' + oasSitePage + '/1' + oasRandom + '@' + oasPositionList + '?' + oasQuery + '"></scr' + 'ipt>');
|
172
|
+
</script>
|
177
173
|
|
178
|
-
</
|
174
|
+
</head>
|
179
175
|
|
180
|
-
<
|
181
|
-
<
|
176
|
+
<body class="with-alert">
|
177
|
+
<div class="max_width">
|
178
|
+
<div class="min_width">
|
179
|
+
<div id="banner">
|
180
|
+
<!-- BRAND -->
|
181
|
+
<div id="brand">
|
182
|
+
<h1>
|
183
|
+
<a href="/">Bible Gateway</a>
|
184
|
+
</h1>
|
185
|
+
</div>
|
186
|
+
<!-- FONT OPTIONS -->
|
187
|
+
<div id="controls">
|
182
188
|
|
189
|
+
<div class="text-controls">
|
190
|
+
<a href="/languages/update/?url=%2Fpassage%2F%3Fsearch%3Djohn%25201%3A1%26version%3DESV&language=es" onclick="changeLanguages('es', true); return false;" >En Español</a>
|
191
|
+
</div>
|
192
|
+
<div id="font-change-controls" class="text-controls">
|
193
|
+
<a href="#" style="font-size:10px;" title="extra small"
|
194
|
+
onclick="changeFontSize('xsmall', 'medium');return false;">A</a>
|
195
|
+
<a href="#" style="font-size:12px;" title="small"
|
196
|
+
onclick="changeFontSize('small', 'medium');return false;">A</a>
|
197
|
+
<a href="#" style="font-size:14px;" title="medium"
|
198
|
+
class="selected" onclick="changeFontSize('medium', 'medium');return false;">A</a>
|
199
|
+
<a href="#" style="font-size:16px;" title="large"
|
200
|
+
onclick="changeFontSize('large', 'medium');return false;">A</a>
|
201
|
+
<a href="#" style="font-size:18px;" title="extra large"
|
202
|
+
onclick="changeFontSize('xlarge', 'medium');return false;">A</a>
|
203
|
+
</div>
|
204
|
+
<div id="print-control">
|
205
|
+
<a href="/passage/?search=john%201:1&version=ESV&interface=print" title="Printer-friendly page" rel="nofollow">
|
206
|
+
<img src="http://static5.bgcdn.com/images/icons/icon-printer.png?4d1ef6e8" alt="Printer-friendly page" />
|
207
|
+
</a>
|
208
|
+
</div>
|
209
|
+
|
210
|
+
<div id="mobile-control">
|
211
|
+
<a href="http://mobile.biblegateway.com/passage/?search=john%201:1&version=ESV" title="Mobile-friendly page" rel="nofollow">
|
212
|
+
<img src="http://static5.bgcdn.com/images/icons/icon-mobile.png?4d1ef6e8" alt="Mobile-friendly page"/>
|
213
|
+
</a>
|
214
|
+
</div>
|
215
|
+
</div>
|
216
|
+
<div class="txt-sm" id="social-media-links">
|
217
|
+
<div class="social-media-text">Follow us</div>
|
218
|
+
<div class="social-media-imgs">
|
219
|
+
<a rel="nofollow" href="https://twitter.com/biblegateway" target="_blank" title="Bible Gateway on Twitter"><img src="http://static5.bgcdn.com/images/social/21_twitter.png" alt="Bible Gateway on Twitter" /></a>
|
220
|
+
<a rel="nofollow" href="https://www.facebook.com/BibleGateway" target="_blank" title="Bible Gateway on Facebook"><img src="http://static5.bgcdn.com/images/social/21_fb.png" alt="Bible Gateway on Facebook" /></a>
|
221
|
+
<a rel="nofollow" href="https://plus.google.com/+BibleGateway/" target="_blank" title="Bible Gateway on Google+"><img src="http://static5.bgcdn.com/images/social/21_gplus.png" alt="Bible Gateway on Google+" /></a>
|
222
|
+
</div>
|
223
|
+
</div>
|
224
|
+
</div>
|
225
|
+
<div id="body" class="passage-body">
|
183
226
|
<!-- SITE NAVIGATION -->
|
184
|
-
|
185
|
-
<
|
186
|
-
<
|
187
|
-
<
|
188
|
-
<
|
189
|
-
<
|
190
|
-
<
|
191
|
-
<
|
192
|
-
|
193
|
-
|
194
|
-
<
|
195
|
-
<
|
196
|
-
<
|
197
|
-
<
|
198
|
-
<
|
199
|
-
<
|
200
|
-
|
201
|
-
</
|
202
|
-
|
227
|
+
|
228
|
+
<div id="main-col-wrapper">
|
229
|
+
<div id="main-col">
|
230
|
+
<div id="search-box">
|
231
|
+
<div id='search-main'>
|
232
|
+
<div id='search-header'>
|
233
|
+
<div id='search-title' class="txt-big">Search</div>
|
234
|
+
<span id='search-info' class="txt-sm">Enter the Bible passage<strong> (e.g., John 3:16)</strong>, keyword<strong> (e.g., Jesus, prophet,
|
235
|
+
etc.)</strong> or topic <strong>(e.g., salvation)</strong></span>
|
236
|
+
</div>
|
237
|
+
<form action='/quicksearch/' id='quick-search-form' method='get'>
|
238
|
+
<input id="search" name="quicksearch" type="text" value="john 1:1" />
|
239
|
+
<select class="translation-dropdown" name="qs_version" onchange="setUpdatePrefs('default_version',this.value)"><option class="lang" value="AMU">---Amuzgo de Guerrero (AMU)---</option>
|
240
|
+
<option value="AMU" >Amuzgo de Guerrero</option>
|
241
|
+
<option class="spacer" value="AMU"> </option>
|
242
|
+
<option class="lang" value="ERV-AR">---العربية (AR)---</option>
|
243
|
+
<option value="ERV-AR" >Arabic Bible: Easy-to-Read Version</option>
|
244
|
+
<option value="ALAB" >Arabic Life Application Bible</option>
|
245
|
+
<option class="spacer" value="ALAB"> </option>
|
246
|
+
<option class="lang" value="ERV-AWA">---अवधी (AWA)---</option>
|
247
|
+
<option value="ERV-AWA" >Awadhi Bible: Easy-to-Read Version</option>
|
248
|
+
<option class="spacer" value="ERV-AWA"> </option>
|
249
|
+
<option class="lang" value="BG1940">---Български (BG)---</option>
|
250
|
+
<option value="BG1940" >1940 Bulgarian Bible</option>
|
251
|
+
<option value="BULG" >Bulgarian Bible</option>
|
252
|
+
<option value="ERV-BG" >Bulgarian New Testament: Easy-to-Read Version</option>
|
253
|
+
<option value="BPB" >Bulgarian Protestant Bible</option>
|
254
|
+
<option class="spacer" value="BPB"> </option>
|
255
|
+
<option class="lang" value="CCO">---Chinanteco de Comaltepec (CCO)---</option>
|
256
|
+
<option value="CCO" >Chinanteco de Comaltepec</option>
|
257
|
+
<option class="spacer" value="CCO"> </option>
|
258
|
+
<option class="lang" value="APSD-CEB">---Cebuano (CEB)---</option>
|
259
|
+
<option value="APSD-CEB" >Ang Pulong Sa Dios</option>
|
260
|
+
<option class="spacer" value="APSD-CEB"> </option>
|
261
|
+
<option class="lang" value="CHR">---ᏣᎳᎩ ᎦᏬᏂᎯᏍ (CHR)---</option>
|
262
|
+
<option value="CHR" >Cherokee New Testament</option>
|
263
|
+
<option class="spacer" value="CHR"> </option>
|
264
|
+
<option class="lang" value="CKW">---Cakchiquel Occidental (CKW)---</option>
|
265
|
+
<option value="CKW" >Cakchiquel Occidental</option>
|
266
|
+
<option class="spacer" value="CKW"> </option>
|
267
|
+
<option class="lang" value="B21">---Čeština (CS)---</option>
|
268
|
+
<option value="B21" >Bible 21</option>
|
269
|
+
<option value="SNC" >Slovo na cestu</option>
|
270
|
+
<option class="spacer" value="SNC"> </option>
|
271
|
+
<option class="lang" value="BPH">---Dansk (DA)---</option>
|
272
|
+
<option value="BPH" >Bibelen på hverdagsdansk</option>
|
273
|
+
<option value="DN1933" >Dette er Biblen på dansk</option>
|
274
|
+
<option class="spacer" value="DN1933"> </option>
|
275
|
+
<option class="lang" value="HOF">---Deutsch (DE)---</option>
|
276
|
+
<option value="HOF" >Hoffnung für Alle</option>
|
277
|
+
<option value="LUTH1545" >Luther Bibel 1545</option>
|
278
|
+
<option value="NGU-DE" >Neue Genfer Übersetzung</option>
|
279
|
+
<option value="SCH1951" >Schlachter 1951</option>
|
280
|
+
<option value="SCH2000" >Schlachter 2000</option>
|
281
|
+
<option class="spacer" value="SCH2000"> </option>
|
282
|
+
<option class="lang" value="KJ21">---English (EN)---</option>
|
283
|
+
<option value="KJ21" >21st Century King James Version</option>
|
284
|
+
<option value="ASV" >American Standard Version</option>
|
285
|
+
<option value="AMP" >Amplified Bible</option>
|
286
|
+
<option value="CEB" >Common English Bible</option>
|
287
|
+
<option value="CJB" >Complete Jewish Bible</option>
|
288
|
+
<option value="CEV" >Contemporary English Version</option>
|
289
|
+
<option value="DARBY" >Darby Translation</option>
|
290
|
+
<option value="DRA" >Douay-Rheims 1899 American Edition</option>
|
291
|
+
<option value="ERV" >Easy-to-Read Version</option>
|
292
|
+
<option value="ESV" selected="selected" >English Standard Version</option>
|
293
|
+
<option value="ESVUK" >English Standard Version Anglicised</option>
|
294
|
+
<option value="EXB" >Expanded Bible</option>
|
295
|
+
<option value="GNV" >1599 Geneva Bible</option>
|
296
|
+
<option value="GW" >GOD’S WORD Translation</option>
|
297
|
+
<option value="GNT" >Good News Translation</option>
|
298
|
+
<option value="HCSB" >Holman Christian Standard Bible</option>
|
299
|
+
<option value="PHILLIPS" >J.B. Phillips New Testament</option>
|
300
|
+
<option value="JUB" >Jubilee Bible 2000</option>
|
301
|
+
<option value="KJV" >King James Version</option>
|
302
|
+
<option value="AKJV" >Authorized (King James) Version</option>
|
303
|
+
<option value="KNOX" >Knox Bible</option>
|
304
|
+
<option value="LEB" >Lexham English Bible</option>
|
305
|
+
<option value="MSG" >The Message</option>
|
306
|
+
<option value="MOUNCE" >Mounce Reverse-Interlinear New Testament</option>
|
307
|
+
<option value="NOG" >Names of God Bible</option>
|
308
|
+
<option value="NASB" >New American Standard Bible</option>
|
309
|
+
<option value="NCV" >New Century Version</option>
|
310
|
+
<option value="NET" >New English Translation (NET Bible)</option>
|
311
|
+
<option value="NIRV" >New International Reader's Version</option>
|
312
|
+
<option value="NIV" >New International Version</option>
|
313
|
+
<option value="NIVUK" >New International Version - UK</option>
|
314
|
+
<option value="NKJV" >New King James Version</option>
|
315
|
+
<option value="NLV" >New Life Version</option>
|
316
|
+
<option value="NLT" >New Living Translation</option>
|
317
|
+
<option value="NRSV" >New Revised Standard Version</option>
|
318
|
+
<option value="NRSVA" >New Revised Standard Version, Anglicised</option>
|
319
|
+
<option value="NRSVACE" >New Revised Standard Version, Anglicised Catholic Edition</option>
|
320
|
+
<option value="NRSVCE" >New Revised Standard Version Catholic Edition</option>
|
321
|
+
<option value="OJB" >Orthodox Jewish Bible</option>
|
322
|
+
<option value="RSV" >Revised Standard Version</option>
|
323
|
+
<option value="RSVCE" >Revised Standard Version Catholic Edition</option>
|
324
|
+
<option value="VOICE" >The Voice</option>
|
325
|
+
<option value="WEB" >World English Bible</option>
|
326
|
+
<option value="WE" >Worldwide English (New Testament)</option>
|
327
|
+
<option value="WYC" >Wycliffe Bible</option>
|
328
|
+
<option value="YLT" >Young's Literal Translation</option>
|
329
|
+
<option class="spacer" value="YLT"> </option>
|
330
|
+
<option class="lang" value="LBLA">---Español (ES)---</option>
|
331
|
+
<option value="LBLA" >La Biblia de las Américas</option>
|
332
|
+
<option value="DHH" >Dios Habla Hoy</option>
|
333
|
+
<option value="JBS" >Jubilee Bible 2000 (Spanish)</option>
|
334
|
+
<option value="NBLH" >Nueva Biblia Latinoamericana de Hoy</option>
|
335
|
+
<option value="NTV" >Nueva Traducción Viviente</option>
|
336
|
+
<option value="NVI" >Nueva Versión Internacional</option>
|
337
|
+
<option value="CST" >Nueva Versión Internacional (Castilian)</option>
|
338
|
+
<option value="PDT" >Palabra de Dios para Todos</option>
|
339
|
+
<option value="BLP" >La Palabra (España)</option>
|
340
|
+
<option value="BLPH" >La Palabra (Hispanoamérica)</option>
|
341
|
+
<option value="RVC" >Reina Valera Contemporánea</option>
|
342
|
+
<option value="RVR1960" >Reina-Valera 1960</option>
|
343
|
+
<option value="RVR1977" >Reina Valera 1977</option>
|
344
|
+
<option value="RVR1995" >Reina-Valera 1995</option>
|
345
|
+
<option value="RVA" >Reina-Valera Antigua</option>
|
346
|
+
<option value="TLA" >Traducción en lenguaje actual</option>
|
347
|
+
<option class="spacer" value="TLA"> </option>
|
348
|
+
<option class="lang" value="R1933">---Suomi (FI)---</option>
|
349
|
+
<option value="R1933" >Raamattu 1933/38</option>
|
350
|
+
<option class="spacer" value="R1933"> </option>
|
351
|
+
<option class="lang" value="BDS">---Français (FR)---</option>
|
352
|
+
<option value="BDS" >La Bible du Semeur</option>
|
353
|
+
<option value="LSG" >Louis Segond</option>
|
354
|
+
<option value="NEG1979" >Nouvelle Edition de Genève – NEG1979</option>
|
355
|
+
<option value="SG21" >Segond 21</option>
|
356
|
+
<option class="spacer" value="SG21"> </option>
|
357
|
+
<option class="lang" value="TR1550">---Κοινη (GRC)---</option>
|
358
|
+
<option value="TR1550" >1550 Stephanus New Testament</option>
|
359
|
+
<option value="WHNU" >1881 Westcott-Hort New Testament</option>
|
360
|
+
<option value="TR1894" >1894 Scrivener New Testament</option>
|
361
|
+
<option value="SBLGNT" >SBL Greek New Testament</option>
|
362
|
+
<option class="spacer" value="SBLGNT"> </option>
|
363
|
+
<option class="lang" value="HHH">---עיברית (HE)---</option>
|
364
|
+
<option value="HHH" >Habrit Hakhadasha/Haderekh</option>
|
365
|
+
<option value="WLC" >The Westminster Leningrad Codex</option>
|
366
|
+
<option class="spacer" value="WLC"> </option>
|
367
|
+
<option class="lang" value="ERV-HI">---हिन्दी (HI)---</option>
|
368
|
+
<option value="ERV-HI" >Hindi Bible: Easy-to-Read Version</option>
|
369
|
+
<option class="spacer" value="ERV-HI"> </option>
|
370
|
+
<option class="lang" value="HLGN">---Ilonggo (HIL)---</option>
|
371
|
+
<option value="HLGN" >Ang Pulong Sang Dios</option>
|
372
|
+
<option class="spacer" value="HLGN"> </option>
|
373
|
+
<option class="lang" value="CRO">---Hrvatski (HR)---</option>
|
374
|
+
<option value="CRO" >Croatian Bible</option>
|
375
|
+
<option class="spacer" value="CRO"> </option>
|
376
|
+
<option class="lang" value="HCV">---Kreyòl ayisyen (HT)---</option>
|
377
|
+
<option value="HCV" >Haitian Creole Version</option>
|
378
|
+
<option class="spacer" value="HCV"> </option>
|
379
|
+
<option class="lang" value="KAR">---Magyar (HU)---</option>
|
380
|
+
<option value="KAR" >Hungarian Károli</option>
|
381
|
+
<option value="ERV-HU" >Hungarian Bible: Easy-to-Read Version</option>
|
382
|
+
<option value="NT-HU" >Hungarian New Translation</option>
|
383
|
+
<option class="spacer" value="NT-HU"> </option>
|
384
|
+
<option class="lang" value="HWP">---Hawai‘i Pidgin (HWC)---</option>
|
385
|
+
<option value="HWP" >Hawai‘i Pidgin</option>
|
386
|
+
<option class="spacer" value="HWP"> </option>
|
387
|
+
<option class="lang" value="ICELAND">---Íslenska (IS)---</option>
|
388
|
+
<option value="ICELAND" >Icelandic Bible</option>
|
389
|
+
<option class="spacer" value="ICELAND"> </option>
|
390
|
+
<option class="lang" value="BDG">---Italiano (IT)---</option>
|
391
|
+
<option value="BDG" >La Bibbia della Gioia</option>
|
392
|
+
<option value="CEI" >Conferenza Episcopale Italiana</option>
|
393
|
+
<option value="LND" >La Nuova Diodati</option>
|
394
|
+
<option value="NR1994" >Nuova Riveduta 1994</option>
|
395
|
+
<option value="NR2006" >Nuova Riveduta 2006</option>
|
396
|
+
<option class="spacer" value="NR2006"> </option>
|
397
|
+
<option class="lang" value="JAC">---Jacalteco, Oriental (JAC)---</option>
|
398
|
+
<option value="JAC" >Jacalteco, Oriental</option>
|
399
|
+
<option class="spacer" value="JAC"> </option>
|
400
|
+
<option class="lang" value="KEK">---Kekchi (KEK)---</option>
|
401
|
+
<option value="KEK" >Kekchi</option>
|
402
|
+
<option class="spacer" value="KEK"> </option>
|
403
|
+
<option class="lang" value="VULGATE">---Latina (LA)---</option>
|
404
|
+
<option value="VULGATE" >Biblia Sacra Vulgata</option>
|
405
|
+
<option class="spacer" value="VULGATE"> </option>
|
406
|
+
<option class="lang" value="MAORI">---Māori (MI)---</option>
|
407
|
+
<option value="MAORI" >Maori Bible</option>
|
408
|
+
<option class="spacer" value="MAORI"> </option>
|
409
|
+
<option class="lang" value="MNT">---Македонски (MK)---</option>
|
410
|
+
<option value="MNT" >Macedonian New Testament</option>
|
411
|
+
<option class="spacer" value="MNT"> </option>
|
412
|
+
<option class="lang" value="ERV-MR">---मराठी (MR)---</option>
|
413
|
+
<option value="ERV-MR" >Marathi Bible: Easy-to-Read Version</option>
|
414
|
+
<option class="spacer" value="ERV-MR"> </option>
|
415
|
+
<option class="lang" value="MVC">---Mam, Central (MVC)---</option>
|
416
|
+
<option value="MVC" >Mam, Central</option>
|
417
|
+
<option class="spacer" value="MVC"> </option>
|
418
|
+
<option class="lang" value="MVJ">---Mam, Todos Santos (MVJ)---</option>
|
419
|
+
<option value="MVJ" >Mam de Todos Santos Chuchumatán</option>
|
420
|
+
<option class="spacer" value="MVJ"> </option>
|
421
|
+
<option class="lang" value="REIMER">---Plautdietsch (NDS)---</option>
|
422
|
+
<option value="REIMER" >Reimer 2001</option>
|
423
|
+
<option class="spacer" value="REIMER"> </option>
|
424
|
+
<option class="lang" value="ERV-NE">---नेपाली (NE)---</option>
|
425
|
+
<option value="ERV-NE" >Nepali Bible: Easy-to-Read Version</option>
|
426
|
+
<option class="spacer" value="ERV-NE"> </option>
|
427
|
+
<option class="lang" value="NGU">---Náhuatl de Guerrero (NGU)---</option>
|
428
|
+
<option value="NGU" >Náhuatl de Guerrero</option>
|
429
|
+
<option class="spacer" value="NGU"> </option>
|
430
|
+
<option class="lang" value="HTB">---Nederlands (NL)---</option>
|
431
|
+
<option value="HTB" >Het Boek</option>
|
432
|
+
<option class="spacer" value="HTB"> </option>
|
433
|
+
<option class="lang" value="DNB1930">---Norsk (NO)---</option>
|
434
|
+
<option value="DNB1930" >Det Norsk Bibelselskap 1930</option>
|
435
|
+
<option value="LB" >En Levende Bok</option>
|
436
|
+
<option class="spacer" value="LB"> </option>
|
437
|
+
<option class="lang" value="ERV-OR">---ଓଡ଼ିଆ (OR)---</option>
|
438
|
+
<option value="ERV-OR" >Oriya Bible: Easy-to-Read Version</option>
|
439
|
+
<option class="spacer" value="ERV-OR"> </option>
|
440
|
+
<option class="lang" value="ERV-PA">---ਪੰਜਾਬੀ (PA)---</option>
|
441
|
+
<option value="ERV-PA" >Punjabi Bible: Easy-to-Read Version</option>
|
442
|
+
<option class="spacer" value="ERV-PA"> </option>
|
443
|
+
<option class="lang" value="NP">---Polski (PL)---</option>
|
444
|
+
<option value="NP" >Nowe Przymierze</option>
|
445
|
+
<option value="SZ-PL" >Słowo Życia</option>
|
446
|
+
<option class="spacer" value="SZ-PL"> </option>
|
447
|
+
<option class="lang" value="AA">---Português (PT)---</option>
|
448
|
+
<option value="AA" >João Ferreira de Almeida Atualizada</option>
|
449
|
+
<option value="NVI-PT" >Nova Versão Internacional</option>
|
450
|
+
<option value="OL" >O Livro</option>
|
451
|
+
<option value="VFL" >Portuguese New Testament: Easy-to-Read Version</option>
|
452
|
+
<option class="spacer" value="VFL"> </option>
|
453
|
+
<option class="lang" value="MTDS">---Quichua (QU)---</option>
|
454
|
+
<option value="MTDS" >Mushuj Testamento Diospaj Shimi</option>
|
455
|
+
<option class="spacer" value="MTDS"> </option>
|
456
|
+
<option class="lang" value="QUT">---Quiché, Centro Occidenta (QUT)---</option>
|
457
|
+
<option value="QUT" >Quiché, Centro Occidental</option>
|
458
|
+
<option class="spacer" value="QUT"> </option>
|
459
|
+
<option class="lang" value="RMNN">---Română (RO)---</option>
|
460
|
+
<option value="RMNN" >Cornilescu</option>
|
461
|
+
<option value="NTLR" >Nouă Traducere În Limba Română</option>
|
462
|
+
<option class="spacer" value="NTLR"> </option>
|
463
|
+
<option class="lang" value="ERV-RU">---Русский (RU)---</option>
|
464
|
+
<option value="ERV-RU" >Russian New Testament: Easy-to-Read Version</option>
|
465
|
+
<option value="RUSV" >Russian Synodal Version</option>
|
466
|
+
<option value="SZ" >Slovo Zhizny</option>
|
467
|
+
<option class="spacer" value="SZ"> </option>
|
468
|
+
<option class="lang" value="NPK">---Slovenčina (SK)---</option>
|
469
|
+
<option value="NPK" >Nádej pre kazdého</option>
|
470
|
+
<option class="spacer" value="NPK"> </option>
|
471
|
+
<option class="lang" value="SOM">---Somali (SO)---</option>
|
472
|
+
<option value="SOM" >Somali Bible</option>
|
473
|
+
<option class="spacer" value="SOM"> </option>
|
474
|
+
<option class="lang" value="ALB">---Shqip (SQ)---</option>
|
475
|
+
<option value="ALB" >Albanian Bible</option>
|
476
|
+
<option class="spacer" value="ALB"> </option>
|
477
|
+
<option class="lang" value="ERV-SR">---Српски (SR)---</option>
|
478
|
+
<option value="ERV-SR" >Serbian New Testament: Easy-to-Read Version</option>
|
479
|
+
<option class="spacer" value="ERV-SR"> </option>
|
480
|
+
<option class="lang" value="SVL">---Svenska (SV)---</option>
|
481
|
+
<option value="SVL" >Levande Bibeln</option>
|
482
|
+
<option value="SV1917" >Svenska 1917</option>
|
483
|
+
<option value="SFB" >Svenska Folkbibeln</option>
|
484
|
+
<option class="spacer" value="SFB"> </option>
|
485
|
+
<option class="lang" value="SNT">---Kiswahili (SW)---</option>
|
486
|
+
<option value="SNT" >Swahili New Testament</option>
|
487
|
+
<option class="spacer" value="SNT"> </option>
|
488
|
+
<option class="lang" value="ERV-TA">---தமிழ் (TA)---</option>
|
489
|
+
<option value="ERV-TA" >Tamil Bible: Easy-to-Read Version</option>
|
490
|
+
<option class="spacer" value="ERV-TA"> </option>
|
491
|
+
<option class="lang" value="TNCV">---ภาษาไทย (TH)---</option>
|
492
|
+
<option value="TNCV" >Thai New Contemporary Bible</option>
|
493
|
+
<option value="ERV-TH" >Thai New Testament: Easy-to-Read Version</option>
|
494
|
+
<option class="spacer" value="ERV-TH"> </option>
|
495
|
+
<option class="lang" value="SND">---Tagalog (TL)---</option>
|
496
|
+
<option value="SND" >Ang Salita ng Diyos</option>
|
497
|
+
<option class="spacer" value="SND"> </option>
|
498
|
+
<option class="lang" value="NA-TWI">---Twi (TWI)---</option>
|
499
|
+
<option value="NA-TWI" >Nkwa Asem</option>
|
500
|
+
<option class="spacer" value="NA-TWI"> </option>
|
501
|
+
<option class="lang" value="UKR">---Українська (UK)---</option>
|
502
|
+
<option value="UKR" >Ukrainian Bible</option>
|
503
|
+
<option value="ERV-UK" >Ukrainian New Testament: Easy-to-Read Version</option>
|
504
|
+
<option class="spacer" value="ERV-UK"> </option>
|
505
|
+
<option class="lang" value="ERV-UR">---اردو (UR)---</option>
|
506
|
+
<option value="ERV-UR" >Urdu Bible: Easy-to-Read Version</option>
|
507
|
+
<option class="spacer" value="ERV-UR"> </option>
|
508
|
+
<option class="lang" value="USP">---Uspanteco (USP)---</option>
|
509
|
+
<option value="USP" >Uspanteco</option>
|
510
|
+
<option class="spacer" value="USP"> </option>
|
511
|
+
<option class="lang" value="VIET">---Tiêng Viêt (VI)---</option>
|
512
|
+
<option value="VIET" >1934 Vietnamese Bible</option>
|
513
|
+
<option value="BD2011" >Bản Dịch 2011</option>
|
514
|
+
<option value="BPT" >Vietnamese Bible: Easy-to-Read Version</option>
|
515
|
+
<option class="spacer" value="BPT"> </option>
|
516
|
+
<option class="lang" value="CCB">---汉语 (ZH)---</option>
|
517
|
+
<option value="CCB" >Chinese Contemporary Bible</option>
|
518
|
+
<option value="ERV-ZH" >Chinese New Testament: Easy-to-Read Version</option>
|
519
|
+
<option value="CNVT" >Chinese New Version (Traditional)</option>
|
520
|
+
<option value="CSBS" >Chinese Standard Bible (Simplified)</option>
|
521
|
+
<option value="CSBT" >Chinese Standard Bible (Traditional)</option>
|
522
|
+
<option value="CUVS" >Chinese Union Version (Simplified)</option>
|
523
|
+
<option value="CUV" >Chinese Union Version (Traditional)</option>
|
524
|
+
<option value="CUVMPS" >Chinese Union Version Modern Punctuation (Simplified)</option>
|
525
|
+
<option value="CUVMPT" >Chinese Union Version Modern Punctuation (Traditional)</option>
|
526
|
+
</select>
|
527
|
+
<input class='button-search' id='search-submit' type='submit' value='Search' />
|
528
|
+
</form>
|
529
|
+
</div>
|
530
|
+
<div id='search-button-bar'>
|
531
|
+
<ul>
|
532
|
+
<li><a id="header-book-list" href="/versions/?action=getVersionInfo&vid=ESV&window_location=books">Bible Book List</a></li>
|
533
|
+
</ul>
|
534
|
+
</div>
|
535
|
+
</div>
|
536
|
+
<div id="leader-wrap">
|
537
|
+
<div id='a9g-leader' class="with-alert">
|
538
|
+
<div class="a9g-leader-div" style='border:1px solid #999999;'><script type="text/javascript">
|
539
|
+
if (typeof(oasAd) != 'undefined') oasAd('Top');
|
540
|
+
</script></div>
|
541
|
+
</div>
|
542
|
+
</div>
|
543
|
+
<div style="clear:both;"></div>
|
544
|
+
<div id="content">
|
203
545
|
<!-- UNIQUE CONTENT -->
|
204
|
-
<h1>
|
205
|
-
<
|
206
|
-
<
|
207
|
-
<
|
208
|
-
<option value="
|
209
|
-
<option
|
210
|
-
<option value="
|
211
|
-
<option value="
|
212
|
-
<option
|
213
|
-
<option value="
|
214
|
-
<option class="
|
215
|
-
<option value="
|
216
|
-
<option
|
217
|
-
<option value="
|
218
|
-
<option class="lang" value="
|
219
|
-
<option value="
|
220
|
-
<option
|
221
|
-
<option value="
|
222
|
-
<option
|
223
|
-
<option value="
|
224
|
-
<option value="
|
225
|
-
<option
|
226
|
-
<option value="
|
227
|
-
<option value="
|
228
|
-
<option value="
|
229
|
-
<option value="
|
230
|
-
<option value="
|
231
|
-
<option value="
|
232
|
-
<option
|
233
|
-
<option value="
|
234
|
-
<option value="
|
235
|
-
<option value="
|
236
|
-
<option value="
|
237
|
-
<option value="
|
238
|
-
<option value="
|
239
|
-
<option value="
|
240
|
-
<option value="
|
241
|
-
<option value="
|
242
|
-
<option value="
|
243
|
-
<option value="
|
244
|
-
<option value="
|
245
|
-
<option value="
|
246
|
-
<option
|
247
|
-
<option value="
|
248
|
-
<option value="
|
249
|
-
<option value="
|
250
|
-
<option value="
|
251
|
-
<option value="
|
252
|
-
<option value="
|
253
|
-
<option value="
|
254
|
-
<option
|
255
|
-
<option value="
|
256
|
-
<option value="
|
257
|
-
<option
|
258
|
-
<option value="
|
259
|
-
<option value="
|
260
|
-
<option value="
|
261
|
-
<option
|
262
|
-
<option value="
|
263
|
-
<option
|
264
|
-
<option value="
|
265
|
-
<option
|
266
|
-
<option value="
|
267
|
-
<option
|
268
|
-
<option value="
|
269
|
-
<option
|
270
|
-
<option value="
|
271
|
-
<option
|
272
|
-
<option value="
|
273
|
-
<option value="
|
274
|
-
<option
|
275
|
-
<option value="
|
276
|
-
<option
|
277
|
-
<option value="
|
278
|
-
<option
|
279
|
-
<option value="
|
280
|
-
<option
|
281
|
-
<option value="
|
282
|
-
<option
|
283
|
-
<option value="
|
284
|
-
<option
|
285
|
-
<option value="
|
286
|
-
<option
|
287
|
-
<option value="
|
288
|
-
<option
|
289
|
-
<option value="
|
290
|
-
<option
|
291
|
-
<option value="
|
292
|
-
<option
|
293
|
-
<option value="
|
294
|
-
<option
|
295
|
-
<option value="
|
296
|
-
<option value="
|
297
|
-
<option
|
298
|
-
<option value="
|
299
|
-
<option value="
|
300
|
-
<option
|
301
|
-
<option value="
|
302
|
-
<option
|
303
|
-
<option value="
|
304
|
-
<option value="
|
305
|
-
<option
|
306
|
-
<option value="
|
307
|
-
<option value="
|
308
|
-
<option
|
309
|
-
<option value="
|
310
|
-
<option
|
311
|
-
<option value="
|
312
|
-
<option
|
313
|
-
<option value="
|
314
|
-
<option value="
|
315
|
-
<option
|
316
|
-
<option value="
|
317
|
-
<option class="lang" value="
|
318
|
-
<option value="
|
319
|
-
<option class="
|
320
|
-
<option value="
|
321
|
-
<option
|
322
|
-
<option value="
|
323
|
-
<option
|
324
|
-
<option value="
|
325
|
-
<option class="
|
326
|
-
<option value="
|
327
|
-
<option value="
|
328
|
-
|
329
|
-
<
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
<
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
<
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
<
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
<
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
<
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
<
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
<
|
386
|
-
<
|
387
|
-
<
|
388
|
-
|
389
|
-
<
|
390
|
-
|
391
|
-
<
|
392
|
-
|
393
|
-
<
|
546
|
+
<h1>John 1:1 (English Standard Version)</h1>
|
547
|
+
<div class="display-passages passages-single">
|
548
|
+
<div class="content-wrapper">
|
549
|
+
<div class="content-col">
|
550
|
+
<div class="passage-updatetranslation page-translation"><select data-prefname="default_version"><option class="lang" value="AMU">---Amuzgo de Guerrero (AMU)---</option>
|
551
|
+
<option value="AMU" >Amuzgo de Guerrero</option>
|
552
|
+
<option class="spacer" value="AMU"> </option>
|
553
|
+
<option class="lang" value="ERV-AR">---العربية (AR)---</option>
|
554
|
+
<option value="ERV-AR" >Arabic Bible: Easy-to-Read Version</option>
|
555
|
+
<option value="ALAB" >Arabic Life Application Bible</option>
|
556
|
+
<option class="spacer" value="ALAB"> </option>
|
557
|
+
<option class="lang" value="ERV-AWA">---अवधी (AWA)---</option>
|
558
|
+
<option value="ERV-AWA" >Awadhi Bible: Easy-to-Read Version</option>
|
559
|
+
<option class="spacer" value="ERV-AWA"> </option>
|
560
|
+
<option class="lang" value="BG1940">---Български (BG)---</option>
|
561
|
+
<option value="BG1940" >1940 Bulgarian Bible</option>
|
562
|
+
<option value="BULG" >Bulgarian Bible</option>
|
563
|
+
<option value="ERV-BG" >Bulgarian New Testament: Easy-to-Read Version</option>
|
564
|
+
<option value="BPB" >Bulgarian Protestant Bible</option>
|
565
|
+
<option class="spacer" value="BPB"> </option>
|
566
|
+
<option class="lang" value="CCO">---Chinanteco de Comaltepec (CCO)---</option>
|
567
|
+
<option value="CCO" >Chinanteco de Comaltepec</option>
|
568
|
+
<option class="spacer" value="CCO"> </option>
|
569
|
+
<option class="lang" value="APSD-CEB">---Cebuano (CEB)---</option>
|
570
|
+
<option value="APSD-CEB" >Ang Pulong Sa Dios</option>
|
571
|
+
<option class="spacer" value="APSD-CEB"> </option>
|
572
|
+
<option class="lang" value="CHR">---ᏣᎳᎩ ᎦᏬᏂᎯᏍ (CHR)---</option>
|
573
|
+
<option value="CHR" >Cherokee New Testament</option>
|
574
|
+
<option class="spacer" value="CHR"> </option>
|
575
|
+
<option class="lang" value="CKW">---Cakchiquel Occidental (CKW)---</option>
|
576
|
+
<option value="CKW" >Cakchiquel Occidental</option>
|
577
|
+
<option class="spacer" value="CKW"> </option>
|
578
|
+
<option class="lang" value="B21">---Čeština (CS)---</option>
|
579
|
+
<option value="B21" >Bible 21</option>
|
580
|
+
<option value="SNC" >Slovo na cestu</option>
|
581
|
+
<option class="spacer" value="SNC"> </option>
|
582
|
+
<option class="lang" value="BPH">---Dansk (DA)---</option>
|
583
|
+
<option value="BPH" >Bibelen på hverdagsdansk</option>
|
584
|
+
<option value="DN1933" >Dette er Biblen på dansk</option>
|
585
|
+
<option class="spacer" value="DN1933"> </option>
|
586
|
+
<option class="lang" value="HOF">---Deutsch (DE)---</option>
|
587
|
+
<option value="HOF" >Hoffnung für Alle</option>
|
588
|
+
<option value="LUTH1545" >Luther Bibel 1545</option>
|
589
|
+
<option value="NGU-DE" >Neue Genfer Übersetzung</option>
|
590
|
+
<option value="SCH1951" >Schlachter 1951</option>
|
591
|
+
<option value="SCH2000" >Schlachter 2000</option>
|
592
|
+
<option class="spacer" value="SCH2000"> </option>
|
593
|
+
<option class="lang" value="KJ21">---English (EN)---</option>
|
594
|
+
<option value="KJ21" >21st Century King James Version</option>
|
595
|
+
<option value="ASV" >American Standard Version</option>
|
596
|
+
<option value="AMP" >Amplified Bible</option>
|
597
|
+
<option value="CEB" >Common English Bible</option>
|
598
|
+
<option value="CJB" >Complete Jewish Bible</option>
|
599
|
+
<option value="CEV" >Contemporary English Version</option>
|
600
|
+
<option value="DARBY" >Darby Translation</option>
|
601
|
+
<option value="DRA" >Douay-Rheims 1899 American Edition</option>
|
602
|
+
<option value="ERV" >Easy-to-Read Version</option>
|
603
|
+
<option value="ESV" selected="selected" >English Standard Version</option>
|
604
|
+
<option value="ESVUK" >English Standard Version Anglicised</option>
|
605
|
+
<option value="EXB" >Expanded Bible</option>
|
606
|
+
<option value="GNV" >1599 Geneva Bible</option>
|
607
|
+
<option value="GW" >GOD’S WORD Translation</option>
|
608
|
+
<option value="GNT" >Good News Translation</option>
|
609
|
+
<option value="HCSB" >Holman Christian Standard Bible</option>
|
610
|
+
<option value="PHILLIPS" >J.B. Phillips New Testament</option>
|
611
|
+
<option value="JUB" >Jubilee Bible 2000</option>
|
612
|
+
<option value="KJV" >King James Version</option>
|
613
|
+
<option value="AKJV" >Authorized (King James) Version</option>
|
614
|
+
<option value="KNOX" >Knox Bible</option>
|
615
|
+
<option value="LEB" >Lexham English Bible</option>
|
616
|
+
<option value="MSG" >The Message</option>
|
617
|
+
<option value="MOUNCE" >Mounce Reverse-Interlinear New Testament</option>
|
618
|
+
<option value="NOG" >Names of God Bible</option>
|
619
|
+
<option value="NASB" >New American Standard Bible</option>
|
620
|
+
<option value="NCV" >New Century Version</option>
|
621
|
+
<option value="NET" >New English Translation (NET Bible)</option>
|
622
|
+
<option value="NIRV" >New International Reader's Version</option>
|
623
|
+
<option value="NIV" >New International Version</option>
|
624
|
+
<option value="NIVUK" >New International Version - UK</option>
|
625
|
+
<option value="NKJV" >New King James Version</option>
|
626
|
+
<option value="NLV" >New Life Version</option>
|
627
|
+
<option value="NLT" >New Living Translation</option>
|
628
|
+
<option value="NRSV" >New Revised Standard Version</option>
|
629
|
+
<option value="NRSVA" >New Revised Standard Version, Anglicised</option>
|
630
|
+
<option value="NRSVACE" >New Revised Standard Version, Anglicised Catholic Edition</option>
|
631
|
+
<option value="NRSVCE" >New Revised Standard Version Catholic Edition</option>
|
632
|
+
<option value="OJB" >Orthodox Jewish Bible</option>
|
633
|
+
<option value="RSV" >Revised Standard Version</option>
|
634
|
+
<option value="RSVCE" >Revised Standard Version Catholic Edition</option>
|
635
|
+
<option value="VOICE" >The Voice</option>
|
636
|
+
<option value="WEB" >World English Bible</option>
|
637
|
+
<option value="WE" >Worldwide English (New Testament)</option>
|
638
|
+
<option value="WYC" >Wycliffe Bible</option>
|
639
|
+
<option value="YLT" >Young's Literal Translation</option>
|
640
|
+
<option class="spacer" value="YLT"> </option>
|
641
|
+
<option class="lang" value="LBLA">---Español (ES)---</option>
|
642
|
+
<option value="LBLA" >La Biblia de las Américas</option>
|
643
|
+
<option value="DHH" >Dios Habla Hoy</option>
|
644
|
+
<option value="JBS" >Jubilee Bible 2000 (Spanish)</option>
|
645
|
+
<option value="NBLH" >Nueva Biblia Latinoamericana de Hoy</option>
|
646
|
+
<option value="NTV" >Nueva Traducción Viviente</option>
|
647
|
+
<option value="NVI" >Nueva Versión Internacional</option>
|
648
|
+
<option value="CST" >Nueva Versión Internacional (Castilian)</option>
|
649
|
+
<option value="PDT" >Palabra de Dios para Todos</option>
|
650
|
+
<option value="BLP" >La Palabra (España)</option>
|
651
|
+
<option value="BLPH" >La Palabra (Hispanoamérica)</option>
|
652
|
+
<option value="RVC" >Reina Valera Contemporánea</option>
|
653
|
+
<option value="RVR1960" >Reina-Valera 1960</option>
|
654
|
+
<option value="RVR1977" >Reina Valera 1977</option>
|
655
|
+
<option value="RVR1995" >Reina-Valera 1995</option>
|
656
|
+
<option value="RVA" >Reina-Valera Antigua</option>
|
657
|
+
<option value="TLA" >Traducción en lenguaje actual</option>
|
658
|
+
<option class="spacer" value="TLA"> </option>
|
659
|
+
<option class="lang" value="R1933">---Suomi (FI)---</option>
|
660
|
+
<option value="R1933" >Raamattu 1933/38</option>
|
661
|
+
<option class="spacer" value="R1933"> </option>
|
662
|
+
<option class="lang" value="BDS">---Français (FR)---</option>
|
663
|
+
<option value="BDS" >La Bible du Semeur</option>
|
664
|
+
<option value="LSG" >Louis Segond</option>
|
665
|
+
<option value="NEG1979" >Nouvelle Edition de Genève – NEG1979</option>
|
666
|
+
<option value="SG21" >Segond 21</option>
|
667
|
+
<option class="spacer" value="SG21"> </option>
|
668
|
+
<option class="lang" value="TR1550">---Κοινη (GRC)---</option>
|
669
|
+
<option value="TR1550" >1550 Stephanus New Testament</option>
|
670
|
+
<option value="WHNU" >1881 Westcott-Hort New Testament</option>
|
671
|
+
<option value="TR1894" >1894 Scrivener New Testament</option>
|
672
|
+
<option value="SBLGNT" >SBL Greek New Testament</option>
|
673
|
+
<option class="spacer" value="SBLGNT"> </option>
|
674
|
+
<option class="lang" value="HHH">---עיברית (HE)---</option>
|
675
|
+
<option value="HHH" >Habrit Hakhadasha/Haderekh</option>
|
676
|
+
<option value="WLC" >The Westminster Leningrad Codex</option>
|
677
|
+
<option class="spacer" value="WLC"> </option>
|
678
|
+
<option class="lang" value="ERV-HI">---हिन्दी (HI)---</option>
|
679
|
+
<option value="ERV-HI" >Hindi Bible: Easy-to-Read Version</option>
|
680
|
+
<option class="spacer" value="ERV-HI"> </option>
|
681
|
+
<option class="lang" value="HLGN">---Ilonggo (HIL)---</option>
|
682
|
+
<option value="HLGN" >Ang Pulong Sang Dios</option>
|
683
|
+
<option class="spacer" value="HLGN"> </option>
|
684
|
+
<option class="lang" value="CRO">---Hrvatski (HR)---</option>
|
685
|
+
<option value="CRO" >Croatian Bible</option>
|
686
|
+
<option class="spacer" value="CRO"> </option>
|
687
|
+
<option class="lang" value="HCV">---Kreyòl ayisyen (HT)---</option>
|
688
|
+
<option value="HCV" >Haitian Creole Version</option>
|
689
|
+
<option class="spacer" value="HCV"> </option>
|
690
|
+
<option class="lang" value="KAR">---Magyar (HU)---</option>
|
691
|
+
<option value="KAR" >Hungarian Károli</option>
|
692
|
+
<option value="ERV-HU" >Hungarian Bible: Easy-to-Read Version</option>
|
693
|
+
<option value="NT-HU" >Hungarian New Translation</option>
|
694
|
+
<option class="spacer" value="NT-HU"> </option>
|
695
|
+
<option class="lang" value="HWP">---Hawai‘i Pidgin (HWC)---</option>
|
696
|
+
<option value="HWP" >Hawai‘i Pidgin</option>
|
697
|
+
<option class="spacer" value="HWP"> </option>
|
698
|
+
<option class="lang" value="ICELAND">---Íslenska (IS)---</option>
|
699
|
+
<option value="ICELAND" >Icelandic Bible</option>
|
700
|
+
<option class="spacer" value="ICELAND"> </option>
|
701
|
+
<option class="lang" value="BDG">---Italiano (IT)---</option>
|
702
|
+
<option value="BDG" >La Bibbia della Gioia</option>
|
703
|
+
<option value="CEI" >Conferenza Episcopale Italiana</option>
|
704
|
+
<option value="LND" >La Nuova Diodati</option>
|
705
|
+
<option value="NR1994" >Nuova Riveduta 1994</option>
|
706
|
+
<option value="NR2006" >Nuova Riveduta 2006</option>
|
707
|
+
<option class="spacer" value="NR2006"> </option>
|
708
|
+
<option class="lang" value="JAC">---Jacalteco, Oriental (JAC)---</option>
|
709
|
+
<option value="JAC" >Jacalteco, Oriental</option>
|
710
|
+
<option class="spacer" value="JAC"> </option>
|
711
|
+
<option class="lang" value="KEK">---Kekchi (KEK)---</option>
|
712
|
+
<option value="KEK" >Kekchi</option>
|
713
|
+
<option class="spacer" value="KEK"> </option>
|
714
|
+
<option class="lang" value="VULGATE">---Latina (LA)---</option>
|
715
|
+
<option value="VULGATE" >Biblia Sacra Vulgata</option>
|
716
|
+
<option class="spacer" value="VULGATE"> </option>
|
717
|
+
<option class="lang" value="MAORI">---Māori (MI)---</option>
|
718
|
+
<option value="MAORI" >Maori Bible</option>
|
719
|
+
<option class="spacer" value="MAORI"> </option>
|
720
|
+
<option class="lang" value="MNT">---Македонски (MK)---</option>
|
721
|
+
<option value="MNT" >Macedonian New Testament</option>
|
722
|
+
<option class="spacer" value="MNT"> </option>
|
723
|
+
<option class="lang" value="ERV-MR">---मराठी (MR)---</option>
|
724
|
+
<option value="ERV-MR" >Marathi Bible: Easy-to-Read Version</option>
|
725
|
+
<option class="spacer" value="ERV-MR"> </option>
|
726
|
+
<option class="lang" value="MVC">---Mam, Central (MVC)---</option>
|
727
|
+
<option value="MVC" >Mam, Central</option>
|
728
|
+
<option class="spacer" value="MVC"> </option>
|
729
|
+
<option class="lang" value="MVJ">---Mam, Todos Santos (MVJ)---</option>
|
730
|
+
<option value="MVJ" >Mam de Todos Santos Chuchumatán</option>
|
731
|
+
<option class="spacer" value="MVJ"> </option>
|
732
|
+
<option class="lang" value="REIMER">---Plautdietsch (NDS)---</option>
|
733
|
+
<option value="REIMER" >Reimer 2001</option>
|
734
|
+
<option class="spacer" value="REIMER"> </option>
|
735
|
+
<option class="lang" value="ERV-NE">---नेपाली (NE)---</option>
|
736
|
+
<option value="ERV-NE" >Nepali Bible: Easy-to-Read Version</option>
|
737
|
+
<option class="spacer" value="ERV-NE"> </option>
|
738
|
+
<option class="lang" value="NGU">---Náhuatl de Guerrero (NGU)---</option>
|
739
|
+
<option value="NGU" >Náhuatl de Guerrero</option>
|
740
|
+
<option class="spacer" value="NGU"> </option>
|
741
|
+
<option class="lang" value="HTB">---Nederlands (NL)---</option>
|
742
|
+
<option value="HTB" >Het Boek</option>
|
743
|
+
<option class="spacer" value="HTB"> </option>
|
744
|
+
<option class="lang" value="DNB1930">---Norsk (NO)---</option>
|
745
|
+
<option value="DNB1930" >Det Norsk Bibelselskap 1930</option>
|
746
|
+
<option value="LB" >En Levende Bok</option>
|
747
|
+
<option class="spacer" value="LB"> </option>
|
748
|
+
<option class="lang" value="ERV-OR">---ଓଡ଼ିଆ (OR)---</option>
|
749
|
+
<option value="ERV-OR" >Oriya Bible: Easy-to-Read Version</option>
|
750
|
+
<option class="spacer" value="ERV-OR"> </option>
|
751
|
+
<option class="lang" value="ERV-PA">---ਪੰਜਾਬੀ (PA)---</option>
|
752
|
+
<option value="ERV-PA" >Punjabi Bible: Easy-to-Read Version</option>
|
753
|
+
<option class="spacer" value="ERV-PA"> </option>
|
754
|
+
<option class="lang" value="NP">---Polski (PL)---</option>
|
755
|
+
<option value="NP" >Nowe Przymierze</option>
|
756
|
+
<option value="SZ-PL" >Słowo Życia</option>
|
757
|
+
<option class="spacer" value="SZ-PL"> </option>
|
758
|
+
<option class="lang" value="AA">---Português (PT)---</option>
|
759
|
+
<option value="AA" >João Ferreira de Almeida Atualizada</option>
|
760
|
+
<option value="NVI-PT" >Nova Versão Internacional</option>
|
761
|
+
<option value="OL" >O Livro</option>
|
762
|
+
<option value="VFL" >Portuguese New Testament: Easy-to-Read Version</option>
|
763
|
+
<option class="spacer" value="VFL"> </option>
|
764
|
+
<option class="lang" value="MTDS">---Quichua (QU)---</option>
|
765
|
+
<option value="MTDS" >Mushuj Testamento Diospaj Shimi</option>
|
766
|
+
<option class="spacer" value="MTDS"> </option>
|
767
|
+
<option class="lang" value="QUT">---Quiché, Centro Occidenta (QUT)---</option>
|
768
|
+
<option value="QUT" >Quiché, Centro Occidental</option>
|
769
|
+
<option class="spacer" value="QUT"> </option>
|
770
|
+
<option class="lang" value="RMNN">---Română (RO)---</option>
|
771
|
+
<option value="RMNN" >Cornilescu</option>
|
772
|
+
<option value="NTLR" >Nouă Traducere În Limba Română</option>
|
773
|
+
<option class="spacer" value="NTLR"> </option>
|
774
|
+
<option class="lang" value="ERV-RU">---Русский (RU)---</option>
|
775
|
+
<option value="ERV-RU" >Russian New Testament: Easy-to-Read Version</option>
|
776
|
+
<option value="RUSV" >Russian Synodal Version</option>
|
777
|
+
<option value="SZ" >Slovo Zhizny</option>
|
778
|
+
<option class="spacer" value="SZ"> </option>
|
779
|
+
<option class="lang" value="NPK">---Slovenčina (SK)---</option>
|
780
|
+
<option value="NPK" >Nádej pre kazdého</option>
|
781
|
+
<option class="spacer" value="NPK"> </option>
|
782
|
+
<option class="lang" value="SOM">---Somali (SO)---</option>
|
783
|
+
<option value="SOM" >Somali Bible</option>
|
784
|
+
<option class="spacer" value="SOM"> </option>
|
785
|
+
<option class="lang" value="ALB">---Shqip (SQ)---</option>
|
786
|
+
<option value="ALB" >Albanian Bible</option>
|
787
|
+
<option class="spacer" value="ALB"> </option>
|
788
|
+
<option class="lang" value="ERV-SR">---Српски (SR)---</option>
|
789
|
+
<option value="ERV-SR" >Serbian New Testament: Easy-to-Read Version</option>
|
790
|
+
<option class="spacer" value="ERV-SR"> </option>
|
791
|
+
<option class="lang" value="SVL">---Svenska (SV)---</option>
|
792
|
+
<option value="SVL" >Levande Bibeln</option>
|
793
|
+
<option value="SV1917" >Svenska 1917</option>
|
794
|
+
<option value="SFB" >Svenska Folkbibeln</option>
|
795
|
+
<option class="spacer" value="SFB"> </option>
|
796
|
+
<option class="lang" value="SNT">---Kiswahili (SW)---</option>
|
797
|
+
<option value="SNT" >Swahili New Testament</option>
|
798
|
+
<option class="spacer" value="SNT"> </option>
|
799
|
+
<option class="lang" value="ERV-TA">---தமிழ் (TA)---</option>
|
800
|
+
<option value="ERV-TA" >Tamil Bible: Easy-to-Read Version</option>
|
801
|
+
<option class="spacer" value="ERV-TA"> </option>
|
802
|
+
<option class="lang" value="TNCV">---ภาษาไทย (TH)---</option>
|
803
|
+
<option value="TNCV" >Thai New Contemporary Bible</option>
|
804
|
+
<option value="ERV-TH" >Thai New Testament: Easy-to-Read Version</option>
|
805
|
+
<option class="spacer" value="ERV-TH"> </option>
|
806
|
+
<option class="lang" value="SND">---Tagalog (TL)---</option>
|
807
|
+
<option value="SND" >Ang Salita ng Diyos</option>
|
808
|
+
<option class="spacer" value="SND"> </option>
|
809
|
+
<option class="lang" value="NA-TWI">---Twi (TWI)---</option>
|
810
|
+
<option value="NA-TWI" >Nkwa Asem</option>
|
811
|
+
<option class="spacer" value="NA-TWI"> </option>
|
812
|
+
<option class="lang" value="UKR">---Українська (UK)---</option>
|
813
|
+
<option value="UKR" >Ukrainian Bible</option>
|
814
|
+
<option value="ERV-UK" >Ukrainian New Testament: Easy-to-Read Version</option>
|
815
|
+
<option class="spacer" value="ERV-UK"> </option>
|
816
|
+
<option class="lang" value="ERV-UR">---اردو (UR)---</option>
|
817
|
+
<option value="ERV-UR" >Urdu Bible: Easy-to-Read Version</option>
|
818
|
+
<option class="spacer" value="ERV-UR"> </option>
|
819
|
+
<option class="lang" value="USP">---Uspanteco (USP)---</option>
|
820
|
+
<option value="USP" >Uspanteco</option>
|
821
|
+
<option class="spacer" value="USP"> </option>
|
822
|
+
<option class="lang" value="VIET">---Tiêng Viêt (VI)---</option>
|
823
|
+
<option value="VIET" >1934 Vietnamese Bible</option>
|
824
|
+
<option value="BD2011" >Bản Dịch 2011</option>
|
825
|
+
<option value="BPT" >Vietnamese Bible: Easy-to-Read Version</option>
|
826
|
+
<option class="spacer" value="BPT"> </option>
|
827
|
+
<option class="lang" value="CCB">---汉语 (ZH)---</option>
|
828
|
+
<option value="CCB" >Chinese Contemporary Bible</option>
|
829
|
+
<option value="ERV-ZH" >Chinese New Testament: Easy-to-Read Version</option>
|
830
|
+
<option value="CNVT" >Chinese New Version (Traditional)</option>
|
831
|
+
<option value="CSBS" >Chinese Standard Bible (Simplified)</option>
|
832
|
+
<option value="CSBT" >Chinese Standard Bible (Traditional)</option>
|
833
|
+
<option value="CUVS" >Chinese Union Version (Simplified)</option>
|
834
|
+
<option value="CUV" >Chinese Union Version (Traditional)</option>
|
835
|
+
<option value="CUVMPS" >Chinese Union Version Modern Punctuation (Simplified)</option>
|
836
|
+
<option value="CUVMPT" >Chinese Union Version Modern Punctuation (Traditional)</option>
|
837
|
+
</select></div><div id="page-options-button" class="page-options button txt-sm">Page Options</div><div id="page-options" style="display:none" class="txt-sm"> <ul>
|
838
|
+
<li><input id="po_toggle_footnotes" class="po_toggle_footnotes" type="checkbox" checked /><label for="po_toggle_footnotes">Footnotes</label></li>
|
839
|
+
<li><input id="po_toggle_xrefs" class="po_toggle_xrefs" type="checkbox" /><label for="po_toggle_xrefs">Cross References</label></li>
|
840
|
+
<li><input id="po_toggle_versenums" class="po_toggle_versenums" type="checkbox" checked /><label for="po_toggle_versenums">Verse Numbers</label></li>
|
841
|
+
<li><input id="po_toggle_headings" class="po_toggle_headings" type="checkbox" checked /><label for="po_toggle_headings">Headings</label></li>
|
842
|
+
<li><input id="po_toggle_woj" class="po_toggle_woj" type="checkbox" /><label for="po_toggle_woj">Red Letter</label></li> </ul></div><div class="addthis_toolbox addthis_default_style">
|
843
|
+
<a class="addthis_button_facebook"></a>
|
844
|
+
<a class="addthis_button_twitter"></a>
|
845
|
+
<a class="addthis_button_email"></a>
|
846
|
+
</div><div style="clear: both"></div><div style="margin-top: 10px"></div><div class="header-rule"></div><div class='passage-wrap'><div class='passage-left passage-class-0'><div class="passage-scroller">
|
847
|
+
<ul class="result-options button txt-sm" id="result-options1">
|
848
|
+
<li><a href="/passage/?search=Luke%201&version=ESV" title="Go to Luke 1"><div class="scroller-icon"><<</div></a> </li>
|
849
|
+
<li><a href="/passage/?search=Luke%2024&version=ESV" title="Go to Luke 24"><div class="scroller-icon"><</div></a> </li>
|
850
|
+
<li><a href="/passage/?search=John%201&version=ESV" title="Expand: show the entire chapter of John 1"><div class="scroller-icon scroller-icon-passage-expand">=<br />=</div></a> </li>
|
851
|
+
<li><a href="/passage/?search=John%202&version=ESV" title="Go to John 2"><div class="scroller-icon">></div></a> </li>
|
852
|
+
<li class="last-item"><a href="/passage/?search=Acts%201&version=ESV" title="Go to Acts 1"><div class="scroller-icon">>></div></a> </li>
|
853
|
+
</ul>
|
854
|
+
<div class="passage-audio button"><a href="/audio/mclean/esv/John.1.1" onclick = "var flashWindow =''; function openwin() {
|
855
|
+
url = '/audio/mclean/esv/John.1.1';
|
856
|
+
if (flashWindow != '' && !flashWindow.closed) {
|
857
|
+
flashWindow.location = url;
|
858
|
+
} else {
|
859
|
+
flashWindow = window.open(url,'_blank','resizable=yes, toolbar=no, location=no, directories=no, status=0, menubar=no, scrollbars=no, width=480, height=390');
|
860
|
+
}
|
861
|
+
} openwin(); return false;" title="listen to John 1"><span><img class="audio-image" src="http://static5.bgcdn.com/images/icons/icon-audio.png" /></span></a></div> <div class="passage-tools">
|
862
|
+
<div>
|
863
|
+
<a class="passage-resources-open passage-class-0" href="#" data-bg="passage-class-0#John.1.1#John-1-1-John-1-1">Show resources</a>
|
864
|
+
</div>
|
865
|
+
</div>
|
866
|
+
|
867
|
+
</div>
|
868
|
+
<div class='commentary-link'>
|
869
|
+
<a href="/resources/commentaries/Matthew-Henry/John/Divinity-Christ" title="View commentary related to this passage:John 1">Show Commentary</a>
|
870
|
+
</div>
|
871
|
+
<a href="/passage/?search=john%201%3A1&version=ESV;NIV" rel="nofollow" class="passage-parallel-button">Add parallel</a><div style="clear:both;"></div><div class='heading passage-class-0'><h3>John 1:1</h3><p class="txt-sm">English Standard Version (ESV)</p></div><div class="passage version-ESV result-text-style-normal text-html ">
|
872
|
+
<h3><span id="en-ESV-26035" class="text John-1-1">The Word Became Flesh</span></h3><p class="chapter-1"><span class="text John-1-1"><span class="chapternum">1 </span><sup class='crossreference' value='(<a href="#cen-ESV-26035A" title="See cross-reference A">A</a>)'></sup>In the beginning was <sup class='crossreference' value='(<a href="#cen-ESV-26035B" title="See cross-reference B">B</a>)'></sup>the Word, and <sup class='crossreference' value='(<a href="#cen-ESV-26035C" title="See cross-reference C">C</a>)'></sup>the Word was with God, and <sup class='crossreference' value='(<a href="#cen-ESV-26035D" title="See cross-reference D">D</a>)'></sup>the Word was God.</span></p><div class="crossrefs"style="display:none"><h4>Cross references:</h4><ol type="A"><li id="cen-ESV-26035A"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Gen 1:1, Col 1:17, 1John 1:1, Rev 1:4, Rev 1:8, Rev 1:17, Rev 3:14, Rev 21:6, Rev 22:13&version=ESV" data-bibleref="Gen.1.1,Col.1.17,1John.1.1,Rev.1.4,Rev.1.8,Rev.1.17,Rev.3.14,Rev.21.6,Rev.22.13">Gen. 1:1; [Col. 1:17; 1 John 1:1; Rev. 1:4, 8, 17; 3:14; 21:6; 22:13]</a></li>
|
873
|
+
|
874
|
+
<li id="cen-ESV-26035B"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Rev 19:13, Heb 4:12, 1John 1:1&version=ESV" data-bibleref="Rev.19.13,Heb.4.12,1John.1.1">Rev. 19:13; [Heb. 4:12; 1 John 1:1]</a></li>
|
875
|
+
|
876
|
+
<li id="cen-ESV-26035C"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=1John 1:2, John 17:5&version=ESV" data-bibleref="1John.1.2,John.17.5">1 John 1:2; [ch. 17:5]</a></li>
|
877
|
+
|
878
|
+
<li id="cen-ESV-26035D"><a href="#en-ESV-26035" title="Go to John 1:1">John 1:1</a> : <a href="/passage/?search=Phil 2:6&version=ESV" data-bibleref="Phil.2.6">Phil. 2:6</a></li>
|
394
879
|
|
395
880
|
</ol></div> <!--end of crossrefs-->
|
881
|
+
</div><div class="passage-scroller">
|
882
|
+
<ul class="result-options button txt-sm" id="result-options2">
|
883
|
+
<li><a href="/passage/?search=Luke%201&version=ESV" title="Go to Luke 1"><div class="scroller-icon"><<</div></a> </li>
|
884
|
+
<li><a href="/passage/?search=Luke%2024&version=ESV" title="Go to Luke 24"><div class="scroller-icon"><</div></a> </li>
|
885
|
+
<li><a href="/passage/?search=John%201&version=ESV" title="Expand: show the entire chapter of John 1"><div class="scroller-icon scroller-icon-passage-expand">=<br />=</div></a> </li>
|
886
|
+
<li><a href="/passage/?search=John%202&version=ESV" title="Go to John 2"><div class="scroller-icon">></div></a> </li>
|
887
|
+
<li class="last-item"><a href="/passage/?search=Acts%201&version=ESV" title="Go to Acts 1"><div class="scroller-icon">>></div></a> </li>
|
888
|
+
</ul>
|
889
|
+
<div class="passage-audio button"><a href="/audio/mclean/esv/John.1.1" onclick = "var flashWindow =''; function openwin() {
|
890
|
+
url = '/audio/mclean/esv/John.1.1';
|
891
|
+
if (flashWindow != '' && !flashWindow.closed) {
|
892
|
+
flashWindow.location = url;
|
893
|
+
} else {
|
894
|
+
flashWindow = window.open(url,'_blank','resizable=yes, toolbar=no, location=no, directories=no, status=0, menubar=no, scrollbars=no, width=480, height=390');
|
895
|
+
}
|
896
|
+
} openwin(); return false;" title="listen to John 1"><span><img class="audio-image" src="http://static5.bgcdn.com/images/icons/icon-audio.png" /></span></a></div> <div class="passage-tools">
|
897
|
+
</div>
|
898
|
+
|
396
899
|
</div>
|
397
|
-
<div
|
398
|
-
<
|
399
|
-
|
400
|
-
<
|
401
|
-
|
402
|
-
|
403
|
-
onmouseout="HideOptionInfo2()" >
|
404
|
-
<span>Previous Book:Go to Luke</span></a></li>
|
405
|
-
<li class="back">
|
406
|
-
<a href="/passage/?search=Luke+24&version=ESV"
|
407
|
-
onmouseover="ShowOptionInfo2('Previous Chapter','Go to Luke 24')"
|
408
|
-
onmouseout="HideOptionInfo2()" >
|
409
|
-
<span>Previous Chapter : Go to Luke 24</span></a></li>
|
410
|
-
<li class="expand">
|
411
|
-
<a href="/passage/?search=John+1&version=ESV"
|
412
|
-
onmouseover="ShowOptionInfo2('Expand: show the entire chapter of',' John 1')"
|
413
|
-
onmouseout="HideOptionInfo2()" >
|
414
|
-
<span>Expand: show the entire chapter ofJohn 1</span></a></li>
|
415
|
-
<li class="next">
|
416
|
-
<a href="/passage/?search=John+2&version=ESV"
|
417
|
-
onmouseover="ShowOptionInfo2('Next Chapter','Go to John 2')"
|
418
|
-
onmouseout="HideOptionInfo2()" >
|
419
|
-
<span>Next Chapter : Go to John 2</span></a></li>
|
420
|
-
<li class="nextnext">
|
421
|
-
<a href="/passage/?search=Acts+1&version=ESV"
|
422
|
-
onmouseover="ShowOptionInfo2('Next Book','Go to Acts 1')"
|
423
|
-
onmouseout="HideOptionInfo2()" >
|
424
|
-
<span>Next Book:Go to Acts</span></a></li>
|
425
|
-
<li class="listen">
|
426
|
-
<a href="/resources/audio/flash_play.php?aid=21&book=50&chapter=1" onclick = "var flashWindow =''; function openwin() {
|
427
|
-
url = '/resources/audio/flash_play.php?aid=21&book=50&chapter=1';
|
428
|
-
if (flashWindow != '' && !flashWindow.closed) {
|
429
|
-
flashWindow.location = url;
|
430
|
-
} else {
|
431
|
-
flashWindow = window.open(url,'_blank','resizable=yes, toolbar=no, location=no, directories=no, status=0, menubar=no, scrollbars=no, width=350, height=196');
|
432
|
-
}
|
433
|
-
} openwin(); return false;"
|
434
|
-
onmouseover="ShowOptionInfo2('Listen to this passage',' John 1')"
|
435
|
-
onmouseout="HideOptionInfo2()" >
|
436
|
-
<span>Listen to this passage : John 1</span></a></li><li class="commentary">
|
437
|
-
<a href="/resources/commentaries/Matthew-Henry/John/Divinity-Christ"
|
438
|
-
onmouseover="ShowOptionInfo2('View commentary related to this passage',' John 1')"
|
439
|
-
onmouseout="HideOptionInfo2()" >
|
440
|
-
<span>View commentary related to this passage : John 1</span></a></li></ul><br />
|
441
|
-
</td></tr></table><!-- SIGNATURE -->
|
442
|
-
<div id="sig" class="txt-sm">
|
443
|
-
<hr />
|
444
|
-
<p>
|
445
|
-
<a href="http://mobile.biblegateway.com/passage/index.php?search=John%201:1&version=ESV">Go to mobile site</a><br />
|
446
|
-
<a href="#intersite" title="Go to the top of the page">Go to the top of the page</a><br />
|
447
|
-
<a href="/feedback/" title="Contact us">Contact us/Feedback</a><br />
|
448
|
-
<a href="http://www.gospel.com" title="Gospel.com">Gospel.com</a><br />
|
449
|
-
<a href="/site-map/" title="Site map">Site map</a><br />
|
450
|
-
<a href="/privacy.php" title="Privacy policy">Privacy policy</a><br />
|
451
|
-
<a href="/terms.php">Terms of use</a>
|
452
|
-
</p>
|
900
|
+
<div class='commentary-link'>
|
901
|
+
<a href="/resources/commentaries/Matthew-Henry/John/Divinity-Christ" title="View commentary related to this passage:John 1">Show Commentary</a>
|
902
|
+
</div>
|
903
|
+
<div style="clear:both;"></div><div class="publisher-info-bottom">
|
904
|
+
<strong><a href="http://www.biblegateway.com/versions/English-Standard-Version-ESV-Bible/">English Standard Version</a> (ESV)</strong> <p>The Holy Bible, English Standard Version Copyright © 2001 by <a href="http://www.gnpcb.org">Crossway Bibles, a division of Good News Publishers.</a></p></div><div class="passage-other-trans"><a href="/verse/en/John 1:1">John 1:1 in all English translations</a></div>
|
905
|
+
</div><div class='passage-drawer passage-class-0'><div class='exbib-content passage-class-0'><div class='exbib-osis'>John 1:1<span class="passage-resources-close passage-class-0">X</span></div><div class="exbib-spinner passage-class-0"></div></div><div class="exbib-chunk passage-class-0"><div class="exbib-chunk-title passage-class-0"><a href="/passage/?search=john%201:1&version=ESV" class="exbib-back-button passage-class-0">Back</a><span class="passage-resources-close passage-class-0">X</span><div class="exbib-back-title passage-class-0"></div></div><div class="exbib-chunk-merlink passage-class-0"></div><div class="exbib-chunk-text passage-class-0"></div><div class="exbib-chunk-footnote passage-class-0"></div></div></div></div><div style="clear:both;"></div> </div>
|
453
906
|
</div>
|
907
|
+
<div class="content-rightcol">
|
908
|
+
<!-- end passage column -->
|
909
|
+
<div id="merch-side" class="merch section-box"><div class="section-content"><div class="section-header"><h3>Bible Gateway Recommendations</h3></div><div class="section"><div class="store-ad-item"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=535680&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433535680']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/535680t.gif" alt="ESV Global Study Bible (TruTone, Brown), Leather, imitation" /></a><div class='merch-title'><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=535680&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433535680']);">ESV Global Study Bible (TruTone, Brown), Leather, imitation</a></div><div class="list-price">Retail: $44.99</div><div>Our Price: $29.99</div><div class="merch-savings">Save: $15.00 (33%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=535680&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433535680']);">Buy now</a></div></div><div class="store-ad-item"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=504006&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433504006']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/504006t.gif" alt="ESV MacArthur Study Bible, Hardcover" /></a><div class='merch-title'><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=504006&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433504006']);">ESV MacArthur Study Bible, Hardcover</a></div><div class="list-price">Retail: $44.99</div><div>Our Price: $29.49</div><div class="merch-savings">Save: $15.50 (34%)</div><div class="merch-stars stars-50"><img src="http://static5.bgcdn.com/images/merch/stars50.png?4d1ef6e8" alt="5.0 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=504006&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433504006']);">Buy now</a></div></div><div class="store-ad-item"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=43731&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781581343731']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/4/43731t.gif" alt="ESV Thinline Bible, Bonded leather, Black" /></a><div class='merch-title'><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=43731&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781581343731']);">ESV Thinline Bible, Bonded leather, Black</a></div><div class="list-price">Retail: $29.99</div><div>Our Price: $19.99</div><div class="merch-savings">Save: $10.00 (33%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=43731&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781581343731']);">Buy now</a></div></div><a href="http://biblegateway.christianbook.com/" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent','CBD Passage', 'click', 'more']);">View more titles</a></div></div></div></div>
|
910
|
+
</div>
|
911
|
+
<script type="text/javascript">
|
912
|
+
resize_parallel_dropdowns();
|
913
|
+
</script><script type="text/javascript">
|
914
|
+
BG.currentVersions = 'ESV';
|
915
|
+
BG.nextParallel = 'NIV';
|
916
|
+
|
917
|
+
</script>
|
454
918
|
|
919
|
+
</div><!-- END CONTENT -->
|
920
|
+
</div>
|
921
|
+
<div style="clear:both;"></div>
|
922
|
+
<div id="top-link">
|
923
|
+
<div>
|
924
|
+
<a href="#">^ Go to the top of the page</a>
|
925
|
+
</div>
|
455
926
|
</div>
|
456
|
-
<!-- END CONTENT -->
|
457
927
|
|
458
|
-
|
928
|
+
<!-- END main-col -->
|
929
|
+
</div>
|
459
930
|
|
931
|
+
<!-- END main-wrapper -->
|
932
|
+
<div id="nav-col">
|
933
|
+
<div id="navigation">
|
934
|
+
<ul>
|
935
|
+
<li id="nav01"><a href="/" title="Return to the BibleGateway.com homepage"><span>Home</span></a></li>
|
936
|
+
<li class="feature" id="nav02"><a href="/passage/" title="Look for a passage in one or more Bible versions"><span>Passage Lookup</span></a></li>
|
937
|
+
<li class="feature" id="nav03"><a href="/keyword/" title="Search for keywords or phrases in one or more Bible versions"><span>Keyword Search</span></a></li>
|
938
|
+
<li class="feature" id="nav04"><a href="/topical/" title="Search the Bible by topic"><span>Topical Index</span></a></li>
|
939
|
+
<li id="nav05"><a href="/versions/" title="Bible versions available on BibleGateway.com"><span>Available Versions</span></a></li>
|
940
|
+
<li id="nav06"><a href="/resources/audio/" title="Audio Bibles on BibleGateway.com"><span>Audio Bibles</span></a></li>
|
941
|
+
<li id="nav07"><a href="/resources/" title="Additional Bible resources"><span>Additional Resources</span></a></li>
|
942
|
+
<li id="nav08"><a href="/reading-plans/" title="Plans for reading through the Bible"><span>Reading Plans</span></a></li>
|
943
|
+
<li id="nav09"><a href="/devotionals/" title="Devotionals"><span>Devotionals</span></a></li>
|
944
|
+
<li class="feature" id="nav10"><a href="/newsletters/" title="Sign up for Bible Gateway Newsletters"><span>Newsletters</span></a></li>
|
945
|
+
<li class="feature" id="nav11"><a href="/app/" title="Bible Gateway App"><span>Bible Gateway App</span></a></li>
|
946
|
+
<li id="nav12"><a href="/preferences/" title="Set your preferences for BibleGateway.com"><span>Preferences</span></a></li>
|
947
|
+
<li id="nav13"><a href="http://www.biblegateway.com/blog/" title="Keep up with the BibleGateway.com">Bible Gateway Blog<span></span></a></li>
|
948
|
+
<li class="feature" id="nav14"><a href="http://biblegateway.christianbook.com/" onclick="recordOutboundLink(this, 'cbd-nav', 'click');return false;" title="Store"><span>Store</span></a></li>
|
949
|
+
</ul>
|
460
950
|
|
951
|
+
</div>
|
461
952
|
|
462
|
-
<div id='a9g-skyscraper'>
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
953
|
+
<div id='a9g-skyscraper'>
|
954
|
+
<div style='border:1px solid #999999;'><script type="text/javascript">
|
955
|
+
if (typeof(oasAd) != 'undefined') oasAd('Left1');
|
956
|
+
</script></div>
|
467
957
|
</div>
|
958
|
+
|
959
|
+
</div>
|
960
|
+
<!-- END nav-col -->
|
961
|
+
<div style="clear:both"></div>
|
468
962
|
</div>
|
963
|
+
<!-- END body -->
|
964
|
+
<div id="merch-bottom" class="merch"><h4>Bible Gateway Recommendations</h4><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=524295&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433524295']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/524295t.gif" alt="ESV Large Print Bible TruTone, Black/Spruce, Garland Design" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=524295&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433524295']);">ESV Large Print Bible TruTone, Black/Spruce, Garland Design</a></div><div class="merch-price"><span class="merch-price_retail">$59.99</span><span class="merch-price_sale">$39.99</span></div><div class="merch-savings txt-sm">Save $20.00 (33%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=524295&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433524295']);">Buy now</a></div></div><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=523922&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433523922']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/523922t.gif" alt="ESV Study Bible, Larger Print, Genuine Leather, Black" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=523922&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433523922']);">ESV Study Bible, Larger Print, Genuine Leather, Black</a></div><div class="merch-price"><span class="merch-price_retail">$109.99</span><span class="merch-price_sale">$71.49</span></div><div class="merch-savings txt-sm">Save $38.50 (35%)</div><div class="merch-stars stars-50"><img src="http://static5.bgcdn.com/images/merch/stars50.png?4d1ef6e8" alt="5.0 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=523922&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433523922']);">Buy now</a></div></div><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=503900&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433503900']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/503900t.gif" alt="ESV Personal-Size Reference Bible, soft leather-look, Mahogany with Trellis Design" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=503900&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433503900']);">ESV Personal-Size Reference Bible, soft leather-look, Mahogany with Trellis Design</a></div><div class="merch-price"><span class="merch-price_retail">$29.99</span><span class="merch-price_sale">$14.99</span></div><div class="merch-savings txt-sm">Save $15.00 (50%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=503900&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433503900']);">Buy now</a></div></div><div class="store-ad-item" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=502262&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433502262']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/502262t.gif" alt="ESV Oswald Chambers Devotional Bible, Hardcover" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=502262&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433502262']);">ESV Oswald Chambers Devotional Bible, Hardcover</a></div><div class="merch-price"><span class="merch-price_retail">$34.99</span><span class="merch-price_sale">$13.99</span></div><div class="merch-savings txt-sm">Save $21.00 (60%)</div><div class="merch-stars stars-45"><img src="http://static5.bgcdn.com/images/merch/stars45.png?4d1ef6e8" alt="4.5 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=502262&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433502262']);">Buy now</a></div></div><div class="store-ad-item last" style="width:19.9%"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=519697&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433519697']);"><img width="108" height="108" src="//g.christianbook.com/g/thumbnail/5/519697t.gif" alt="ESV Thinline Value Edition, TruTone, Chestnut, Filigree Design" /></a><div class="merch-title"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=519697&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433519697']);">ESV Thinline Value Edition, TruTone, Chestnut, Filigree Design</a></div><div class="merch-price"><span class="merch-price_retail">$14.99</span><span class="merch-price_sale">$10.99</span></div><div class="merch-savings txt-sm">Save $4.00 (27%)</div><div class="merch-stars stars-50"><img src="http://static5.bgcdn.com/images/merch/stars50.png?4d1ef6e8" alt="5.0 of 5.0 stars" /></div><div class="buy-button"><a href="http://biblegateway.christianbook.com/Christian/Books/product?item_no=519697&p=1172308" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent', 'CBD Passage', 'click', '9781433519697']);">Buy now</a></div></div><div id="merch-bottom-link"><a href="http://biblegateway.christianbook.com" rel="nofollow" target="_blank" onClick="_gaq.push(['_trackEvent','CBD Passage', 'click', 'more-bottom']);">View more titles</a></div><div style="clear:both;"></div></div><!-- SIGNATURE -->
|
965
|
+
<div id="sig" class="txt-sm">
|
966
|
+
|
967
|
+
<p><strong>Help and Contact</strong><br /> <a href="/help/" title="FAQs/Tutorials">FAQs/Tutorials</a><br /><a href="/feedback/" title="Contact us/Feedback">Contact us/Feedback</a><br /> <a href="/info/advertising/" title="Why We Advertise">Why We Advertise</a><br /> <a href="/usage/" title="Use Bible Gateway On Your Site">Use Bible Gateway On Your Site</a><br /> <a href="http://www.salemwebnetwork.com/biblegateway/" title="Advertise with Us">Advertise with Us</a><br /><a href="http://www.biblegateway.com/supporting-biblegateway" title="Supporting Bible Gateway">How to Support Bible Gateway</a></p><p><strong>Links</strong><br /> <a href="http://biblegateway.christianbook.com" rel="nofollow" title="Bible Gateway Store">Bible Gateway Store</a><br/> <a href="http://mobile.biblegateway.com/" title="Mobile Bible Gateway">Mobile Bible Gateway</a><br /> <a href="http://www.churchsource.com" title="ChurchSource">ChurchSource</a><br /> <a href="http://www.gospel.com" title="Gospel.com">Gospel.com</a><br /> <a href="http://www.harpercollinschristian.com/" title="Harper Collins Christian Publishing">HarperCollins Christian Publishing</a><br /><a href="http://www.reverendfun.com/" title="Reverend Fun">Reverend Fun</a><br /> <a href="http://www.thomasnelson.com" title="Thomas Nelson">Thomas Nelson</a><br /><a href="http://www.westbowpress.com/" title="Westbow Press" rel="nofollow">Westbow Press</a><br /> <a href="http://www.womenoffaith.com" title="Women of Faith">Women of Faith</a><br /> <a href="http://www.zondervan.com/" title="Zondervan.com">Zondervan.com</a><br /> </p><p><strong>About and Legal</strong><br /> <a href="/about/faith/" title="Statement of Faith">Statement of Faith</a><br /> <a href="/about/" title="About Bible Gateway">About Bible Gateway</a><br /> <a href="/press/" title="Press">Press Releases</a><br /><a href="/site-map/" title="Site map">Site map</a><br /> <a href="/legal/privacy/" title="Privacy policy">Privacy policy</a><br /> <a href="/legal/terms/" title="Site: Terms of use">Site: Terms of use</a><br /> <a href="/legal/widget-terms/" title="Widget: Terms of use">Widget: Terms of use</a></p>
|
968
|
+
|
969
|
+
<!--<p><strong>Sponsors</strong><br /> <a href="http://www.persecution.com/?utm_source=biblegateway&utm_medium=link&utm_campaign=footer" rel="nofollow" title="Christian Persecution">Christian Persecution</a><br /> <a href="http://www.xulonpress.com/?utm_source=biblegateway&utm_medium=link&utm_campaign=footer" rel="nofollow" title="Book Self Publishing">Book Self Publishing</a><br /> <a href="http://www.gospelforasia.net" rel="nofollow" title="Gospel for Asia">Gospel for Asia</a><br /> <a href="http://mychristiancare.org/medi-share/" rel="nofollow" title="Medi-Share">Medi-Share</a></p>--></div>
|
970
|
+
<!-- end sig -->
|
469
971
|
|
972
|
+
<div id='rotate-link'><a href="http://www.biblegateway.com/newsletters">Sign up for daily email insights from the works of beloved author and theologian C.S. Lewis!</a></div>
|
470
973
|
|
471
|
-
|
974
|
+
</div>
|
975
|
+
<!-- END min -->
|
976
|
+
</div>
|
977
|
+
<!-- END max -->
|
978
|
+
<!-- More Google Analytics -->
|
472
979
|
<script type="text/javascript">
|
473
|
-
|
474
|
-
document.
|
980
|
+
_gaq.push(['_trackEvent', 'translation', 'ESV', 'passage']);
|
981
|
+
jQuery(document).bind("copy", function(e) {
|
982
|
+
_gaq.push(['_trackEvent', 'copy', 'other' , 'John.1.1/esv']);
|
983
|
+
});
|
984
|
+
|
475
985
|
</script>
|
476
|
-
<script type="text/javascript">
|
477
|
-
try {
|
478
|
-
var pageTracker = _gat._getTracker("UA-3008784-8");
|
479
|
-
pageTracker._setDomainName(".biblegateway.com");
|
480
|
-
pageTracker._trackPageview();
|
481
|
-
} catch(err) {}</script>
|
482
|
-
|
483
|
-
|
484
|
-
<!-- Start Quantcast tag -->
|
485
|
-
<script type="text/javascript"
|
486
|
-
src="http://edge.quantserve.com/quant.js"></script>
|
487
|
-
<script
|
488
|
-
type="text/javascript">_qacct="p-d56GGD3LGBwJk";quantserve();</script>
|
489
|
-
<noscript>
|
490
|
-
<a href="http://www.quantcast.com/p-d56GGD3LGBwJk" target="_blank"><img
|
491
|
-
src="http://pixel.quantserve.com/pixel/p-d56GGD3LGBwJk.gif"
|
492
|
-
style="display: none;" border="0" height="1" width="1" alt="Quantcast"/></a>
|
493
|
-
</noscript>
|
494
|
-
<!-- End Quantcast tag -->
|
495
986
|
|
496
|
-
</div>
|
497
987
|
</body>
|
498
988
|
</html>
|