bible_gateway 0.0.6 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c6dc9855f91f7a36aab0b7027d47748177cb066100610ac56af7332f139b6108
4
+ data.tar.gz: bf51a4c4c80babd3d52e18fff7d72d01e3418960cba69fe70be55f4c32a18b5c
5
+ SHA512:
6
+ metadata.gz: 960ac14a45873953c527ff1018d6168865e5f8cb06638b6dac009f134f0479e3f0cdbc2fdd04cce8d72822d86b7c7aba115c24952de817df15a5af8ff834dc0e
7
+ data.tar.gz: 46f8a534d8fda13b3d6bd8aceccaa8d86747824e5b5882e53d65146dead8ea80a7df534a7cba4999f3b7f4941f137365cb2823ec48b92be0d9971d5e2997aaf4
@@ -3,3 +3,4 @@ rvm:
3
3
  - 1.9.2
4
4
  - 1.9.3
5
5
  - 2.0.0
6
+ - 2.1.1
data/README.md CHANGED
@@ -4,7 +4,7 @@ Travis CI:
4
4
  [![Build Status](https://travis-ci.org/gdagley/bible_gateway.png?branch=master)](https://travis-ci.org/gdagley/bible_gateway)
5
5
  1.9.2, 1.9.3, 2.0.0
6
6
 
7
- An unofficial 'API' for BibleGateway.com.
7
+ An unofficial 'API' for BibleGateway.com.
8
8
 
9
9
  ## Installation
10
10
 
@@ -44,3 +44,7 @@ Or install it yourself as:
44
44
 
45
45
  See [LICENSE](License.txt) for details.
46
46
  Most Bible translations are copyrighted. Please see [BibleGateway.com](http://biblegateway.com) for more information.
47
+
48
+ ## Thanks
49
+
50
+ Special thanks to Geoffrey Dagley([@gdagley](http://github.com/gdagley)) - the original creator of `bible_gateway` rubygem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.10
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "bible_gateway"
8
8
  spec.version = BibleGateway::VERSION
9
9
  spec.authors = ["Geoffrey Dagley"]
10
- spec.email = ["gdagley@gmail.com"]
10
+ spec.email = ["gdagley@gmail.com", "bibleableproject@gmail.com"]
11
11
  spec.description = %q{An unofficial 'API' for BibleGateway.com.}
12
12
  spec.summary = %q{An unofficial 'API' for BibleGateway.com.}
13
13
  spec.homepage = "https://github.com/gdagley/bible_gateway"
@@ -1,35 +1,43 @@
1
- # coding: utf-8
2
1
  require 'bible_gateway/version'
3
2
  require 'nokogiri'
4
3
  require 'typhoeus'
4
+ require 'uri'
5
5
 
6
6
  class BibleGatewayError < StandardError; end
7
7
 
8
8
  class BibleGateway
9
- GATEWAY_URL = "http://www.biblegateway.com"
9
+ GATEWAY_URL = "http://classic.biblegateway.com"
10
10
 
11
11
  VERSIONS = {
12
- :new_international_version => "NIV",
13
- :new_american_standard_bible => "NASB",
14
- :the_message => "MSG",
12
+ :american_standard_version => "ASV",
15
13
  :amplified_bible => "AMP",
16
- :new_living_translation => "NLT",
17
- :king_james_version => "KJV",
18
- :english_standard_version => "ESV",
14
+ :common_english_bible => "CEB",
19
15
  :contemporary_english_version => "CEV",
20
- :new_king_james_version => "NKJV",
21
- :new_century_version => "NCV",
22
- :king_james_version_21st_century => "KJ21",
23
- :american_standard_version => "ASV",
24
- :youngs_literal_translation => "YLT",
25
16
  :darby_translation => "DARBY",
17
+ :english_standard_version => "ESV",
26
18
  :holman_christian_standard_bible => "HCSB",
19
+ :king_james_version => "KJV",
20
+ :king_james_version_21st_century => "KJ21",
21
+ :new_american_standard_bible => "NASB",
22
+ :new_century_version => "NCV",
27
23
  :new_international_readers_version => "NIRV",
28
- :wycliffe_new_testament => "WYC",
29
- :worldwide_english_new_testament => "WE",
24
+ :new_international_version => "NIV",
30
25
  :new_international_version_uk => "NIVUK",
26
+ :new_king_james_version => "NKJV",
27
+ :new_living_translation => "NLT",
28
+ :new_revised_standard_version => "NRSV",
29
+ :the_message => "MSG",
31
30
  :todays_new_international_version => "TNIV",
32
31
  :world_english_bible => "WEB",
32
+ :worldwide_english_new_testament => "WE",
33
+ :wycliffe_new_testament => "WYC",
34
+ :youngs_literal_translation => "YLT",
35
+
36
+ # French
37
+ :bible_du_semeur => "BDS",
38
+ :louis_segond => "LSG",
39
+ :nouvelle_edition_de_geneve => "NEG1979",
40
+ :segond_21 => "SG21",
33
41
  }
34
42
 
35
43
  def self.versions
@@ -59,9 +67,9 @@ class BibleGateway
59
67
  end
60
68
 
61
69
  def scrape_passage(doc)
62
- container = doc.css('div#content')
63
- title = container.css('h1')[0].content
64
- segment = doc.at('div.result-text-style-normal')
70
+ container = doc.css('div.container')
71
+ title = container.css('div.passage-details h1')[0].content.strip
72
+ segment = doc.at('div.passage-wrap')
65
73
  segment.search('sup.crossreference').remove # remove cross reference links
66
74
  segment.search('sup.footnote').remove # remove footnote links
67
75
  segment.search("div.crossrefs").remove # remove cross references
@@ -1,3 +1,3 @@
1
1
  class BibleGateway
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.11"
3
3
  end
@@ -3,89 +3,77 @@ require "spec_helper"
3
3
 
4
4
  describe BibleGateway do
5
5
  it "should have a list of versions" do
6
- BibleGateway.versions.should_not be_empty
6
+ expect(BibleGateway.versions).not_to be_empty
7
7
  end
8
8
 
9
9
  describe "setting the version" do
10
10
  it "should have a default version" do
11
11
  gateway = BibleGateway.new
12
- gateway.version.should == :king_james_version
12
+ expect(gateway.version).to eq(:king_james_version)
13
13
  end
14
14
 
15
15
  it "should be able to set the version to use" do
16
16
  gateway = BibleGateway.new :english_standard_version
17
- gateway.version.should == :english_standard_version
17
+ expect(gateway.version).to eq(:english_standard_version)
18
18
  end
19
19
 
20
20
  it "should raise an exception for unknown version" do
21
- lambda { BibleGateway.new :unknown_version }.should raise_error(BibleGatewayError)
21
+ expect { BibleGateway.new :unknown_version }.to raise_error(BibleGatewayError)
22
22
  end
23
23
 
24
24
  it "should be able to change the version to use" do
25
25
  gateway = BibleGateway.new
26
26
  gateway.version = :english_standard_version
27
- gateway.version.should == :english_standard_version
27
+ expect(gateway.version).to eq(:english_standard_version)
28
28
  end
29
29
 
30
30
  it "should raise an exception when changing to unknown version" do
31
31
  gateway = BibleGateway.new
32
- lambda { gateway.version = :unknown_version }.should raise_error(BibleGatewayError)
32
+ expect { gateway.version = :unknown_version }.to raise_error(BibleGatewayError)
33
33
  end
34
34
  end
35
35
 
36
36
  describe "lookup" do
37
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
38
  it "should find the passage title" do
43
39
  title = BibleGateway.new(:english_standard_version).lookup("John 1:1")[:title]
44
- title.should == "John 1:1 (English Standard Version)"
40
+ expect(title).to eq("John 1:1")
45
41
  end
46
42
 
47
43
  it "should find and clean the passage content" do
48
44
  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.")
45
+ expect(content).to include("<h3>The Word Became Flesh</h3>")
46
+ expect(content).to include("In the beginning was the Word, and the Word was with God, and the Word was God.")
51
47
  end
52
48
  end
53
49
 
54
50
  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
51
  it "should find the passage title" do
60
52
  title = BibleGateway.new(:english_standard_version).lookup("John 3")[:title]
61
- title.should == "John 3 (English Standard Version)"
53
+ expect(title).to eq("John 3")
62
54
  end
63
55
 
64
56
  it "should find and clean the passage content" do
65
57
  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.")
58
+ expect(content).to include("<h3>You Must Be Born Again</h3>")
59
+ expect(content).to include("<h3>For God So Loved the World</h3>")
60
+ expect(content).to 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
61
  end
70
62
  end
71
63
 
72
64
  context "multiple chapters" do
73
- before do
74
- stub_get "http://www.biblegateway.com/passage/?search=Psalm%201-5&version=ESV", "psalm_1_5.html"
75
- end
76
-
77
65
  it "should find the passage title" do
78
66
  title = BibleGateway.new(:english_standard_version).lookup("Psalm 1-5")[:title]
79
- title.should == "Psalm 1-5 (English Standard Version)"
67
+ expect(title).to eq("Psalm 1-5")
80
68
  end
81
69
 
82
70
  it "should find and clean the passage content" do
83
71
  content = BibleGateway.new(:english_standard_version).lookup("Psalm 1-5")[:content]
84
- content.should include("<h3>The Way of the Righteous and the Wicked</h3>")
85
- content.should include("<span class=\"chapternum\">1 </span>")
86
- content.should include("<h3>Save Me, O My God</h3>")
87
- content.should include("<span class=\"chapternum\">1 </span>")
88
- content.should include("For you are not a God who delights in wickedness;")
72
+ expect(content).to include("<h3>The Way of the Righteous and the Wicked</h3>")
73
+ expect(content).to include("<span class=\"chapternum\">1 </span>")
74
+ expect(content).to include("<h3>Save Me, O My God</h3>")
75
+ expect(content).to include("<span class=\"chapternum\">1 </span>")
76
+ expect(content).to include("For you are not a God who delights in wickedness;")
89
77
  end
90
78
  end
91
79
  end
@@ -6,14 +6,3 @@ require 'bible_gateway'
6
6
  RSpec.configure do |config|
7
7
 
8
8
  end
9
-
10
- def fixture_file(filename)
11
- return '' if filename == ''
12
- file_path = File.expand_path(File.dirname(__FILE__) + '/fixtures/' + filename)
13
- File.read(file_path)
14
- end
15
-
16
- def stub_get(url, filename, status=200)
17
- response = Typhoeus::Response.new(:code => status, :body => fixture_file(filename))
18
- Typhoeus.stub(url).and_return(response)
19
- end
metadata CHANGED
@@ -1,107 +1,97 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bible_gateway
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
5
- prerelease:
4
+ version: 0.0.11
6
5
  platform: ruby
7
6
  authors:
8
7
  - Geoffrey Dagley
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-08-13 00:00:00.000000000 Z
11
+ date: 2020-06-04 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: nokogiri
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: typhoeus
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: bundler
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
47
  version: '1.3'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ~>
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
54
  version: '1.3'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rake
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ! '>='
59
+ - - ">="
68
60
  - !ruby/object:Gem::Version
69
61
  version: '0'
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ! '>='
66
+ - - ">="
76
67
  - !ruby/object:Gem::Version
77
68
  version: '0'
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: rspec
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ! '>='
73
+ - - ">="
84
74
  - !ruby/object:Gem::Version
85
75
  version: '0'
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ! '>='
80
+ - - ">="
92
81
  - !ruby/object:Gem::Version
93
82
  version: '0'
94
83
  description: An unofficial 'API' for BibleGateway.com.
95
84
  email:
96
85
  - gdagley@gmail.com
86
+ - bibleableproject@gmail.com
97
87
  executables: []
98
88
  extensions: []
99
89
  extra_rdoc_files: []
100
90
  files:
101
- - .document
102
- - .gitignore
103
- - .rspec
104
- - .travis.yml
91
+ - ".document"
92
+ - ".gitignore"
93
+ - ".rspec"
94
+ - ".travis.yml"
105
95
  - Gemfile
106
96
  - LICENSE.txt
107
97
  - README.md
@@ -111,44 +101,30 @@ files:
111
101
  - lib/bible_gateway.rb
112
102
  - lib/bible_gateway/version.rb
113
103
  - spec/bible_gateway_spec.rb
114
- - spec/fixtures/john_1_1.html
115
- - spec/fixtures/john_3.html
116
- - spec/fixtures/psalm_1_5.html
117
104
  - spec/spec_helper.rb
118
105
  homepage: https://github.com/gdagley/bible_gateway
119
106
  licenses:
120
107
  - MIT
108
+ metadata: {}
121
109
  post_install_message:
122
110
  rdoc_options: []
123
111
  require_paths:
124
112
  - lib
125
113
  required_ruby_version: !ruby/object:Gem::Requirement
126
- none: false
127
114
  requirements:
128
- - - ! '>='
115
+ - - ">="
129
116
  - !ruby/object:Gem::Version
130
117
  version: '0'
131
- segments:
132
- - 0
133
- hash: -43652158783881631
134
118
  required_rubygems_version: !ruby/object:Gem::Requirement
135
- none: false
136
119
  requirements:
137
- - - ! '>='
120
+ - - ">="
138
121
  - !ruby/object:Gem::Version
139
122
  version: '0'
140
- segments:
141
- - 0
142
- hash: -43652158783881631
143
123
  requirements: []
144
- rubyforge_project:
145
- rubygems_version: 1.8.25
124
+ rubygems_version: 3.0.3
146
125
  signing_key:
147
- specification_version: 3
126
+ specification_version: 4
148
127
  summary: An unofficial 'API' for BibleGateway.com.
149
128
  test_files:
150
129
  - spec/bible_gateway_spec.rb
151
- - spec/fixtures/john_1_1.html
152
- - spec/fixtures/john_3.html
153
- - spec/fixtures/psalm_1_5.html
154
130
  - spec/spec_helper.rb
@@ -1,988 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
- <html xmlns="http://www.w3.org/1999/xhtml">
3
- <head>
4
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
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&amp;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&amp;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&amp;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">
23
- <!-- STYLESHEETS -->
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&amp;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">
39
- // <![CDATA[
40
- var prefs = new Array;
41
-
42
- prefs['searches_includeapocrypha'] = 'no';
43
- prefs['fontsize'] = 'medium';
44
- prefs['language'] = 'en';
45
- prefs['default_version_display'] = 'all';
46
- prefs['default_version'] = 'ESV';
47
- prefs['default_version_overrides'] = 'no';
48
- prefs['quicksearch_search'] = '';
49
- prefs['pslookup_language1'] = 'en';
50
- prefs['pslookup_language2'] = '';
51
- prefs['pslookup_language3'] = '';
52
- prefs['pslookup_language4'] = '';
53
- prefs['pslookup_language5'] = '';
54
- prefs['pslookup_count'] = '1';
55
- prefs['pslookup_showmoresearches'] = 'closed';
56
- prefs['pslookup_showversions'] = 'open';
57
- prefs['pslookup_showmoreversions'] = 'closed';
58
- prefs['pslookup_showoptions'] = 'open';
59
- prefs['pslookup_showfootnotes'] = 'yes';
60
- prefs['pslookup_showxrefs'] = 'no';
61
- prefs['pslookup_showwoj'] = 'no';
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';
67
- prefs['pslookup_embed-versenum'] = 'true';
68
- prefs['pslookup_embed-xref'] = 'false';
69
- prefs['pslookup_embed-footnote'] = 'false';
70
- prefs['pslookup_embed-heading'] = 'false';
71
- prefs['keysearch_search'] = '';
72
- prefs['keysearch_language1'] = 'en';
73
- prefs['keysearch_language'] = 'en';
74
- prefs['keysearch_bookset'] = '';
75
- prefs['keysearch_spanbegin'] = '1';
76
- prefs['keysearch_spanend'] = '73';
77
- prefs['keysearch_limit'] = 'none';
78
- prefs['keysearch_startnumber'] = '1';
79
- prefs['keysearch_searchtype'] = 'all';
80
- prefs['keysearch_showversions'] = 'open';
81
- prefs['keysearch_showmoreversions'] = 'closed';
82
- prefs['keysearch_showoptions'] = 'open';
83
- prefs['keysearch_displayas'] = 'long';
84
- prefs['keysearch_resultspp'] = '25';
85
- prefs['keysearch_sort'] = 'bookorder';
86
- prefs['keysearch_wholewordsonly'] = 'no';
87
- prefs['commentary_source'] = '1';
88
- prefs['topindex_source'] = '1';
89
- prefs['topindex_search'] = '';
90
- prefs['topindex_search_type'] = 'any';
91
- prefs['topindex_resultspp'] = '25';
92
- prefs['audio_source'] = '3';
93
- prefs['audio_book'] = '';
94
- prefs['audio_chapter'] = '';
95
- prefs['dict_source'] = '1';
96
- prefs['dict_search'] = '';
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;
114
- if (document.images) { self.name = 'bgmain'; }
115
- // ]]>
116
-
117
- </script>
118
-
119
- <!-- Google Analytics -->
120
- <script type="text/javascript">
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']);
127
-
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
- })();
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>
154
-
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>
173
-
174
- </head>
175
-
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">
188
-
189
- <div class="text-controls">
190
- <a href="/languages/update/?url=%2Fpassage%2F%3Fsearch%3Djohn%25201%3A1%26version%3DESV&amp;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&amp;version=ESV&amp;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&amp;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">
226
- <!-- SITE NAVIGATION -->
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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
261
- <option class="lang" value="CHR">---ᏣᎳᎩ ᎦᏬᏂᎯᏍ (CHR)---</option>
262
- <option value="CHR" >Cherokee New Testament</option>
263
- <option class="spacer" value="CHR">&nbsp;</option>
264
- <option class="lang" value="CKW">---Cakchiquel Occidental (CKW)---</option>
265
- <option value="CKW" >Cakchiquel Occidental</option>
266
- <option class="spacer" value="CKW">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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&#039;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&#039;s Literal Translation</option>
329
- <option class="spacer" value="YLT">&nbsp;</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">&nbsp;</option>
348
- <option class="lang" value="R1933">---Suomi (FI)---</option>
349
- <option value="R1933" >Raamattu 1933/38</option>
350
- <option class="spacer" value="R1933">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
373
- <option class="lang" value="CRO">---Hrvatski (HR)---</option>
374
- <option value="CRO" >Croatian Bible</option>
375
- <option class="spacer" value="CRO">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
387
- <option class="lang" value="ICELAND">---Íslenska (IS)---</option>
388
- <option value="ICELAND" >Icelandic Bible</option>
389
- <option class="spacer" value="ICELAND">&nbsp;</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">&nbsp;</option>
397
- <option class="lang" value="JAC">---Jacalteco, Oriental (JAC)---</option>
398
- <option value="JAC" >Jacalteco, Oriental</option>
399
- <option class="spacer" value="JAC">&nbsp;</option>
400
- <option class="lang" value="KEK">---Kekchi (KEK)---</option>
401
- <option value="KEK" >Kekchi</option>
402
- <option class="spacer" value="KEK">&nbsp;</option>
403
- <option class="lang" value="VULGATE">---Latina (LA)---</option>
404
- <option value="VULGATE" >Biblia Sacra Vulgata</option>
405
- <option class="spacer" value="VULGATE">&nbsp;</option>
406
- <option class="lang" value="MAORI">---Māori (MI)---</option>
407
- <option value="MAORI" >Maori Bible</option>
408
- <option class="spacer" value="MAORI">&nbsp;</option>
409
- <option class="lang" value="MNT">---Македонски (MK)---</option>
410
- <option value="MNT" >Macedonian New Testament</option>
411
- <option class="spacer" value="MNT">&nbsp;</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">&nbsp;</option>
415
- <option class="lang" value="MVC">---Mam, Central (MVC)---</option>
416
- <option value="MVC" >Mam, Central</option>
417
- <option class="spacer" value="MVC">&nbsp;</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">&nbsp;</option>
421
- <option class="lang" value="REIMER">---Plautdietsch (NDS)---</option>
422
- <option value="REIMER" >Reimer 2001</option>
423
- <option class="spacer" value="REIMER">&nbsp;</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">&nbsp;</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">&nbsp;</option>
430
- <option class="lang" value="HTB">---Nederlands (NL)---</option>
431
- <option value="HTB" >Het Boek</option>
432
- <option class="spacer" value="HTB">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
471
- <option class="lang" value="SOM">---Somali (SO)---</option>
472
- <option value="SOM" >Somali Bible</option>
473
- <option class="spacer" value="SOM">&nbsp;</option>
474
- <option class="lang" value="ALB">---Shqip (SQ)---</option>
475
- <option value="ALB" >Albanian Bible</option>
476
- <option class="spacer" value="ALB">&nbsp;</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">&nbsp;</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">&nbsp;</option>
485
- <option class="lang" value="SNT">---Kiswahili (SW)---</option>
486
- <option value="SNT" >Swahili New Testament</option>
487
- <option class="spacer" value="SNT">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
508
- <option class="lang" value="USP">---Uspanteco (USP)---</option>
509
- <option value="USP" >Uspanteco</option>
510
- <option class="spacer" value="USP">&nbsp;</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">&nbsp;</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&amp;vid=ESV&amp;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">
545
- <!-- UNIQUE CONTENT -->
546
- <h1>John 1:1&nbsp;(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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
572
- <option class="lang" value="CHR">---ᏣᎳᎩ ᎦᏬᏂᎯᏍ (CHR)---</option>
573
- <option value="CHR" >Cherokee New Testament</option>
574
- <option class="spacer" value="CHR">&nbsp;</option>
575
- <option class="lang" value="CKW">---Cakchiquel Occidental (CKW)---</option>
576
- <option value="CKW" >Cakchiquel Occidental</option>
577
- <option class="spacer" value="CKW">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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&#039;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&#039;s Literal Translation</option>
640
- <option class="spacer" value="YLT">&nbsp;</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">&nbsp;</option>
659
- <option class="lang" value="R1933">---Suomi (FI)---</option>
660
- <option value="R1933" >Raamattu 1933/38</option>
661
- <option class="spacer" value="R1933">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
684
- <option class="lang" value="CRO">---Hrvatski (HR)---</option>
685
- <option value="CRO" >Croatian Bible</option>
686
- <option class="spacer" value="CRO">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
698
- <option class="lang" value="ICELAND">---Íslenska (IS)---</option>
699
- <option value="ICELAND" >Icelandic Bible</option>
700
- <option class="spacer" value="ICELAND">&nbsp;</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">&nbsp;</option>
708
- <option class="lang" value="JAC">---Jacalteco, Oriental (JAC)---</option>
709
- <option value="JAC" >Jacalteco, Oriental</option>
710
- <option class="spacer" value="JAC">&nbsp;</option>
711
- <option class="lang" value="KEK">---Kekchi (KEK)---</option>
712
- <option value="KEK" >Kekchi</option>
713
- <option class="spacer" value="KEK">&nbsp;</option>
714
- <option class="lang" value="VULGATE">---Latina (LA)---</option>
715
- <option value="VULGATE" >Biblia Sacra Vulgata</option>
716
- <option class="spacer" value="VULGATE">&nbsp;</option>
717
- <option class="lang" value="MAORI">---Māori (MI)---</option>
718
- <option value="MAORI" >Maori Bible</option>
719
- <option class="spacer" value="MAORI">&nbsp;</option>
720
- <option class="lang" value="MNT">---Македонски (MK)---</option>
721
- <option value="MNT" >Macedonian New Testament</option>
722
- <option class="spacer" value="MNT">&nbsp;</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">&nbsp;</option>
726
- <option class="lang" value="MVC">---Mam, Central (MVC)---</option>
727
- <option value="MVC" >Mam, Central</option>
728
- <option class="spacer" value="MVC">&nbsp;</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">&nbsp;</option>
732
- <option class="lang" value="REIMER">---Plautdietsch (NDS)---</option>
733
- <option value="REIMER" >Reimer 2001</option>
734
- <option class="spacer" value="REIMER">&nbsp;</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">&nbsp;</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">&nbsp;</option>
741
- <option class="lang" value="HTB">---Nederlands (NL)---</option>
742
- <option value="HTB" >Het Boek</option>
743
- <option class="spacer" value="HTB">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
782
- <option class="lang" value="SOM">---Somali (SO)---</option>
783
- <option value="SOM" >Somali Bible</option>
784
- <option class="spacer" value="SOM">&nbsp;</option>
785
- <option class="lang" value="ALB">---Shqip (SQ)---</option>
786
- <option value="ALB" >Albanian Bible</option>
787
- <option class="spacer" value="ALB">&nbsp;</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">&nbsp;</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">&nbsp;</option>
796
- <option class="lang" value="SNT">---Kiswahili (SW)---</option>
797
- <option value="SNT" >Swahili New Testament</option>
798
- <option class="spacer" value="SNT">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</option>
819
- <option class="lang" value="USP">---Uspanteco (USP)---</option>
820
- <option value="USP" >Uspanteco</option>
821
- <option class="spacer" value="USP">&nbsp;</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">&nbsp;</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&amp;version=ESV" title="Go to Luke 1"><div class="scroller-icon">&lt;&lt;</div></a> </li>
849
- <li><a href="/passage/?search=Luke%2024&amp;version=ESV" title="Go to Luke 24"><div class="scroller-icon">&lt;</div></a> </li>
850
- <li><a href="/passage/?search=John%201&amp;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&amp;version=ESV" title="Go to John 2"><div class="scroller-icon">&gt;</div></a> </li>
852
- <li class="last-item"><a href="/passage/?search=Acts%201&amp;version=ESV" title="Go to Acts 1"><div class="scroller-icon">&gt;&gt;</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&amp;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>
879
-
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&amp;version=ESV" title="Go to Luke 1"><div class="scroller-icon">&lt;&lt;</div></a> </li>
884
- <li><a href="/passage/?search=Luke%2024&amp;version=ESV" title="Go to Luke 24"><div class="scroller-icon">&lt;</div></a> </li>
885
- <li><a href="/passage/?search=John%201&amp;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&amp;version=ESV" title="Go to John 2"><div class="scroller-icon">&gt;</div></a> </li>
887
- <li class="last-item"><a href="/passage/?search=Acts%201&amp;version=ESV" title="Go to Acts 1"><div class="scroller-icon">&gt;&gt;</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
-
899
- </div>
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 ©&nbsp;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&amp;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>
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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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>
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>
926
- </div>
927
-
928
- <!-- END main-col -->
929
- </div>
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&nbsp;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>
950
-
951
- </div>
952
-
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>
957
- </div>
958
-
959
- </div>
960
- <!-- END nav-col -->
961
- <div style="clear:both"></div>
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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;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&amp;utm_medium=link&amp;utm_campaign=footer" rel="nofollow" title="Christian Persecution">Christian Persecution</a><br /> <a href="http://www.xulonpress.com/?utm_source=biblegateway&amp;utm_medium=link&amp;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 -->
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>
973
-
974
- </div>
975
- <!-- END min -->
976
- </div>
977
- <!-- END max -->
978
- <!-- More Google Analytics -->
979
- <script type="text/javascript">
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
-
985
- </script>
986
-
987
- </body>
988
- </html>